

/* Product Image Hover */




/*
@font-face {
    font-family: 'SilkaMono';
    src: url('https://makemaya.in/arlades/public/assets/fonts/SilkaMono-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
*/
/*

@font-face {
    font-family: 'SilkaMono';
    src: url('/assets/fonts/SilkaMono-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
*/


@font-face {
    font-family: 'SilkaMono';
    src: url('../fonts/SilkaMono-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ppneuemontreal-bold';
    src: url('../fonts/ppneuemontreal-bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
  @font-face {
    font-family: 'ppneuemontreal-medium';
    src: url('../fonts/ppneuemontreal-medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
  
.image-hover-effect {
    position: relative;
    overflow: hidden;
}
.product-hover-image {
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.image-hover-effect:hover .product-hover-image {
    opacity: 1;
}

.live-circle-icon {
    animation: blink-1p5 1.5s infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes blink-1p5 {
    0%   { opacity: 1; }
    50%  { opacity: 0.5; }
    100% { opacity: 1; }
}

  /* Respect reduced motion preferences */
  @media (prefers-reduced-motion: reduce) {
    .blink { animation: none; }
  }

.product-details-page .add-to-cart {
  transition: transform 0.3s ease-in-out;
}

.product-details-page .add-to-cart:hover {
  transform: scale(1.02, 1.1);
}

/* Image Gallery Viewer */


.img-zoom {
   cursor:grab;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left:0; top:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.9);
    text-align: center;
    overflow: auto;
}
.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    top: 50%;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.lightbox-toolbar button {
    font-size: 18px;
    padding: 5px 10px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    border-radius: 5px;
}
.lightbox-close { font-size: 22px; background: rgba(0,0,0,0.7);}


.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    background: rgb(0 0 0 / 25%);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1100;
    transition: background 0.3s ease;
}
.lightbox-arrow:hover {
    background: rgba(0,0,0,0.8);
}
.lightbox-arrow.prev { left: 20px; }
.lightbox-arrow.next { right: 20px; }

.lightbox-toolbar {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; /* left + right */
    align-items: center;
    padding: 0 15px;
    z-index: 110000000000;
}

.toolbar-left {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.toolbar-right button {
    margin-left: 4px;
    font-size: 18px;
    padding: 5px 10px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.toolbar-right button:hover {
    background: rgba(0,0,0,0.8);
}




.lightbox-modal img {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;

    max-width: 90% !important;
    max-height: 80% !important;
    margin: 0 !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}

/* Expand Icon */
.carousel-box {
    position: relative;
    overflow: visible;
}

.wd-show-product-gallery-wrap {
    position: absolute;
    bottom: 40px;
    left: 10px;
    z-index: 999;
}

.wd-show-product-gallery-wrap a {
    display: flex;
    align-items: center;
    padding: 6px ;
    background: rgba(0,0,0,0);
    color: #666666;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    width: 35px;
    transition: width 0.3s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.wd-show-product-gallery-wrap a .text {
    margin-left: 8px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wd-show-product-gallery-wrap a:hover {
    width: 145px;
    color: #000;
}

.wd-show-product-gallery-wrap a:hover .text {
    opacity: 1;
}

/* Custom hober effect on btn */
.custom-hov-btn:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}
.custom-hov-btn:active {
    transform: translateY(1px);
}

.pb-26px{
    padding-bottom: 1.625rem;
}
.py-19px{
    padding-top: 1.1875rem;
    padding-bottom: 1.1875rem;
}
.py-32px{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.pt-32px{
    padding-top: 2rem;
}
.pb-32px{
    padding-bottom: 2rem;
}
.mb-32px{
    margin-bottom: 2rem;
}

.my-32px{
    margin-top: 2rem;
    margin-bottom: 2rem;
}
/* Extra small devices (xs) <576px */
@media (max-width: 575.98px) {
    .pb-26px { padding-bottom: 1rem !important; }
    .py-19px { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
    .py-32px { padding-top: 1rem !important; padding-bottom: 1rem !important; }
    .pt-32px { padding-top: 1rem !important; }
    .pb-32px { padding-bottom: 1rem !important; }
    .mb-32px { margin-bottom: 1rem !important; }
    .my-32px { margin-top: 1rem !important; margin-bottom: 1rem !important; }
}

/* Small devices (sm) ≥576px */
@media (min-width: 576px) and (max-width: 767.98px) {
    .pb-26px { padding-bottom: 1.25rem !important; }
    .py-19px { padding-top: 0.875rem !important; padding-bottom: 0.875rem !important; }
    .py-32px { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
    .pt-32px { padding-top: 1.25rem !important; }
    .pb-32px { padding-bottom: 1.25rem !important; }
    .mb-32px { margin-bottom: 1.25rem !important; }
    .my-32px { margin-top: 1.25rem !important; margin-bottom: 1.25rem !important; }
}

/* Medium devices (md) ≥768px */
@media (min-width: 768px) and (max-width: 991.98px) {
    .pb-26px { padding-bottom: 1.5rem !important; }
    .py-19px { padding-top: 1rem !important; padding-bottom: 1rem !important; }
    .py-32px { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
    .pt-32px { padding-top: 1.5rem !important; }
    .pb-32px { padding-bottom: 1.5rem !important; }
    .mb-32px { margin-bottom: 1.5rem !important; }
    .my-32px { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
}

/* Large devices (lg) ≥992px */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .pb-26px { padding-bottom: 1.625rem !important; }
    .py-19px { padding-top: 1.1875rem !important; padding-bottom: 1.1875rem !important; }
    .py-32px { padding-top: 1.75rem !important; padding-bottom: 1.75rem !important; }
    .pt-32px { padding-top: 1.75rem !important; }
    .pb-32px { padding-bottom: 1.75rem !important; }
    .mb-32px { margin-bottom: 1.75rem !important; }
    .my-32px { margin-top: 1.75rem !important; margin-bottom: 1.75rem !important; }
}

/* Extra large devices (xl) ≥1200px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .pb-26px { padding-bottom: 1.75rem !important; }
    .py-19px { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
    .py-32px { padding-top: 1.875rem !important; padding-bottom: 1.875rem !important; }
    .pt-32px { padding-top: 1.875rem !important; }
    .pb-32px { padding-bottom: 1.875rem !important; }
    .mb-32px { margin-bottom: 1.875rem !important; }
    .my-32px { margin-top: 1.875rem !important; margin-bottom: 1.875rem !important; }
}

/* Extra extra large devices (xxl) ≥1400px */
@media (min-width: 1400px) {
    .pb-26px { padding-bottom: 1.625rem !important; }
    .py-19px { padding-top: 1.1875rem !important; padding-bottom: 1.1875rem !important; }
    .py-32px { padding-top: 2rem !important; padding-bottom: 2rem !important; } /* max 2rem */
    .pt-32px { padding-top: 2rem !important; }
    .pb-32px { padding-bottom: 2rem !important; }
    .mb-32px { margin-bottom: 2rem !important; }
    .my-32px { margin-top: 2rem !important; margin-bottom: 2rem !important; }
}
.floating-buttons-section {
    display: none;
}



/* ------------------ GLOBAL STYLES ------------------ */

.content_0 p {
    font-size: 12px;
    letter-spacing: 1px;
    color: #3c5a5c;
    margin-bottom: 5px;
}

.content_0 h3 {
    font-size: 26px;
    font-weight: 700;
    color: #2b4a4c;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.content_0 h4 {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: #355b5d;
    width: 75%;
    text-transform: uppercase;
}

/* ------------------ LEFT SIDE COUNTRY LIST ------------------ */

.left__align {
    margin-top: auto;
}

.left__align ul {
    display: flex;
    gap: 50px;
    padding: 0;
    margin: 0;
}

.left__align ul li {
    list-style: none;
}

.left__align ul li p:first-child {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #234d53;
    margin-bottom: 5px;
    font-family: 'SilkaMono';
}

.left__align ul li p:nth-child(2) {
    font-size: 14px;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 5px;
}

.left__align ul li p:nth-child(3) {
    font-size: 14px;
    color: #234d53;
    font-family: 'SilkaMono';
}
/* ------------------ RIGHT SIDE LOGOS ------------------ */

.flex__div_00 {
    margin-top: 33px;
}
.right__align_009 {
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
}

.right__align_009 li {
    list-style: none;
}

.right__align_009 img {
    width: 75px;
    height: auto;
}

/* ------------------ RESPONSIVE ------------------ */

@media (max-width: 768px) {
    .content_0 h4 {
        width: 100%;
    }

    .left__align ul {
        flex-direction: column;
        gap: 25px;
    }

    .right__align_009 {
        justify-content: center;
        margin-top: 20px;
    }
}


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

.img_009_009 img {
    width: 100%;
}

.img_009_009 {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
}

.img_009_009 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: -360px;
}

/* Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    /* background: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0)
    ); */
    background: linear-gradient(180deg, #1d535c 0%, rgba(61, 175, 194, 0) 100%);
}

/* Text */
.banner-overlay h3 {
    width: 100%;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: 'SilkaMono';
    letter-spacing: 0px;
}

/* Button */
.explore-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    background: #ffffff;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    gap: 8px;
    transition: 0.3s;
    width: 37%;
    border-radius: 10px;
}
.explore-btn span {
    font-size: 14px;
}

.explore-btn:hover {
    background: #f1f1f1;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-overlay {
        padding: 40px;
    }

    .banner-overlay h3 {
        width: 100%;
        font-size: 16px;
    }
}


.just__0099__00s {
    height: 100%;
}

.just__0099__00s {
    padding: 203px 0px 0px 0px;
}

.content_0 {
    width: 64%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: -49px;
}
.s__hero_0090114401 {
    padding-left: 53px;
}

section.hero__section_0099 {
    height: 100vh;
    overflow: hidden;
}

.secondtbanner_00999 img {
    width: 100%;
    /* height: 100vh; */
}

section.hero__section_0099 {
    height: 100vh;
    overflow: hidden;
}

.logo_0099s {
    text-align: center;
    padding: 0px;
    margin: 0px;
}



.header-bar {
    background: var(--bottom-header-bg-color);
    /* height: 60px; */
    display: flex;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 12px!important;
}
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

.menu-list li a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: rgb(29 83 92) !important;
    text-transform: uppercase;
    text-shadow: none!important;
    letter-spacing: 1px;
    font-family: SilkaMono;
    letter-spacing: 2px;
}
h1.fs-18.fs-md-20.fw-700.text-dark.line-height_0_7.lin_0114114414 {
    font-size: 80px!important;
}
.header-bar {
    border-bottom: 2px solid rgba(243, 196, 124, 1);
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.logo-center .logo-img {
    height: 58px;
    object-fit: contain;
    margin-right: -8px;
}
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 13px;
    align-items: center;
    /* height: 60px; */
}
p.ewererddg {
    margin-bottom: 0px;
}
p.ewererddg {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: rgba(0, 0, 0, 1) !important;
    text-transform: uppercase;
}

.cart__addto a.d-flex.align-items-center.px-3.h-100 {
    color: #000!important;
}
.cart__addto span.d-none.d-xl-block.ml-2.fs-14.fw-700.bottom-text-color-visibility {
    color: #000!important;
}
.cart__addto span.nav-box-text.d-none.d-xl-block.ml-2.fs-12.bottom-text-color-visibility {
    color: #000!important;
}

.cart__addto span.mr-2 svg.bottom-text-color-visibility {
    color: #000!important;
}
span.cart_009001 {
    font-size: 14px;
    position: relative;
    top: 0px;
    font-weight: 500;
    text-decoration: none;
    color: rgb(29 83 92) !important;
    text-transform: uppercase;
    text-shadow: none !important;
    letter-spacing: 2px;
    font-family: 'ppneuemontreal-medium';
}
p.cart__addto {
    margin-bottom: 0px;
}

.cart__addto a.d-flex.align-items-center.px-3.h-100 {
    margin-right: 0px;
    padding-right: 0px!important;
}

.cart__addto span.mr-2 {
    margin-right: 0px!important;
    padding-right: 0px!important;
}

.cart__addto svg {
    width: 24px;
    height: 19px;
    position: relative;
    top: -2px;
}
.cart__addto span.nav-box-text.d-none.d-xl-block.ml-2.fs-12.bottom-text-color-visibility {
    margin-left: 0px!important;
    font-size: 13px!important;
    margin-right: 15px!important;
    margin-top: 6px;
    position: relative;
    left: 0px;
    color: #1d535c !important;
    top: -3px;
}
p.user_profil.d00111 {
    position: relative;
    left: -4px;
    top: 0px;
    margin-bottom: 0px;
}
p.subscribe__0098889 {
    margin-bottom: 0px;
    text-align: center;
    border: none;
    box-shadow: none!important;
    padding: 6px;
}
.ewererddg a.d00110d1 {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: rgb(29 83 92) !important;
    text-transform: uppercase;
    text-shadow: none!important;
    letter-spacing: 1px;
    margin-top: 3px;
}
p.ewererddg {
    display: inline-block;
    /* line-height: 21px!important; */
}

.header-bar .col-md-4.d-flex.justify-content-start ul.menu-list {
    gap: 31px;
    position: relative;
    left: 44px;
}

p.subscribe__0098889 {
    margin-bottom: 0px;
    text-align: center;
    border: none;
    box-shadow: none!important;
    padding: 6px;
    background: #1d535c;
    color: #fff;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0px 0px 10px 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    font-family: 'SilkaMono';
}
.hover-user-top-menu .position-static.float-right {
    margin-top: 66px;
    background: #fff;
    padding: 0px;
}

.position-static.float-right ul.list-unstyled h3 {
    font-size: 13px;
    padding: 13px 23px;
    background: #f1f4f7;
    padding-left: 56px;
}

li.user-top-nav-element.border.border-top-0.s001s01s01s0 {
    padding-left: 0px;
}

li.user-top-nav-element.border.border-top-0.s001s01s01s0  span.position-relative.d-inline-block {
    padding-right: 20px;
}

.hover-user-top-menu .position-static.float-right {
    margin-top: 66px;
    background: #fff;
    padding: 0px;
    /* position: absolute!important; */
    margin-right: 62px!important;
}

div#wishlist {
    margin-left: -36px;
}

li.user-top-nav-element.border.border-top-0.s001s01s01s0 a.d-flex.align-items-center.text-dark {
    padding-left: 27px;
}

section.hero__section_0099 {
    height: 80vh;
    overflow: hidden;
}


.spacer {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      text-align: center;
    }

    /* Section Intro Wrapper Only */
.section_intro-wrapper {
    padding: 4rem 2rem;
    background: #fff;
    position: relative;
    overflow: hidden;
}
section.py-4.feat__section {
    margin: 17px;
    border-radius: 17px;
}
 .intro-wrapper {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    /* Heading Wrappers: Initial Narrow Stack */
    .about_heading-wrapper {
      width: 100%;
      text-align: center;
    }

    .about_heading-wrapper.is-top {
      margin-bottom: 0.5rem;
    }

    .heading-wrapper {
      position: relative;
    }

    .about_heading {
      width: 180px; /* Initial narrow */
      height: auto;
      display: block;
      margin: 0 auto;
      opacity: 1;
      will-change: width;
    }

    /* Intro Wrapper: Dynamic Expansion */
.about_intro-wrapper {
    width: 100%;
    max-width: 892px;
    margin: 0 auto;
    overflow: hidden;
    will-change: width, height;
    transform-style: preserve-3d;
    position: relative;
    padding-bottom: 41px!important;
}
    /* Intro Content: Reveal on Progress */
    .intro-content {
      padding: 2rem;
      opacity: 0;
      transform: translate3d(0px, 1rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
      transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transform-style: preserve-3d;
      width: 100%;
    }

    /* Green Heading & Text */
    .green_heading-rg {
      font-size: 2.5rem;
      line-height: 1.1;
      margin: 0 0 1.5rem 0;
      font-weight: 400;
      color: #2d5016;
      will-change: transform;
      transform: translate3d(0px, 0rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
      transform-style: preserve-3d;
      text-align: center;
    }

    .green_text-rg {
      font-size: 1.1rem;
      margin: 0;
      color: #4a4a4a;
      text-align: center;
      will-change: transform;
      transform: translate3d(0px, 0rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
      transform-style: preserve-3d;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .about_heading { width: 140px; }
      .green_heading-rg { font-size: 2rem; }
    }

.about_heading {

    width: 100%!important;
}

.about_heading-wrapper.is-top {
    margin-bottom: -51px;
    height: 221px;
    overflow: hidden;
}

.about_heading-wrapper.bottommmm {
    height: auto;
    overflow: hidden;
    display: block;
    margin-top: -47px;
    background: #fff;
    position: relative;
}
.heading-wrapper.is-bottom img.about_heading {
    margin-top: -18px;
}
h2.green_heading-rg {
    padding-top: 24px;
    font-family: ppneuemontreal-medium !important;
}
.green_text-rg {
    font-size: 20px;
    margin: 0;
    color: rgba(0, 0, 0, 1);
    text-align: center;
    will-change: transform;
    transform: translate3d(0px, 0rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    opacity: 1!important;
    font-family: 'SilkaMono';
    letter-spacing: -1px;
}
.about_heading-wrapper.bottommmm .inner-text {
    transform: translateY(0); /* ensure text starts from top */
}

section.gallery-section {
    background: #fff;
    padding: 0px;
    padding-bottom: 53px;
}
/*

.gallery-section .row {
    vertical-align: bottom;
    align-items: baseline;
}
*/
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 4px solid #fff;
}



.made-to-matter .container-fluid {
    padding: 0 62px;
}

.product__list_00999  img.w-150px {
    width: 100%;
}



section.mb-2.mb-md-3.mt-2.mt-md-3.s__0001categoriess .container-fluid {
    padding: 0 62px;
}

.s__0001categoriess {
    background: #e8d8c4;
}

.s__0001categoriess {
    background: #f1f4f7;
    margin-top: 0px!important;
}
section#matterSectionvv {
    background: #fff;
}
.hero-section {
            position: relative;
            width: 100%;
            height: 400px; /* Adjust height as needed */
            background: linear-gradient(135deg, #e6d8c4 0%, #d4c8a8 100%); /* Beige gradient to mimic the image */
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c5f6b; /* Teal color for text */
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 800px;
            padding: 20px;
        }

        .main-title {
            font-size: 4em;
            font-weight: bold;
            color: #2c5f6b;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .subtitle {
            font-size: 1.2em;
            color: #2c5f6b;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .bullet-point {
            font-size: 1em;
            color: #2c5f6b;
            margin-bottom: 15px;
            list-style: none;
            padding-left: 0;
        }

        .bullet-point::before {
            content: "• ";
            color: #2c5f6b;
            font-weight: bold;
        }

        .description {
            font-size: 1.1em;
            line-height: 1.4;
            color: #2c5f6b;
            margin: 0;
        }

        /* Scrolling Text Container for GSAP */
        .scrolling-text {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 50px;
            overflow: hidden;
            white-space: nowrap;
            transform: translateY(-50%);
            z-index: 1;
        }

        .scrolling-text span {
            display: inline-block;
            padding-left: 100%; /* Initial position off-screen */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5em;
            }
            .subtitle {
                font-size: 1em;
            }
        }




.made-to-matter {
    background: #f1f4f7;
    padding: 27px 0 80px;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Layout */
/*
.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}
*/

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Main Title */
.main-title {
    font-size: 55px;
    font-weight: 500;
    color: #0a4b50;
    margin: 0;
    line-height: 1.1;
}
/* Right Side Small Text */
.side-text {
  max-width: 260px;
  font-size: 15px;
  line-height: 1.5;
  color: #0a4b50;
  margin-top: 20px;
}

/* Bottom Label */
.bottom-row {
  margin-top: 0px;
}

.dot {
  height: 6px;
  width: 6px;
  background: #0a4b50;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}

.label {
  font-size: 13px;
  letter-spacing: 1px;
  color: #0a4b50;
  font-weight: 600;
}
.absolute.top-0.left-0.mt-3.ml-3.z-10 {
    padding-left: 0px;
    margin-left: 4px!important;
}
/* Sub Title */
.sub-title {
    font-size: 31px;
    color: #0a4b50;
    font-weight: 500;
    margin-top: 20px;
    max-width: 900px;
    line-height: 36px;
    font-weight: 600 !important;
    margin-top: 20px;
 
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 2px;
    padding-bottom: 16px;
}

.home-projects-slider h2.sub-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


.home-projects-slider p.side-textaaa {
    text-align: center;
}

/* Divider line */
.divider {
  margin-top: 60px;
  border: none;
  height: 1px;
  background: #0a4b50;
  opacity: 0.4;
}


.product__list_00999  p.s0011111 {
    margin-bottom: 0px;
    color: #5c5858;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'SilkaMono';
}

.product__list_00999  a.text-reset.fw-700 {
    font-size: 16px!important;
    margin-bottom: 18px!important;
    display: inline-block;
    padding-top: 6px;
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 1px;
}

.read__mobgf {
    background: rgba(222, 222, 222, 1);
    height: 81%;
    margin-top: 142px;
    align-items: end;
    display: flex;
    justify-content: space-between;
    padding: 20px 29px;
}

.read__mobgf p {
    font-size: 21px;
    margin-bottom: 0px;
    line-height: 25px;
    font-weight: 600;
}

section#categorySection {
    margin-bottom: 0px!important;
}

#matterSectionvv .bottom-row {
    margin-top: 0px;
}

section#matterSectionvv {
    padding-left: 17px;
    padding-top: 36px;
    padding-bottom: 7px;
}
li.n__jhiji {
    list-style: none;
    margin-left: -21px;
}

#matterSectionvv h2#headingg {
    text-transform: uppercase;
    width: 100%;
    max-width: 77%;
}

#matterSectionvv p#smallText2 {
    font-size: 20px;
    width: 81%;
    line-height: 27px;
}




.wrapper.sec__tion_0001 {
    margin-top: 45px;
}









.button-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 1rem;
}

.wrapper {
  height: 300px;
  max-height: 50vh;
  width: 70%;

  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box {
  padding: 0.5rem;
  flex-shrink: 0;
  height: 80%;
  width: 20%;
  min-width: 150px;
}

.box__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 21px;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.show-overflow {
  overflow: visible;
}

/*
.box .box__inner {
  background: linear-gradient(var(--color-just-black), var(--color-just-black))
      padding-box,
    var(--gradient) border-box;
  border: 3px solid transparent;
  border-radius: 10px;
}
*/

.box {
  --gradient: var(--gradient-macha);
}

.box:nth-child(3n + 2) {
  --gradient: var(--gradient-summer-fair);
}

.box:nth-child(3n + 1) {
  --gradient: var(--gradient-orange-crush);
}

.box p {
  -webkit-text-fill-color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 3rem;
}


.box__inner {
    display: grid;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 22px;
    cursor: pointer;
    width: 100%;
    height: auto;
    text-align: center;
}


.wrapper.sec__tion_0001 {
    background: #f1f4f7;
}



.icon__00 img {
    width: 44%;
    margin-bottom: 22px;
}

.sec__tion_0001 .box {
    width: 20%;
    height: 348px;
    display: flex;
    align-items: center;
    border-right: 1px solid #00000040;
}

.box__inner h4 {
    height: 44px;
}
.box__inner p {
    font-size: 13px;
    color: #000!important;
    -webkit-text-fill-color: #000;
    letter-spacing: 1px;
    padding-top: 11px;
    background: transparent!important;
}
.box__inner h4 {
    text-transform: uppercase;
    font-size: 15px;
    font-family: SilkaMono;
}
.wrapper {
            width: 100%;       /* Full Width */
            height: 100vh;     /* Full Viewport Height */
            display: flex;
            align-items: center; /* Vertically center the boxes */
            overflow: hidden;  /* Hide overflow */
            position: relative;
        }

.wrapper.sec__tion_0001 {
    height: auto;
}

        .box {
            width: 300px;      /* Adjust box width */
            height: 400px;     /* Adjust box height */

        }

.wrapper.sec__tion_0001 {
    padding-bottom: 0px;
    margin-top: 42px;
}



.bg-white.overflow-hidden.product_00999 {
    background: #f1f4f7!important;
}
.product_00999 img.w-100.has-transition {
    width: 100%!important;
    height: auto!important;
    object-fit: fill!important;
    margin-left: auto;
    margin-right: auto;
    margin-top: -16px;
    margin-bottom: -13px;
}
.se_000111 .container-fluid {
    padding: 0 54px;
}
.text-left.mb-3.d__d001011111 {
    padding-left: 9px;
    padding-right: 19px;
    margin-top: 31px;
}
.product_00999 .p-5.pt-4.text-center {
    padding: 3px 12px!important;
    padding-bottom: 27px!important;
}
.product_00999 .pr-2 a {
    padding: 7px 12px!important;
    width: 100%!important;
    font-size: 12px!important;
    font-family: SilkaMono;
    letter-spacing: 3px!important;
    text-shadow: none!important;
    border-radius: 0px!important;
    height: 36px;
}
.product_00999 .flex-fill.pr-2 {
    width: 50%;
}
p.text-muted.fs-16.mb-5.d001101d {
    display: none;
}
.product_00999 button.btn.btn-white.border {
    padding: 6px 4px!important;
    width: 100%;
    font-size: 12px!important;
    font-family: SilkaMono;
    border-radius: 0px!important;
    height: 36px;
}
.product_00999 .position-relative {
    height: 422px;
}
.product_00999 .absolute.top-0.right-0.mt-3.mr-3.z-10 {
    float: right;
    position: absolute;
    top: -16px!important;
    right: 2px!important;
    /* border: 1px solid #000; */
    /* width: auto!important; */
    /* padding: 0px 0px!important; */
}

.c01140__priduct a.text-reset.hov-text-primary {
    font-size: 17px;
    margin-bottom: 0px;
    padding-bottom: 3px!important;
    margin-top: 10px!important;
    display: inline-block;
    font-family: ppneuemontreal-medium !important;
}

p.text-muted.fs-16.mb-5.d001101d {
    margin-bottom: 0px!important;
    margin-top: -10px;
}
.product_00999 span.bg-emerald-600.text-white.text-xs.font-bold.px-4.py-2 {
    padding: 0px 0px!important;
    border: 1px solid #0000005e;
    border-radius: 0px!important;
    color: #000!important;
    padding: 4px 12px!important;
    font-size: 11px;
    font-family: SilkaMono;
}

.c01140__priduct {
    padding: 0 24px;
}
#section_newest .c01140__priduct {
    padding: 0 12px;
}





.product_00999 span.bg-gray-200.text-gray-700.text-xs.tracking-wider.font-bold.px-4.py-2 {
    padding-left: 8px!important;
    font-family: 'SilkaMono'!important;
    font-size: 14px;
}




.carousel-box.position-relative.px-0.has-transition.hov-animate-outline.border-right.border-top.border-bottom {
    border: none!important;
}



section#hero__section_0099 {
    margin-bottom: 27px;
}
.se_000111 .px-3 {
    padding: 0px!important;
    margin: 7px;
    margin-bottom: 9px;
    /* padding-bottom: 26px!important; */
}
h3.fs-16.fs-md-20.fw-700.mb-2.mb-sm-0 {
    /* color: red; */
    font-size: 38px!important;
    color: #0a4b50;
    font-weight: 500!important;
    margin-top: 20px;
    text-transform: uppercase;
   
    margin-top: 20px;
    text-transform: capitalize;
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 2px;
    margin-bottom: 26px!important;
}

span.s0110010101101 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 41px;
}
span.s__009990099s {
    font-size: 13px;
    line-height: 39px;
}
#section_featured .slick-slider .slick-list .slick-slide {
    margin-bottom: 0px;
}


#section_newest h3.fs-16.fs-md-20.fw-700.mb-2.mb-sm-0 span {
    font-size: 41px;
    font-weight: 500;
}

#section_newest a.text-blue.fs-10.fs-md-12.fw-700.hov-text-primary.animate-underline-primary {
    color: #0a4b50 !important;
    font-family: 'SilkaMono';
}

section.blog__latest_blog h3.main__heading {
    padding-left: 13px;
}
.custom-card {
    background: transparent;
    border: none;
    overflow: hidden;
    height: 100%;
}

.custom-card .img-wrap {
    height: 520px;
    overflow: hidden;
}

.custom-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
/*    transition: .4s ease-in-out;*/
}

.custom-card:hover .img-wrap img {
    transform: scale(1.05);
}

.card-footer-box {
    background: #1a1a1a;
    color: #fff;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 400;
    margin-top: 8px;
}

.card-footer-box .arrow-icon {
    font-size: 20px;
}

section.mb-2.mb-md-3.mt-2.mt-md-3.se_000111 h3.fs-16.fs-md-20.fw-700.mb-2.mb-sm-0 {
    padding-left: 18px;
    margin-bottom: 0px!important;
}
.feat__section .container-fluid {
    padding: 27px 69px;
}

.center_heading_009 h2 {
    color: rgba(29, 83, 92, 1);
    text-align: center;
    text-transform: uppercase;
    font-size: 68px;
    width: 71%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}
p.shop__all a {
    background: rgba(23, 23, 23, 1);
    color: #fff!important;
    text-transform: uppercase;
    padding: 11px 38px;
}

p.shop__all {
    text-align: center;
    margin-top: 42px;
    margin-bottom: 52px;
}

.center_heading_009 h2 {
    color: rgba(29, 83, 92, 1);
    text-align: center;
    text-transform: uppercase;
    font-size: 41px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6px;
    padding-top: 1px;
    margin-top: 20px;
    text-transform: capitalize;
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 3px;
}
.experience-section {
    background: #fff;
}
.section-title {
    font-size: 55px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #204c52;
    margin-bottom: -2px!important;
    margin-top: -17px;
    margin-top: 20px;
    text-transform: capitalize;
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 2px;
}
section.experience-section.py-5 p.mb-4 {
    font-size: 15px;
    font-family: 'SilkaMono';
    letter-spacing: 0px;
    line-height: 21px;
}

p.ston__000011__000 {
    font-family: 'SilkaMono';
    letter-spacing: -0.5px;
    text-align: center;
    padding-bottom: 42px;
    width: 79%;
    margin-left: auto;
    margin-right: auto;
    line-height: 20px;
    font-size: 15px;
    padding-top: 7px;
}
/* OCTAGON IMAGE */
.octagon-wrap {
    width: 330px;
    height: 330px;
    position: relative;
    clip-path: polygon(
        30% 0%, 70% 0%,
        100% 30%, 100% 70%,
        70% 100%, 30% 100%,
        0% 70%, 0% 30%
    );
    overflow: hidden;
}
h2.process-title {
    font-size: 53px;
    font-weight: 800;
    line-height: 56px;
    padding-top: 0px;
    text-transform: uppercase;
    font-family: ppneuemontreal-medium !important;
    color: #0a4b50;
}
.octagon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 124px;
    height: 124px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
/* BUTTON STYLE */
.custom-btn {
    background: #111;
    color: #fff;
    padding: 10px 30px;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 0;
}


section.experience-section.py-5 .custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding: 8px 12px;
    border: none;
    border-radius: 0px;
    font-size: 0.9rem;
    text-transform: uppercase;
    width: 100%;
    max-width: 183px;
    min-height: 45px;
    transition: all 0.3s ease;
    display: inline-block;
    overflow: hidden;
    font-weight: normal;
}

.wrapper.sec__tion_0001.footer_-099999 h4 {
    color: #fff;
    letter-spacing: 3px;
}

.wrapper.sec__tion_0001.footer_-099999 {
    background: rgba(30, 30, 30, 1);
}

.wrapper.sec__tion_0001.footer_-099999 .box {
    height: auto;
}
.wrapper.sec__tion_0001.footer_-099999 {
    margin-bottom: 0px;
    padding-bottom: 33px;
    padding-top: 37px;
}

span.dotedd_0 {
    background: #fff;
    width: 10px;
    height: 10px;
    float: left;
    position: absolute;
    margin-top: -8px;
    border-radius: 29px;
}

.wrapper.sec__tion_0001.footer_-099999 .box {
    border-right: none;
}

.octagon-wrap {
    width: 100%;
    height: auto;
    position: relative;
    clip-path: polygon(
        30% 0%, 70% 0%,
        100% 30%, 100% 70%,
        70% 100%, 30% 100%,
        0% 70%, 0% 30%
    );
    overflow: hidden;
}

section.py-3.text-light.footer-widget.border-bottom {
    padding: 0 45px;
}

section.py-lg-3.text-light.footer-widget {
    padding: 0 62px;
}
footer.pt-3.pb-7.pb-xl-3.bg-black.text-soft-light {
    padding: 0 31px;
}

footer.pt-3.pb-7.pb-xl-3.bg-black.text-soft-light .row.align-items-center.py-3 {
    width: 100%;
    margin: 0px;
}

.col-lg-4.s02002002 .text-center.text-lg-left.fs-14 {
    text-align: center!important;
}

ul.list-inline.social.colored.mb-4 li a {
    background: transparent;
    color: #000!important;
    color: #000!important;
    font-size: 17px;
}
footer.pt-3.pb-7.pb-xl-3.bg-black.text-soft-light svg.mb-2.pb-1 {
    color: red!important;
    fill: #000;
    font-size: 6px;
    width: 12px;
    width: 23px;
    height: 23px;
    line-height: 27px;
    border-radius: 5px;
    background: #d9d9d9;
    padding: 0 6px;
    padding-top: 4px;
    margin-top: 2px;
}

section.py-3.text-light.footer-widget.border-bottom a img {
    filter: brightness(0) invert(1);
    width: 177px;
    height: auto;
}
ul.list-inline.social.colored.mb-4 li a i {
    background: #d9d9d9;
    color: #000!important;
    font-size: 17px;
    width: 22px;
    height: 22px;
    line-height: 24px;
    border-radius: 5px;
}

section.py-3.text-light.footer-widget.border-bottom button.btn.btn-primary.rounded-0.w-100 {
    background: rgba(223, 223, 223, 1);
    border-color: rgba(223, 223, 223, 1);
    color: #000;
    width: 145px!important;
}

ul.list-inline.social.colored.mb-4 li a i {
    background: #d9d9d9;
    color: #000!important;
    font-size: 17px;
}


footer.pt-3.pb-7.pb-xl-3.bg-black.text-soft-light.dd__00d9_0 {
    padding-top: 0px!important;
    padding-bottom: 0px!important;
}

ul.list-inline.social.colored.mb-4 {
    margin-bottom: 0px!important;
}
ul.list-inline.social.colored.mb-4 li.list-inline-item.ml-2.mr-2 {
    margin-right: -14px!important;
}
footer.pt-3.pb-7.pb-xl-3.bg-black.text-soft-light.dd__00d9_0 {
    background: #1e1e1e!important;
    border-top: 1px solid #ffffff26;
}


div#section_newest .slick-slide {

    padding: 8px;
}


div#section_newest {
    padding-bottom: 42px;
    background: #f1f4f7;
}

@media screen and (min-width:1100px) and (max-width:1600px) {

.heading-wrapper.is-bottom img.about_heading {
    margin-top: 21px;
}
    .just__0099__00s {
    padding: 103px 0px 0px 0px;
}

    .banner-overlay h3 {
    width: 90%;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    background: #ffffff;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    gap: 8px;
    transition: 0.3s;
    width: auto;
    border-radius: 10px;
}

    .content_0 {
    width: 72%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: -49px;
}

.read__mobgf {
    background: rgba(222, 222, 222, 1);
    height: 368px;
    margin-top: 80px;
    align-items: end;
    display: flex;
    justify-content: space-between;
    padding: 20px 29px;
}
    #matterSectionvv h2#headingg {
    text-transform: uppercase;
    width: 100%;
    max-width: 89%;
}
    #matterSectionvv p#smallText2 {
    font-size: 17px;
    width: 73%;
    line-height: 23px;
}

.product_00999 .position-relative {
    height: 389px;
}

    .c01140__priduct a.text-reset.hov-text-primary {
    font-size: 16px;
    margin-bottom: 0px;
    padding-bottom: 0px!important;
    margin-top: 14px!important;
    display: inline-block;
}
}



.preloader-wrapper {
    z-index: 9999999999!important;

}
.preloader-wrapper {
    z-index: 9999999999!important;
    top: 0px!important;
}

h1.hero_heading.hh01 {
    font-size: 35px!important;
    font-size: 26px;
    font-weight: 700;
    color: #2b4a4c;
    margin-bottom: 15px;
    text-transform: uppercase;
    /* margin-top: 20px; */
    text-transform: uppercase;
    font-family: ppneuemontreal-medium!important;
    letter-spacing: 2px;
    padding-bottom: 0px;
    line-height: 43px;
}
p.hero_heading.hh04 {
    font-size: 15px;
    width: 62%;
    font-family: ppneuemontreal-medium!important;
    padding-top: 13px;
    line-height: 21px!important;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #355b5d;
    width: 70%;
    text-transform: uppercase;
}
.left__align ul {
    display: flex!important;
    gap: 13px;
    padding: 0;
    margin: 0;
}

.section_home-v1-hero {
    background-color: #ffffff;
    height: 100%;
    overflow: clip;
}

.home-v1-hero_header-subcontent {
    width: 100%;
    max-width: 60%!important;
    overflow: clip;
    /* display: flex; */
    /* align-items: flex-start; */
}

.section_home-v1-hero {
    background-color: #fff!important;
    height: 100%;
    overflow: clip;
}
.home-v1-hero_header-wrap {
    padding-left: 60px;
}

.s__hero_0090114401 {
    padding-left: 0px;
    margin-top: 56px;
    display: flex!important;
}

.left__align {
    width: auto;
}


.s__hero_0090114401 {
    width: 100%;
    display: flex;
    align-items: center!important;
    /* margin-bottom: 14px!important; */
    position: relative;
    /* top: 22px; */  
    /* z-index: 99999999; */
}
.home-v1-hero_header-content-wrap {
    grid-column-gap: 0px!important;
    grid-row-gap: 0px!important;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.home-v1-hero_header-subcontent {
    width: 100%;
    max-width: 26rem;
    overflow: clip;
    margin-top: 21px;
    /* margin-bottom: -61px; */
    background: transparent!important;
}

.right__align_009 img {
    width: 75px;
    height: auto;
    position: relative;
    top: 8px;

}


.preloader-wrapper {
    z-index: 1005;
    background-color: #f4f5ed!important;

}

.section_home-v1-hero-sticky-track {
    background-color: #f4f5ed!important;

}


.section_home-v1-hero-mbl01, .section_home-v1-hero-mbl02 {
    background-color: #f4f5ed!important;
}
   

.home-v1-hero_right-overlay {
    background-color: #1d535c!important;

}
.home-v1-hero_grid-right::before {
    content: "";
    background: #00000085;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
}
.section_home-v1-brands-sticky-track {
    background-color: #e6d6c2;

}
h1{
    font-family: Sohne,Arial,sans-serif!important;
}

h2{

     font-family: Sohne,Arial,sans-serif!important;
}


.section_home-v1-brands-sticky-track {
    background-color: #e6d6c2!important;

}

.section_intro-wrapper {
    margin-top: 14px;
}


@media screen and (min-width:1100px) and (max-width:1600px) {

.container-large {
    width: 100%;
    max-width: 46%!important;
    margin-left: 0px!important;
    margin-right: auto;
}
h1.hero_heading.hh01 {
    font-size: 32px!important;
    font-size: 26px;
    font-weight: 600;
    color: #20555e;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 41px;
    padding-bottom: 0px;
}
    .left__align {
    width: 66%;
}
    .home-v1-hero_header-wrap {
    padding-left: 10px;
}

    .s__hero_0090114401 {
    padding-left: 0px;
    margin-top: -12px;
    display: flex!important;
}
    .banner-overlay {

    padding: 26px;

}

    .banner-overlay h3 {
    width: 90%;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

    .img_009_009 {
    position: relative;
    width: 100%;
    height: 239px;
    overflow: hidden;
}


    .img_009_009 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: -195px;
}
.box__inner h4 {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}
span.dotedd_0 {
    background: #fff;
    width: 10px;
    height: 10px;
    float: left;
    position: absolute;
    margin-top: -6px;
    border-radius: 29px;
}
    
    
.process-content h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    position: relative;
    top: 1px;
    margin-right: 0px !important;
    font-family: 'SilkaMono';
    letter-spacing: 0px;
}
    .c01140__priduct a.text-reset.hov-text-primary {
    font-size: 13px;
    margin-bottom: 0px;
    padding-bottom: 0px!important;
    margin-top: 14px!important;
    display: inline-block;
}

    p.text-muted.fs-16.mb-5.d001101d {
    font-size: 12px!important;
}

    .product_00999 span.bg-gray-200.text-gray-700.text-xs.tracking-wider.font-bold.px-4.py-2 {
    padding-left: 8px!important;
    font-size: 11px;
    color: #4a3d2e;
}
}
section.pt-4.my-4.contant_0144144 strong {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: rgb(29 83 92) !important;
    text-transform: uppercase;
    text-shadow: none!important;
    letter-spacing: 1px;
    font-family: SilkaMono;
}
.section_home-v1-hero-sticky-track {
    margin-top: 0px;
}

span.ml-3.ADDRESS__353 span.fs-19.fw-700 {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: rgb(29 83 92) !important;
    text-transform: uppercase;
    text-shadow: none !important;
    letter-spacing: 1px;
    font-family: SilkaMono;
    padding-bottom: 22px;
    display: inline-block;
}


section.pt-4.my-4.contant_0144144 span.fs-19.fw-700 {
    font-size: 18px!important;
    font-weight: 600;
    text-decoration: none;
    color: rgb(29 83 92) !important;
    text-transform: uppercase;
    text-shadow: none !important;
    letter-spacing: 1px;
    font-family: SilkaMono;
}

.s__000011441144 h3.mb-0.fs-14.fs-md-16.fw-700.text-dark {
    color: rgb(29 83 92) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: SilkaMono;
    font-size: 15px !important;
}

.s__000114144011 h6.fw-700.mb-3.text-dark {
    color: rgb(29 83 92) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: SilkaMono;
    font-size: 15px !important;
}
.preloader-wrapper {
    z-index: 999999999999!important;

    top: 0px!important;
}



.categoryBox {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.categoryBox:hover {
    transform: scale(1.05);      /* Zoom effect */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);  /* Smooth shadow */
}

.categoryBox img {
    transition: transform 0.35s ease;
}

.categoryBox:hover img {
    transform: scale(1.08);     /* Image also zooms */
}

.product__list_00999.categoryBox {
    overflow: hidden;
    box-shadow: none!important;
}

ul.s022s02s li a {
    color: rgba(159, 159, 159, 1);
    font-size: 13px;
}

.s022s02s li {
    list-style: none;
}

ul.s022s02s {
    padding: 0px;
}

ul.list-unstyled li a {
    color: #333!important;
    font-size: 13px;
}

.thestafdescss h3 {
    color: #fff;
    font-family: Sohne,Arial,sans-serif!important;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    padding-top: 15px;
    text-align: center;
}

.thestafdescss p{
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding-top: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.themembersinners {
    margin: 22px;
    position: relative;
}
.thememberimg img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.thememberinfoss h3 {
    position: relative;
    top: 0;
    right: 0;
    font-size: 26px;
    color: #000 ;
    opacity: 1;
}

section.theteeadmmss {
    padding: 81px 50px 29px;
    background: #374543;
}

.thememberinfoss h3 {
    position: relative;
    top: 0;
    right: 0;
    font-size: 26px;
    color: #fff;
    padding-top: 22px;
}

.thememberinfoss p {
    position: relative;
    bottom: 0;
    padding-top: 20px;
    color: #fff;
}

.product_00999 a.d-block.overflow-hidden {
    text-align: center;
}


section.mb-1.listingbg_000 {
    background: #fff;
}
.listingbg_000 div#products-row {
    border: none!important;
    padding: 0px;
}

.listingbg_000 .col.border-right.border-bottom.has-transition.hov-shadow-out.z-1 {
    padding: 9px;
    border: none!important;
    box-shadow: none!important;
}


.listingbg_000 .aiz-filter-sidebar {
    margin-top: 20px;
    /* border-right: 1px solid #000; */
}

.listingbg_000 .col-xl-2 {
    /* border-right: 1px solid #0000002e; */
    margin-top: 21px;
    padding-left: 30px!important;
    padding-right: 34px!important;
}

.product__hero img {
    width: 100%;
    object-fit: none;
}

.aiz-filter-sidebar  div#category_filter {
    height: auto;
}

ul#treeview2 li {
    border: none;
    background: transparent;
    border-radius: 5px;
}
.aiz-filter-sidebar label.aiz-checkbox.overflow-visible.mb-3.d-flex.align-items-center {
    background: transparent!important;
}

.aiz-filter-sidebar label.aiz-checkbox.overflow-visible.mb-3.d-flex.align-items-center {
    background: transparent!important;
    margin-bottom: 0px!important;
    padding: 5px 17px;
    padding-top: 6px;
    padding-left: 27px;
    font-size: 12px!important;
}

/*
span#category_checkid_textgenerel_9 {
    color: #000!important;
    font-weight: 600!important;
    text-transform: uppercase!important;
    font-family: 'SilkaMono';
    margin-top: 0px;
}
*/
.aiz-filter-sidebar span.aiz-square-check.border_black {
    margin-top: 6px;
    margin-left: 10px;
}
.aiz-filter-sidebar .bg-white.border-bottom-listing-sidebar {
    background: transparent!important;
    height: auto!important;
    border: none;
    /* padding: 0px!important; */
    border-top: none;
}

ul#treeview2 {
    margin-bottom: 0px;
    padding-bottom: 0px!important;
}

.bg-white.border-bottom-listing-sidebar .fs-16.fw-700.p-3 {
    padding: 0px!important;
    border: none!important;
    margin-bottom: 11px;
    padding: 2px 14px!important;
    /* font-weight: normal!important; */
    font-size: 12px!important;
    text-transform: uppercase;
    border-radius: 6px;
    /* background: #fff; */
}
div#general_cagegories_box {
    padding: 0px;
}
.hummingbird-base {
    white-space: nowrap;
    padding-inline-start: 0px !important;
    background: transparent;
    padding: 0px!important;
    margin-top: 1px;
    position: relative;
    z-index: 999;
    border-radius: 6px;
    border: none;
}
div#collapse_price{
    
     background: transparent;
    padding: 9px!important;
    margin-top: 1px;
    position: relative;
    z-index: 999;
    border-radius: 6px;
    border: 1px solid #00000038;
}


div#collapse_Size{
    
      background: transparent;
    padding: 9px!important;
    margin-top: 1px;
    position: relative;
    z-index: 999;
    border-radius: 6px;
    border: 1px solid #00000038;
}

#collapse_Size span.aiz-square-check.border_black {
    margin-top: 0px;
    margin-left: 4px!important;
}
#collapse_price .px16px.py22px.hover-effect {
    padding-bottom: 0px!important;
}

div#collapse_price {
    margin-bottom: 14px;
}

div#collapse_Size {
    margin-bottom: 17px;
    padding-bottom: 0px!important;
}

ul.pagination {
    justify-content: center;
    margin-bottom: 37px!important;
}

section.py-3.text-light.footer-widget.border-bottom {
    margin-top: -5px;
}
.pagination .active .page-link {
    background-color: #1e1e1e;
    border-color: #1e1e1e;
}
#collapse_Size .px-3.aiz-checkbox-list {
    padding: 0px!important;
}

.d001d__s001 {
    border: 1px solid #00000047;
    margin-right: 13px;
    border-radius: 5px;
}
.d001d__s001 button.btn.dropdown-toggle.btn-light {
    background: transparent!important;
    padding: 1px;
    height: auto;
    line-height: 10px;
    padding-bottom: 12px;
    padding-top: 1px;
}

.d001d__s001 .dropdown.bootstrap-select.form-control.select_btn_border_none.form-control-sm.text-center.border-0.aiz-.rounded-0 {
    background: transparent;
    margin-left: 9px!important;
}

.pagination .page-link, .page-item.disabled .page-link {
    min-width: 32px;
    min-height: 32px;
    line-height: 32px;
    text-align: center;
    padding: 0;
    border: 1px solid var(--soft-light);
    font-size: 0.875rem;
    border-radius: 0 !important;
    color: var(--dark);
    border-radius: 34px!important;
}


.dropdown-item.active, .dropdown-item:hover, .dropdown-item:active {
    color: #fff !important;
    background-color: #1d535c!important;
}
div#section_newest .bg-white.overflow-hidden.product_00999 {
    background: #fff!important;
}
section.product__hero {
    height: 375px;
    width: 100%;
}
h3.filter_0099 {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600!important;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1334px;
    }
}

.aiz-filter-sidebar.collapse-sidebar-wrap.sidebar-xl.sidebar-right.z-1035.sticky-top {
    top: 92px;
}

.thumbproduct img.mw-100.size-60px {
    width: 119px;
    height: 107px!important;
}

.col-2.mt-3.d-none.d-lg-block.scroll-x.product_00114114414 {
    padding-left: 0px;
}

.product__details_009s h2.mb-4.fs-16.fw-700.text-dark {
    color: rgb(51 54 54) ! IMPORTANT;
    text-align: left;
    text-transform: CAPITALIZE;
    font-size: 44px!IMPORTANT;
    width: AUTO;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    padding-top: 19PX;
    margin-bottom: 9px!important;
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 1px;
    line-height: 49px;
    font-weight: 900!important;
}

.product__details_009s span.rating.rating-mr-2 i.las.la-star {
    margin-right: 2px;
}

.carousel-box img {
    cursor: zoom-in !important;
}



.sdfs_000 .carousel-box {
    float: left;
    width: 48%;
    margin: 1px;
    background: #f1f4f7;
    padding: 8px;
    height: auto;
}

.aiz-megabox .aiz-megabox-elem {
    border: 1px solid #dfdfe6;
    border-radius: 0.25rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 0.25rem;
    border-radius: 6px!important;
    font-size: 11px;
}

.product-details-page .row.no-gutters.mb-3 {
    margin-bottom: -10px!important;
}

div#chosen_price_div {
    margin-top: 18px;
}

button.btn.btn-dark.buy-now.fw-600.add-to-cart.min-w-150px.rounded-1.w-100 {
    background: #1d535c;
    border-radius: 44px!important;
    margin-right: 11px;
}

button.btn.bg-soft-primary.add-to-cart.fw-600.min-w-150px.w-75.rounded-1.text-primary.hov-bg-primary.hov-text-light {
    background: transparent!important;
    border: 2px solid #1d535c;
    border-radius: 55px!important;
    color: #1d535c!important;
}

.d-flex.wishlistttt a.mr-3.fs-13.text-dark.opacity-60.has-transitiuon.hov-opacity-100 {
    width: 20px;
    background: #fff;
    opacity: 1!important;
    margin-right: 26px!important;
    border: 2px solid #1d535c;
    padding: 9px;
    width: 43px;
    text-align: center;
    font-size: 18px!important;
    border-radius: 12px;
    height: 44px;
    padding: 0px;
    line-height: 40px;
}
.wishlistttt i.la.la-heart-o.mr-1 {
    margin-right: 0px!important;
    padding-right: 0px!important;
}

.d-flex.wishlistttt {
    margin-left: 35px;
}

.s__000011414414144 button.btn.btn-sm {
    border-radius: 6px!important;
    padding: 9px 21px;
    font-size: 14px;
    border: 1px solid #1d535c38;
    border: 2px solid #00000030;
    border-radius: 43px!important;
    background: #fff;
    color: #2a5d65;
}
.row.no-gutters.align-items-center.aiz-plus-minus.mr-3 {
    border: 1px solid #00000045;
    margin-bottom: 19px;
    line-height: 11px;
    border-radius: 6px;
}
.s__border__00099 button.btn {
    padding: 0px!important;
    height: 33px;
}

div#bulk-deal-button-container button.btn.btn-success.btn-block.btn-lg {
    background: transparent;
    color: #fff;
    line-height: 12px;
    width: 100%;
    border: 2px solid #1d535c;
    border-radius: 62px;
    background: #1d535c;
}


section.mb-4ssss {
    width: 100%;
    margin-top: 19px;
    background: #f1f4f7;
    padding: 45px 0px;
}

.product__details_009s.sticky-top {
    top: 102px;
}

header.sticky-top.z-1020.middle-background-color-visibility.stikcy-header-visibility {
    z-index: 9999!important;
}

.text-secondary.fs-13.fw-400.mt-2 {
    text-transform: uppercase;
    font-size: 11px!important;
    color: #000!important;
    margin-top: 13px!important;
    margin-bottom: 3px;
}

div#chosen_price_div {
    display: none;
}

.row.no-gutters.mb-3.sds00011 {
    margin-top: 12px;
    margin-bottom: 3px!important;
}

.row.no-gutters.align-items-center.aiz-plus-minus.mr-3.s__border__00099 {
    margin-top: 31px;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 999999999;
   
}

section.mb-4ssss {
    width: 96.7%;
    margin-top: 19px;
    background: #f1f4f7;
    padding: 11px;
}

.aiz-megabox>input:checked~.aiz-megabox-elem, .aiz-megabox>input:checked~.aiz-megabox-elem {
    border-color: #1d535c;
}

.view__pro .container-fluid {
    padding: 0 80px;
}

#section_last_viewed_products .carousel-box {
    padding: 0px!important;
    margin: 0px!important;
}

#section_last_viewed_products .slick-initialized .slick-slide {
    display: block;
    padding: 7px;
}

#section_last_viewed_products h3.fs-16.fw-700.mb-2.mb-sm-0 span {
    font-size: 38px !important;
    color: #0a4b50;
   
    margin-top: 20px;
    text-transform: capitalize;
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 2px;
}

div#section_last_viewed_products {
    background: #fff!important;
    padding: 42px 0;
}

div#section_last_viewed_products {
    background: #fff!important;
    padding: 42px 0;
    border: none!important;
}
.s__000011414414144 button.btn.btn-sm:hover {
    color: #000;
    background: #1e545d;
    border: 2px solid #1e545d;
}
.sdfs_000 .carousel-box {
    /* float: left; */
    width: 100%;
    margin: 1px;
    background: #f1f4f7;
    padding: 8px;
    height: auto;
    display: inline-block;
    text-align: center;
}
.nav.aiz-nav-tabs a {
    font-size: 15px !important;
    color: #0a4b50!important;
    font-weight: 500 !important;
    margin-top: -11px;
    text-transform: uppercase;
    padding-bottom: 0px!important;
}

.tab-pane  .py-5 {
    padding: 0px!important;
    padding-top: 11px!important;
}

.product__details_009s  .bg-white.mb-4.border.p-3.p-sm-4 {
    border: 2px solid #1d535c4d !important;
    border-radius: 8px;
}

.rpoduct_009.sticky-top {
    top: 113px;
}


.product__details_009s  .bg-white.border.mb-4 {
    border: 2px solid #1d535c4d!important;
    border-radius: 8px;
}
.product__details_009s .bg-white.border {
    border: 2px solid #1d535c4d!important;
    border-radius: 8px;
}

.product__details_009s span.mr-4 {
    font-size: 14px !important;
    color: #0a4b50 !important;
    font-weight: 500 !important;
    margin-top: -11px;
    text-transform: uppercase;
    margin-bottom: 0px;
    padding-bottom: 0px;
}


div#bulkDealModal {
    z-index: 999999999999!important;
}

.rpoduct_009.sticky-top {
    top: 113px;
    z-index: 9!important;
}

.modal-header.bg-success.text-white {
    background: #1d535c!important;
}

#bulkDealModal .modal-content {
    border-radius: 8px!important;
}

button.btn.btn-success.btn-lg.btn-block.mt-3 {
    background: #1d535c;
    border-color: #1d535c;
}
#bulkDealModal img.img-fluid.rounded.border {
    width: 73%;
    height: auto;
    max-height: fit-content!important;
    border: none!important;
}.product__details_009s  .border.border-secondary-base {
    padding: 4px 11px!important;
}

.product__details_009s  a.btn.btn-secondary-base.fw-400.rounded-0.text-white {
    padding: 4px 11px;
    font-size: 12px;
}
.product__details_009s.sticky-top {
    top: 102px;
    z-index: 999;
}
div#addToCart {
    z-index: 99999!important;
    background: #00000069;
}
div#bulkDealModal {
    background: #0000009c;
}
header.sticky-top.z-1020.middle-background-color-visibility.stikcy-header-visibility {
    z-index: 99999!important;
}
p.ewererddg {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: rgb(29 83 92) !important;
    text-transform: uppercase;
}

.nav-user-info {
    cursor: pointer;
    z-index: 99999;
    position: relative;
}

.hover-user-top-menu.active {
    display: block;
    animation: inherit;
}

.aiz-user-sidenav.overflow-auto.c-scrollbar-light.px-4.pb-4 {
    background: #f1f4f7;
    border-radius: 10px;
    border: none!important;
    box-shadow: none!important;
}

.aiz-user-sidenav-wrap.position-relative.z-1.rounded-0 {
    border-radius: 12px!important;
}
.col.s__dashboard__99-00 span.fs-14.fw-400.text-white.mb-1 {
    color: #000!important;
}

.col.s__dashboard__99-00 span.fs-20.fw-700.text-white {
    color: #1d535c !important;
}
.aiz-user-panel .p-4.bg-primary.h-100 {
    background: #1d535c!important;
    border-radius: 11px;
    background: transparent!important;
    border: 2px solid #1d535c29;
    color: #000!important;
    display: flex;
    align-items: center;
}
.col.s__dashboard__99-00 .d-flex.align-items-center.pb-4 {
    margin-bottom: 0px;
    padding-bottom: 0px!important;
}
.col.s__dashboard__99-00 a.fs-12.text-white {
    color: #000!important;
}
.col.s__dashboard__99-00 .d-flex.align-items-center.pb-4 {
    float: left;
    width: 85%;
}

.no__bg__00900114 .px-4.bg-white.border.h-100 {
    border: none!important;
}

.no__bg__00900114 .d-flex.align-items-center {
    /* border: 2px solid #1d535c!important; */
    padding: 15px 14px!important;
    border-radius: 12px;
    background: #fff;
    border: 2px solid #1d535c29;
}
.no__bg__00900114 .px-4.bg-white.border.h-100 {
    padding: 0px!important;
}

.s__000114144011 .col-md-12 {
    padding: 0px;
    margin-bottom: 25px;
  
    border-radius: 7px;
    border: 2px solid #1d535c29;
}
.s__000114144011 .p-4.border.h-100 {
    border-radius: 7px;
}  

.s__000114144011 button.btn.btn-dark.btn-block.fs-14.fw-500 {
    background: #1d535c;
    border-color: #1d535c;
}

.s__000011441144 {
   
    padding: 14px 15px;
    border-radius: 9px;
    border: 2px solid #1d535c29;
}

.aiz-user-sidenav .aiz-side-nav-link.active, .aiz-user-sidenav .aiz-side-nav-link:hover {
    background-color: rgb(29 83 92);
    color: #fff;
}

.aiz-user-sidenav .aiz-side-nav-link.active>svg *, .aiz-user-sidenav .aiz-side-nav-link:hover>svg *, .aiz-user-sidenav .level-2-active>svg *, .aiz-user-sidenav .level-3-active>svg * {
    fill: #fff;
}
.modal-backdrop.fade.show.modal-stack {
    z-index: 999!important;
}

.modal.fade.show {
    z-index: 9999999999999999999!important;
    background: #000000a6;
}
.file-preview.box.sm.active {
    height: auto!important;
}

.file-preview.box.sm.active {
    /* position: absolute; */
    float: right;
}
.col.body p {
    font-size: 9px;
}
.file-preview.box.sm {
    /* position: absolute; */
    float: left;
    margin-left: 113px!important;
}

button.btn.btn-sm.btn-primary.rounded-0.w-150px {
    background: #1d535c;
    border-radius: 5px!important;
    border: none;
}

.aiz-user-panel .card.rounded-0.shadow-none.border {
    border: 2px solid #1d535c !important;
    border-radius: 8px!important;
}

.aiz-user-panel .card.shadow-none.rounded-0.border {

    border-radius: 8px!important;
    border: 2px solid #1d535c29!important;
}

.aiz-user-sidenav-wrap.position-relative.z-1.rounded-0 li.aiz-side-nav-item a.aiz-side-nav-link {
    padding: 7px 11px!important;
}


section.py-lg-3.text-light.footer-widget span.theming-theme-light {
    color: #868683 !important;
    font-size: 12px;
    line-height: 7px!important;
    letter-spacing: 0.3px;
}
.aiz-user-sidenav-wrap.position-relative.z-1.rounded-0 li.aiz-side-nav-item svg {
    background: #fff;
    width: 22px;
    height: 22px;
    padding: 4px;
    border-radius: 7px;
    color: red;
    fill: red!important;
    border: 1px solid #00000047;
}
li.aiz-side-nav-item.mm-active svg {
    background: #1d535c !important;
    border: 1px solid #fff!important;
}

li.aiz-side-nav-item a.aiz-side-nav-link:hover svg{
    
    background: #1d535c !important;
    border: 1px solid #fff!important;
}

.aiz-user-panel .p-4.mb-3.c-pointer.text-center.bg-light.has-transition.border.h-100.hov-bg-soft-light {
   border: 2px solid #1d535c29!important;
    border-radius: 8px !important;
}

.aiz-user-top-menu.bg-white.rounded-0.border-top.shadow-sm {
    background: #fff!important;
    box-shadow: 0px 0px 6px -3px #000!important;
    border-radius: 9px!important;
    margin-top: 16px;
}

.aiz-user-top-menu.bg-white.rounded-0.border-top.shadow-sm span.badge.badge-primary.badge-inline.badge-pill.absolute-top-right--10px {
    margin-right: 22px!important;
}

div#section_last_viewed_products {
    background: #f1f4f7!important;
}

.modal-dialog.modal-dialog-centered.modal-lg {
    z-index: 9999999999999999!important;
}
@media screen and (min-width:1200px) and (max-width:1800px) {
    
    .view__pro .container-fluid {
    padding: 0 57px;
}
}

section#cart-details .bg-white.p-3.p-lg-4.text-left {
    border: 2px solid #1d535c1f;
    border-radius: 11px;
}

#cart_summary .card.rounded-0.border {
    background: #1d535c;
    border-radius: 12px!important;
    color: #fff;
}

#cart_summary th {
    color: #fff!important;
}
#cart_summary td {
    color: #fff!important;
}


#cart_summary .d-flex.align-items-center.justify-content-between.bg-primary.p-2 {
    background: transparent!important;
    color: #000!important;
    border-radius: 5px;
    border: 2px solid #ffffff57;
}

#cart_summary a.btn.btn-primary.btn-block.fs-14.fw-700.rounded-0.px-4 {
    background: #23272b!important;
    border: 1px solid #ffffff6b;
    border-radius: 10px!important;
}

#cart-details .bg-white.p-3.p-lg-4.text-left {
    padding: 0px 0px!important;
}

section#cart-details ul.list-group.list-group-flush {
    padding: 16px 22px!important;
}
#cart-details .aiz-checkbox-inline.mb-3 {
    padding: 15px 27px;
    margin-bottom: 0px!important;
    padding-bottom: 12px;
}

#cart-details li.list-group-item.px-0.border-md-0 {
    border-bottom: 1px solid #00000017 !important;
}

#cart-details span.fw-700.fs-14.text-primary {
    color: #23272a !important;
}

.form-default .card-header.border-bottom-0 {
    border: 2px solid #1d535c!important;
    padding: 0px 9px!important;
    height: auto;
    border-radius: 6px!important;
    background: transparent!important;
    /* border-bottom: 2px solid red!important; */
}

#collapseDeliveryInfo li.list-group-item {
    /* border-bottom: 1px solid #000!important; */
    padding: 9px 3px!important;
    border: 1px solid #00000026 !important;
    margin-bottom: 9px;
    border-radius: 8px;
}

button#submitOrderBtn {
    background: #292933;
    border-color: #292933;
    border-radius: 6px!important;
}
.form-default .collapse {
    border: 2px solid #1d535c;
    border-top: none;
    border-radius: 0px 0px 9px 9px!important;
    margin-top: -4px;
}

tr.cart-total {
    border-top: 1px solid #ffffff38;
}

.cart_000114414  span.fw-700.fs-13 {
    font-size: 14px!important;
    text-transform: capitalize;
    letter-spacing: 0px;
    margin-bottom: 0px!important;
    padding-bottom: 0px!important;
    line-height: 15px;
}

.cart_000114414  .px-3.py-2.fs-15.border-top {
    padding: 5px 21px!important;
    margin: 0px!important;
}

.cart_000114414 .py-3.text-center.border-top.mx-4 {
    padding: 0px 0px!important;
    margin: 0px!important;
    padding-top: 12px!important;
}

.cart_000114414  img.img-fit.size-60px {
    width: 60px;  
    border: 1px solid #00000033;
    padding: 5px;
    border-radius: 9px;
    height: 53px;
}
.modal-backdrop.fade.show.modal-stack {
    z-index: 9999!important;
}
section#cart-details {
    padding: 36px 0;
}
.about_heading-wrapper.is-top {
    margin-bottom: -57px;
    height: auto;
    /* overflow: hidden; */
    margin-top: -40px;
    background: #fff;
    position: relative;
    z-index: 9;
}
div#wishlist {
    margin-left: -18px;
}



.carousel-box img {
    cursor: inherit;
    height: auto;
    width: 100%;
}

.home-slider {
    max-width: 100%!important;
}

.home-slider {
    margin-top: 85px;
}

.cart_000114414  .fs-16.fw-700.text-soft-dark {
    background: #f1f4f7;
    margin: 0px!important;
    padding: 9px 23px!important;
}

.btn-secondary-base, .btn-soft-secondary-base:hover, .btn-outline-secondary-base:hover {
    background-color: #1d535c;
    border-color: #1d535c;
}

.header-bar .container.h-100 {
    padding: 0px;
}
.search-input-box>input {
    border-radius: 46px;
    overflow: hidden;
    height: 40px;
    background: #dae2e3;
    font-family: SilkaMono;
    font-size: 12px!important;
    letter-spacing: 1px;
}

.search-input-box .form-control:focus {
    border-width: 2px !important;
    border-color: #1d535c !important;
}

.front-header-search {
    background-color: white !important;
    border-radius: 20px;
    margin-left: 0px!important;
}
#search-content li.list-group-item.py-1 a {
    font-size: 14px;
    text-transform: capitalize;
    /* background: #f1f4f7; */
}

#search-content .px-2.py-1.text-uppercase {
    text-align: left!important;
}

#search-content span.fw-600.fs-16.text-primary {
    color: #000!important;
    letter-spacing: 1px;
    font-size: 16px!important;
}

.user_profil img {
    width: 19px;
}

.cart__addto a.d-flex.align-items-center.px-3.h-100 {
    margin-right: 0px;
    padding-right: 0px!important;
    float: left;
    width: 100%;
    /* display: inline-block!important; */
    margin: 0px;
    padding: 0px!important;
}
span.cart_009001 {
    display: flex!important;
}
p.mr-2.sddd00144 {
    float: left!important;
    margin-right: 2px!important;
}

span.cart__addto {
    width: 73px;
    margin-top: 0px;
}

a.d00110d1 {
    display: grid;
}

span.profi__00 {
    color: #444;
    font-size: 12px;
}
p.ewererddg.d001102 {
    margin-top: 11px;
}
ul.menu-list.s__00001144144 {
    display: flex;
    align-items: inherit;
    position: relative;
    top: 0px;
}

#wishlist span.position-relative.d-inline-block {
    display: grid!important;
    margin-top: 3px;
}

span.profi__00 {
    font-size: 14px!important;
    font-weight: 600;
    text-decoration: none;
    color: rgb(29 83 92) !important;
    text-transform: uppercase;
    text-shadow: none !important;
    letter-spacing: 1px;
    position: relative;
    top: 3px!important;
    font-family: 'SilkaMono';
    letter-spacing: 2px;
}

span.cart-count {
    font-weight: 600;
    text-decoration: none;
    color: rgb(29 83 92) !important;
}
.section_about-full-image img {   
    width: 100%!important;
    object-fit: cover!important;
}




.img_00logo img {
    width: 215%;
    max-width: 211%;
    margin-top: -99px;
    opacity: 0.3;
}
   

.text__color__and__fonts {
    font-size: 15px!important;
    color: #ffffffcf!important;
}

.section_about-full-image {
    margin-top: 35px;
}


section#matterSection {
    padding-bottom: 0px;
}
h1.main-title {
   
    margin-top: 20px;
    text-transform: capitalize;
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 2px;
    padding-bottom: 16px;
}

h5.fw-bold.mb-2 {
    
    margin-top: 20px;
    text-transform: capitalize;
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 2px;  
    padding-bottom: 0px;    
}

section.py-lg-3.text-light.footer-widget a.fs-13.text-soft-light.animate-underline-white {
    color: #868683 !important;
}


#countryList li.active {
    display: block !important;
    width: 83%;
    margin-top: -19px!important;   
    position: relative!important;
    top: -7px;
}

.s__hero_0090114401 {
    width: auto;
}

ul.menu-list.s__00001144144 {
    padding-right: 0px;
    gap: 32px;
}
.search-input-box {
    width: 100%;
    margin-left: -2px;
}
@media  screen and  (min-width:320px) and (max-width:1600px){
 .header-bar .container.h-100 {
    width: 100%;
    max-width: 97%;
}
.s__hero_0090114401 {
    width: 579px!important;
}
    #countryList li.active {
    display: block !important;
    width: 46%;
    margin-top: -19px!important;
    position: relative!important;
    top: -7px;
}
}
.h-90px, .size-90px {
    height: 93px;
    width: 57px;
}
.modal-content {
    border: 0 !important;
    border-radius: 9px !important;
}
ul.menu-list.right__space {
    margin-top: 2px;
    margin-right: 37px;
}

#category-menu-bar span.fw-700.fs-16.mr-3 {
    font-size: 14px!important;
    font-weight: 600!important;
    position: relative;
    top: 1px;
    margin-right: 0px!important;
    font-family: 'SilkaMono';
    letter-spacing: 2px;
}
ul.menu-list.s__00001144144 li {
    width: auto;
}

li.cart_00011144 {
    margin-right: 10px;
}
.flex__div_00 {
    width: 54%;
}

ul.menu-list.s__00001144144 .pt-20px, .py-20px, .p-20px {
    padding-top: inherit;
}
li#category-menu-bar {
    font-size: 12px;
    font-weight: normal;
    text-decoration: none;
    color: rgb(29 83 92) !important;
    text-transform: uppercase;
    text-shadow: none !important;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 2px;
}
.text-style-allcaps h3 {
    font-family: 'SilkaMono'!important;
    font-size: 62px;
    font-weight: 500;
}


/*
ul.list-unstyled.categories.no-scrollbar.mb-0.text-left li.category-nav-element.border.border-top-0 {
    display: none;
}
*/

#click-category-22 .categories li {
    display: none;
}

#click-category-2 .categories li {
    display: none;
}


#click-category-22 .categories li:nth-child(2) {
    display: block;
}
#click-category-22 .categories li:nth-child(1) {
    display: block;
}

#click-category-2 .categories li:nth-child(4) {
    display: block;
}

#click-category-2 .categories li:nth-child(5) {
    display: block;
}




ul.list-unstyled.categories.no-scrollbar.mb-0.text-left li.category-nav-element.border.border-top-0:nth-child(1) {
    display: block;
}
@media screen and (min-width:1600px) and (max-width:3000px){
    
/*
    li#category-menu-bar {
    width: 169px;
    margin-right: -62px;
}
*/
    
    .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 90%;
}
}
    .cart_000114414  a.btn.btn-secondary-base.btn-sm.btn-block.rounded-4.text-white {
    color: #fff!important;
}
    
   .cart_000114414 li.list-group-item.border-0.hov-scale-img {
    width: 100%;
}
ul.list-unstyled.categories.no-scrollbar.mb-0.text-left li.category-nav-element.border.border-top-0:nth-child(2) {
    display: block;
}

.typed-search-box.stop-propagation.document-click-d-none.bg-white.rounded.shadow-lg.position-absolute.left-0.top-100.w-100 {
    width: 99%!important;
    margin-left: 0px;
}

span#nav-user-info {
    padding-bottom: 33px;
    margin-bottom: -21px;
}

.logo__0099 {
    text-align: left;
}
span.user_profil.d__0000114 {
    position: relative;
    top: 1px;
}
.hover-user-top-menu.position-absolute.top-100.left-0.right-0.z-3 {
    margin-right: -129px!important;
}

.header-bar .col-md-6.d-flex.justify-content-end.left {
    justify-content: space-between!important;
}
ul.menu-list.right__space {
    gap: 22px;
}

span.profi__00 {
    position: relative;
    top: 1px;
    left: 3px;
}
a.d00110d1 {
    display: inline;
}

li.category-nav-element.border.border-top-0 span.cat-name.has-transition {
    font-size: 12px;
    color: #1d535c;
}
a.explore-btn {
    font-family: 'SilkaMono';
}
div#click-category-menu {
    top: 57px!important;
}

.hov-animate-outline:hover::before {
    border-top-color: #1d535c!important;
    border-right-color: #1d535c!important;
    transition: width 0.3s ease-out,
        height 0.3s ease-out 0.3s;
}
p.side-textaaa {
    font-family: 'SilkaMono';
    letter-spacing: -1px!important;
}
.hov-animate-outline:hover::after {
    border-bottom-color:  #1d535c!important;
    border-left-color:  #1d535c!important;
    transition: height 0.3s ease-out,
        width 0.3s ease-out 0.3s;
}

.section_about-team.bghomepage {
    background: #fff;
}


.section_about-team.bghomepage .about-team_wrapper {
    display: inline-block!important;
    width: 100%;
}

.custom-card .img-wrap {
    height: 520px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.octagon-wrap.mx-auto.about-team_image-wrapper {
    max-width: 73%;
}
.section_about-team.bghomepage .about-team_team-component {
    display: inline-block;
}

.related-posts ul {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
}


.related-posts .mini-post {
    border-right: 1px solid #9ea3ae69;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 39px;
}

.related-posts .mini-post header {
    min-height: 104px;
}
.related-posts .mini-post .post-category {
    text-transform: uppercase;
    color: #9ea3ae;
    /* padding-left: 8px !important; */
    font-family: 'SilkaMono' !important;
    font-size: 14px;
}
.related-posts .mini-post-content h4 {
    color: #333;
    margin-top: 0;
    font-weight: 500;
    font-size: 19px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    letter-spacing: 0.4px;
    padding-top: 12px;
    text-transform: capitalize;
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 1px;
}
.related-posts .mini-post-thumb {
    height: clamp(160px,12vw,250px);
    width: 100%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.related-posts .mini-post {

    list-style: none;
}
.related-posts .mini-post:last-child {
    border-right: 0;
    padding-right: 0;
}

section.blog__latest_blog {
    padding-bottom: 96px;
    padding-top: 43px;
    background: #f1f4f7;
}
h3.main__heading {
    margin-top: 0px;
    text-transform: capitalize;
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 2px;
    text-align: left;
    padding-bottom: 47px;
    color: #204c52;
    font-weight: 600;
    font-size: 41px;
}
.mini-post-thumb img {
    width: 100%!important;
    object-fit: cover;
}
ul.flex-container {
    padding: 0px;
}

section.home-projects-slider {
    background: #fff;
}

.home-projects-slider .bottom-row {
    padding-bottom: 64px;
}
section.home-projects-slider .swiper {
    width: 100%;
    height: auto;
    position: relative;
}
.home-projects-slider .swiper-slide.project-card {
    padding-bottom: 54px;
}

.swiper-scrollbar-drag {
    background: #204c52;
}

section.home-projects-slider {
    padding-top: 21px;
}


.home-projects-slider p.side-textaaa {
    font-family: 'SilkaMono';
    letter-spacing: -1px!important;
   
}

/*
.home-projects-slider .bottom-row {
    position: relative;
    z-index: 9;
    background: #fff;
}
*/
.project-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    margin-top: 34px;
    border-radius: 18px;
}
.swiper-slide.project-card.swiper-slide-visible.swiper-slide-active img {
    height: 550px;
    margin-top: 0px;
}
.related-posts .mini-post-thumb {
    height: 259px;
    width: 100%!important;
    max-width: 100%;
}
.product__listing_009_00_0 a.text-dark.p-4.d-flex.align-items-center {
    display: inline-block!important;
    width: 100%;
}
.productimg.overflow-hidden.p-1.border.mr-3 {
    width: 100%;
    overflow: hidden;
    height: 291px;
    border: none!important;
    object-fit: cover!important;
}

span.exploer__099 {
    color: #1d535c;
    border: 2px solid #1d535c94;
    padding: 7px 15px;
    text-transform: uppercase;
    border-radius: 6px;
    margin-top: 22px!important;
    display: inline-block;
    font-size: 12px;
}
.product__listing_009_00_0 img.img-fit.h-100 {
    width: 100%;
    text-align: center;
    object-fit: contain;
}

section.product_0099s {
    background: #1d535c;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 30px;
}

section.mb-5.pb-3.categoric_0008888 {
    padding-top: 0px;
}
section.mb-5.pb-3.categoric_0008888 .container-fluid {
    padding: 0px;
}

.productimg.overflow-hidden.p-1.border.mr-3 {
    width: 100%;
    overflow: hidden;
    height: 291px;
    border: none!important;
    object-fit: cover!important;
    margin-bottom: 36px;
}

.s__list__09s h3 {
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 2px;
    padding-bottom: 0px;
    font-weight: 600;
    font-size: 35px;
    text-transform: uppercase;
    font-family: 'SilkaMono'!important;
}

.s__list__09s {
    width: 63%;
}

.s__list__09s p {
    font-size: 16px;
}

.categories__footer p {
    height: 80px;
}

.mb-4.bg-white.rounded-0.border.product__listing_009_00_0 {
    background: #f1f4f7!important;
}

.exploer__099 svg.view-svg {
    margin-top: -9px;
    position: relative;
    top: 4px;
    left: 3px;
    width: 17px;
}


.product__listing_009_00_0 a.text-dark.p-4.d-flex.align-items-center {
    display: inline-block!important;
    width: 100%;
    border-radius: 11px!important;
}

span.sv_00001144 path {
    /* color: red!important; */
    /* fill: red; */
    stroke: #204c52;
}

.sv_00001144 svg.view-svg {
    border: 1px solid #00000047;
    border-radius: 27px;
    width: 40px;
    height: 40px;
    padding: 7px;
}


.exploer__099:hover {
    background: #fff;
   
}
p.s_001100112 {
    font-size: 13px !important;
    font-weight: 600 !important;
    position: relative;
    top: 1px;
    margin-right: 0px !important;
    font-family: SilkaMono;
    color: #204c52;
    padding-top: 7px;
}
.post-category {
    border: 1px solid #00000030;
    width: auto;
    display: inline;
    padding: 2px 12px;
    border-radius: 29px;
    background: #e1f2f4;
    color: #000!important;
    font-size: 13px!important;
}

.mb-4.bg-white.rounded-0.border.product__listing_009_00_0.s01100101__0099 a.text-dark.p-4.d-flex.align-items-center {
    padding: 13px!important;
    width: 100%;
}

.mb-4.bg-white.rounded-0.border.product__listing_009_00_0.s01100101__0099 a.text-dark.p-4.d-flex.align-items-center  .overflow-hidden.p-1.border.mr-3 {
    margin: 0px!important;
}

span.s_0001s01s01 {
    position: relative;
    top: 11px;
}

.r_009_0998888 svg.view-svg {
    border: 1px solid #00000087;
    border-radius: 30px;
    float: right;
    margin-top: 11px;
    width: 34px;
    height: 34px;
    padding: 5px;
}

p.mr-2.sddd00144 {
    margin-bottom: 0px;
}
.wrapper.sec__tion_0001.footer_-099999 {
    margin-top: 33px;
}
.aiz-filter-sidebar.collapse-sidebar-wrap.sidebar-xl.sidebar-right.z-1035.sticky-top i.las.pt-3px.la-angle-right {
    position: relative;
    top: 6px!important;
}
div#addToCart-modal-body .modal-body.px-4.py-5.c-scrollbar-light {
    padding-top: 30px!important;
}

#addToCart-modal-body .col-sm-3.fs-14.fw-400.text-secondary {
    display: none;
}
div#general_cagegories_boxeeee {
    padding: 0px;
}
a {
    color: #1f2a50!important;
}
ul.s022s02s li a {
    color: #ffffff85 !important;
}


div#cart_summary a.btn.btn-primary.btn-block.fs-14.fw-700.rounded-0.px-4 {
    color: #fff!important;
}
div#addToCart a.btn.btn-primary.mb-3.mb-sm-0.btn-block.rounded-0 {
    color: #fff!important;
    border-radius: 6px!important;
}

div#addToCart button.btn.btn-secondary-base.mb-3.mb-sm-0.btn-block.rounded-0.text-white {
    border-radius: 6px!important;
}

div#addToCart .h-90px, .size-90px {
    height: 86px;
    width: auto;
    border: 1px solid #00000040;
    border-radius: 8px!important;
    line-height: 13px;
}

div#addToCart .text-center.text-success.mb-4  h3 {
    font-family: 'SilkaMono';
    letter-spacing: -1px!important;
    font-size: 18px!important;
    padding-top: 12px;
}

span.fs-16.fw-700.text-dark.ml-3.pb-3.d-block.border-left-0.border-top-0.border-right-0.border-bottom.border-dashed {
    text-decoration: none;
    color: rgb(29 83 92) !important;
    text-transform: uppercase;
    text-shadow: none !important;
    letter-spacing: 1px;
    font-family: SilkaMono;
}

div#cart_summary h3.fs-16.fw-700.mb-0 {
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #fff !important;
    text-transform: uppercase;
    text-shadow: none !important;
    letter-spacing: 1px;
    font-family: SilkaMono;
}

form#checkout-form span.ml-2.fs-19.fw-700 {
    font-size: 16px!important;
    font-weight: 600;
    text-decoration: none;
    color: rgb(29 83 92) !important;
    text-transform: uppercase;
    text-shadow: none !important;
    letter-spacing: 1px;
    font-family: SilkaMono;
}

div#cart_summary th {
    font-size: 14px!important;
    font-weight: 600;
    text-decoration: none;
   
    text-transform: capitalize;
    text-shadow: none !important;
    letter-spacing: 0px;
    font-family: SilkaMono;
}

.row.gutters-16.border-top.border-left.row-cols-xxl-2.row-cols-xl-2.row-cols-lg-2.row-cols-md-2.row-cols-2 .product_00999 img.w-100.has-transition {
    width: 56%!important;
    height: auto!important;
    object-fit: contain!important;
    margin-left: auto;
    margin-right: auto;
    margin-top: -38px;
    margin-bottom: -13px;
}

.row.gutters-16.border-top.border-left.row-cols-xxl-3.row-cols-xl-3.row-cols-lg-3.row-cols-md-3.row-cols-2 img.w-100.has-transition {
    width: 77%!important;
}

@media screen and (min-width:767px) and (max-width:3000px) {
    
    header.sticky-top.z-1020.middle-background-color-visibility.stikcy-header-visibility .position-relative.logo-bar-area.border-bottom.border-md-nonea.z-1025 {
    display: none;
}
}

.swiper-button-next:after, .swiper-button-prev:after {

    color: #1d535c;
}
section.home-projects-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    padding: 12px!important;
    background: #fff;
}

section.home-projects-slider .swiper-button-next {
    width: 40px;
    height: 40px;
    padding: 12px!important;
      background: #fff;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 19px!important;
    text-transform: none!important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}
.swiper-slide-active  img {
    width: 100%;
    height: 551px!important;
    object-fit: cover;
    display: block;
}

.swiper-slide-active {
    margin-top: -11px!important;
}
.home-projects-slider .swiper-slide.project-card {
    padding-bottom: 54px;
    margin-top: 31px;
}

.icon__00 {
    height: 108px;
}

.blog_heading_233 a {
    color: #333;
    margin-top: 0;
    font-weight: 500;
    font-size: 19px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    letter-spacing: 0.4px;
    padding-top: 0px;
    text-transform: capitalize;
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 1px;
}
.blog_heading_233 h2.fs-16.fw-700.mb-3.h-35px.text-truncate-2 {
    height: auto;
}

.date_ing__1233 {
    font-size: 13px !important;
    font-weight: 600 !important;
    position: relative;
    top: 1px;
    margin-right: 0px !important;
    font-family: SilkaMono;
    color: #204c52;
    padding-top: 7px;
}

.blog__123301110 .card.mb-4.overflow-hidden {
    padding: 0px!important;
    border: none!important;
}
.blog__123301110 img.img-fit.h-100.has-transition.lazyloaded {
    border-radius: 12px!important;
}
.blog__123301110 .h-180px, .size-180px {
    height: 233px;
}



.shwing_sidebar_122 a.text-reset.hov-text-primary {
    padding-top: 0px;
    text-transform: capitalize;
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: normal;
}

.shwing_sidebar_122 .d-flex img.img-fit.h-100 {
    border-radius: 10px;
    height: 73px!important;
}

.blog__123301110 .card.mb-4.overflow-hidden {
    border-right: 1px solid #00000026 !important;
    padding-right: 30px!important;
}



.blog_heading_233 small.fs-12.fw-400.text-blue {
    border: 1px solid #00000030;
    width: auto;
    display: inline;
    padding: 2px 12px;
    border-radius: 29px;
    background: #e1f2f4;
    color: #000!important;
    font-size: 13px!important;
    margin-top: 2px!important;
    display: inline-block;
    margin-bottom: 11px;
}

.shwing_sidebar_122 small.fs-12.fw-400.opacity-60 {
    font-size: 13px !important;
    font-weight: 600 !important;
    position: relative;
    top: 1px;
    margin-right: 0px !important;
    font-family: SilkaMono;
    color: #204c52;
    padding-top: 7px;
}

.shwing_sidebar_122 .bg-white {
    background: #f1f4f7!important;
     border-radius: 10px;
}

.shwing_sidebar_122 .p-3.border {
    background: #f1f4f7!important;
    border-radius: 10px;
}
.blog__123301110 > .card.mb-4.overflow-hidden:nth-child(3n) {
    border-right: none!important;
}

.blog__123301110 .card.mb-4.overflow-hidden {
    border-right: 1px solid #00000026 !important;
    padding-right: 30px!important;
    background: transparent;
}
section.blog__latest_blog {
    padding-bottom: 13px;
}
.submenu_0988 {
    position: absolute;
    background: #fff;
    top: 57px;
    padding: 16px 15px;
 
}

#category-menu-bar .submenu_0988 {
       display: none;
    
}

#category-menu-bar:hover .submenu_0988 {
       display: block;
    
}
li#category-menu-bar {
    padding-bottom: 44px;
    margin-bottom: -39px;
}
.submenu_0988 li {
    list-style: none;
}

.submenu_0988 ul {
    list-style: none;
    padding: 0px;
}
.nopadding_98877 .aiz-filter-sidebar.collapse-sidebar-wrap.sidebar-xl {
    width: 84%;
    padding-left: 24px;
}
.submenu_0988 li {
    list-style: none;
    line-height: 29px;
}

.submenu_0988 {
    position: absolute;
    background: #fff;
    top: 57px;
    padding: 16px 15px;
    box-shadow: 2px 4px 5px 2px #0000002e;
    border-radius: 0px;
    margin-left: -100px;
}



.submenu_0988.wodth_2334 {
    padding: 0px;
}

.submenu_0988.wodth_2334 li {
    border-bottom: 1px solid #0000002b;
    padding: 8px 12px;
    margin-bottom: 0px;
}

.submenu_0988.wodth_2334 li:hover {
   background: #fff5d9;
}

.submenu_0988 li {
    list-style: none;
    line-height: 29px;
    text-align: left;
}
.flex__div_00 {
    width: 100%!important;
}

.home-v1-hero-alt_heading-wrap {
    position: relative;
    z-index: 99;
    top: -229px;
    color: #1d535c;
    font-family: SilkaMono;
    text-transform: uppercase;
    font-size: 14px!important;
}
.hover-user-top-menu.position-absolute.top-100.left-0.right-0.z-3.showing_001144144 {
    margin-left: -34px!important;
    margin-top: -67px;
    right: 76px!important;
    border-radius: 14px!important;
}

.showing_001144144  a {
    font-size: 11px!important;
    letter-spacing: 1px!important;
}
.container-large {
   
    background: transparent!important;
}
.showing_001144144  span.user-top-menu-name {
    padding-left: 0px!important;
    margin-left: 8px!important;
    padding-top: 1px;
}

#category-menu-bar .submenus__01101 {
    /* display: none; */
    position: absolute;
    margin-left: -34px;
    top: 55px;
    display: none;
}
#category-menu-bar:hover .submenus__01101 {
    /* display: none; */
   display: block;
}
section.serviceshero {
    background: url("../img/servicesbanner.jpg");
    background-attachment: fixed;
    background-size: cover;
    border-radius: 21px;
    background-position: center;
}
section.py-lg-3.text-light.footer-widget .list-unstyled li.mb-2 a {
    padding-left: 0px;
}

.showing__left__009 {
    background: #fff;
    color: #000;
}

.showing__left__009 p {
    color: #000;
}

.showing__left__009 h3 {
    color: #000!important;
}

.all___con_009900014 h3 {
    color: #fff!important;
    padding-bottom: 23px;
    letter-spacing: 1px;
    font-size: 37px;
}
.all___con_009900014 p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 23px;
}
.showing__left__009 {
    background: #fff;
    color: #000;
    padding: 31px;
    margin: 66px;
    border-radius: 14px;
    box-shadow: 0px 0px 3px 2px #00000033;
    background: rgb(0 0 0 / 47%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    color: #fff!important;
}
.services_000110list {
    background: #d9eeec;
    padding: 27px;
    border-radius: 20px;
}
section.serviceshero {
    margin: 20px;
}

.showing__left__009 h3 {
    color: #000!important;
    font-family: Sohne, Arial, sans-serif !important;
    font-weight: 900!important;
    font-size: 30px;
    line-height: 38px;
}

.showing__left__009 p {
    font-size: 18px;
    line-height: 29px;
    color: #fff!important;
}

section.main__searices {
    padding: 37px 0px;
}


h3.you__00999 {
    font-size: 48px;
    padding-bottom: 39px;
    width: 67%;
    line-height: 48px;
    font-weight: 900!important;
}

.content__0099s {
    margin-top: 40px;
}

.content__0099s p {
    font-size: 15px;
    margin-bottom: 24px;
}

.product_img_00995 img {
    height: 354px;
    object-fit: cover;
    border-radius: 17px;
}

.services_000110list h3 {
    position: absolute;
    bottom: 42px;
    width: 74%;
    font-size: 19px;
    margin: 10px;
    padding: 16px 16px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    color: #111;
    z-index: 9;
}

.product_img_00995.about-team_image-wrapper {
    border-radius: 16px;
}

section.serviceshero {
    margin-top: 59px;
    margin-bottom: 25px;
}


h3.you__00999 {
    font-size: 48px;
    padding-bottom: 39px;
    width: 100%;
    line-height: 57px;
    font-weight: 900!important;
    font-family: ppneuemontreal-medium !important;
    color: #1d535c;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.content__0099s {
    margin-top: 0px;
    margin-bottom: 48px;
    padding: 0px;
}


section.serviceshero.bring__0022 {
    background: url("../img/bann1.jpg");
    background-attachment: fixed;
    background-size: cover;
    border-radius: 21px;
    background-position: center;
}


section.serviceshero.banner__hero112 {
    background: url("../img/bann3.jpg");
    background-attachment: fixed;
    background-size: cover;
    border-radius: 21px;
    background-position: center;
}

.backone0011 {
    background: #f7e8df;
    padding: 32px;
    border-radius: 18px;
}



.backone0022 {
    background: #d9eeec;
    padding: 32px;
    border-radius: 18px;
}


.backone0033 {
    background: #eee8e3;
    padding: 32px;
    border-radius: 18px;
}

.about-team_team-component.backone0011.sticky-top {
    top: 104px;
}


.about-team_team-component.backone0022.sticky-top {
    top: 117px;
    box-shadow: 0px 0px 16px -5px #000;
}

.about-team_image-wrapper.team-01 {
    border-radius: 23px;
    width: 100%;
}

.about-team_image-wrapper.team-01 img.about-team_image.team-01 {
    width: 100%;
    border-radius: 33px;
}


.about-team_image-wrapper.team-01 {
    border-radius: 23px;
    width: 100%!important;
    height: 531px!important;
}



.about-team_team-component.backone0033.sticky-top {
    top: 120px;
    box-shadow: 0px 0px 16px -5px #000;
}
.about-team_image-wrapper.team-01 img.about-team_image.team-01 {
    width: 100%!important;
}


#click-category-22 .text-left.not__0009999 {
    display: none;
}


#click-category-2 .text-left.second__menu_0099999s {
    display: none;
}

.related__product__009 .bg-white.border.mt-4 {
    border: none!important;
    margin: 0px!important;
}

.related__product__009 .container {
    padding: 0px;
}

.related__product__009 .product_00999 img.w-100.has-transition {
    width: 82%!important;
    margin-top: -30px;
}

.related__product__009 a.btn.btn-dark.d-block.text-white.fw-700.fs-14.py-3 {
    padding: 7px 0px!important;
    width: 100%;
    height: auto;
}

.related__product__009 button.btn.btn-secondary.d-block.fw-700.fs-14.py-3 {
    width: 100%;
    padding: 7px 0px!important;
}


.related__product__009 span.bg-success.text-white.text-xs.fw-700.px-4.py-2 {
    border: 1px solid #0000005e;
    border-radius: 0px !important;
    color: #000 !important;
    padding: 4px 12px !important;
    font-size: 11px;
    font-family: SilkaMono;
    background: transparent!important;
}


.related__product__009 span.bg-danger.text-white.text-xs.fw-700.px-4.py-2 {
   
    background: transparent!important;
    border: 1px solid red;
    color: red !important;
    border-radius: 0px !important;
    padding: 3px 10px !important;
    font-size: 10px;
}
.bg-white.overflow-hidden.product_00999.my-2 {
    opacity: 1!important;
}

.related__product__009 .product_00999 img.w-100.has-transition {
    width: 82%!important;
    margin-top: -30px;
    filter: grayscale(0%)!important;
}

.related__product__009 h3#headingg {
    margin-bottom: 56px!important;
}

section.related__product__009 {
    padding-bottom: 38px;
}

.out__ofstokkkk {
    border: 1px solid red;
    color: red!important;
    border-radius: 0px!important;
    padding: 3px 10px!important;
    font-size: 10px;
}


h2.home-v1-hero-alt_heading.home-v1-hero-alt_heading01 {
    margin-top: 52px!important;
    
}  

@media screen and (min-width:1200px) and (max-width:1600px){
    
    
    
.row.gutters-16.border-top.border-left.row-cols-xxl-3.row-cols-xl-3.row-cols-lg-3.row-cols-md-3.row-cols-2 img.w-100.has-transition {
    width: 76%!important;
    margin-top: -9px!important;
}
    
    .related__product__009 .product_00999 img.w-100.has-transition {
    width: 77%!important;
    margin-top: -46px;
    filter: grayscale(0%)!important;
}
    
    
}
@media screen and (min-width:1601px) and (max-width:3000px){
    
    
    .product_00999 img.w-100.has-transition {
    width: 80%!important;
    height: auto!important;
    object-fit: fill!important;
    margin-left: auto;
    margin-right: auto;
    margin-top: -14px!important;
    margin-bottom: auto;
}
    
    .row.gutters-16.border-top.border-left.row-cols-xxl-3.row-cols-xl-3.row-cols-lg-3.row-cols-md-3.row-cols-2 img.w-100.has-transition {
    width: 66%!important;
    margin-top: -36px!important;
}
    
 .row.gutters-16.border-top.border-left.row-cols-xxl-2.row-cols-xl-2.row-cols-lg-2.row-cols-md-2.row-cols-2 .product_00999 img.w-100.has-transition {
    width: 44%!important;
    height: auto!important;
    object-fit: contain!important;
    margin-left: auto;
    margin-right: auto;
    margin-top: -60px!important;
    margin-bottom: -13px;
}
}

.intro-content {
    padding-top: 92px;
}
.card-footer-box.d-flex.justify-content-between.align-items-center span {
    font-family: SilkaMono;
    text-transform: capitalize;
    letter-spacing: -1px;
}
.right__align_009 img {
    width: 100px;
    height: auto;
    position: relative;
    top: 8px;
    margin-top: -16px;
    margin-bottom: -1px;
}
.center_heading_009 h4 {
    text-align: center;
    color: #171717;
    text-transform: uppercase;
    font-family: SilkaMono;
}
.icon__00001144 svg {
    width: 15px;
}

.s__000001114411144 {
    position: relative;
    z-index: 999;
    background: red;
    margin-top: 34px;
}
.s__000001114411144 .fade:not(.show) {
    opacity: 1;
}



.sbx-slider-wrap {
    width: 100%;
    background: transparent;
}

.sbx-hero-content {
    position: relative;
    padding: 40px 0;
}

.sbx-title-box {
    text-align: center;
    margin-bottom: 20px;
}

.sbx-title {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

.sbx-spin-area {
    height: 540px;
    overflow: hidden;
    position: relative;
}

.sbx-drag-zone {
    width: 100%;
    height: 100%;
    perspective: 1300px;
    position: relative;
}

#sbx-spin-track {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
}

.sbx-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
}

.sbx-card img {
    width: 300px;
    height: 440px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.sbx-card img:hover {
    transform: scale(1.1);
}

.sbx-caption {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    color: #fff;
}

.sbx-ground-plane {
    width: 900px;
    height: 900px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotateX(90deg);
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
}




/* =========================================================
   STONE BOUTIQUE – DUPLICATE SECTION (FULL CSS)
   SAME ANIMATION • NEW NAMES • NO CONFLICT
========================================================= */

/* ---------- STICKY WRAPPER ---------- */
.sbx-home-slider {
  position: relative;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 9;
  background: #fff;
  overflow: hidden;
}

/* ---------- CONTENT ALIGNMENT ---------- */
.sbx-alt-content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ---------- HEADING ---------- */
.sbx-heading-wrap {
  position: relative;
  z-index: 5;
  margin-bottom: 40px;
}

.sbx-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
}

/* ---------- MAIN AREA ---------- */
.sbx-main {
  width: 100%;
  height: 100%;
}

.sbx-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- 3D DRAG + SPIN ---------- */
#sbx-drag-container,
#sbx-spin-container {
  position: relative;
  display: flex;
  transform-style: preserve-3d;
  transform: rotateX(-10deg);
}

/* ---------- SPIN SIZE ---------- */
#sbx-spin-container {
  width: 250px;
  height: 320px;
}

/* ---------- ITEM ---------- */
.sbx-carousel-item {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  text-align: center;
}

/* ---------- IMAGE ---------- */
.sbx-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 0 29px #fff;
    transition: transform 0.5s ease;
    -webkit-box-reflect: below 10px
    linear-gradient(transparent, transparent, rgba(0,0,0,0.35));
    background: #fff;
    border-radius: 17px;
    border: 1px solid #00000047;
}
.sbx-carousel-item:hover img {
    transform: scale(1.1);
}
.sbx-carousel-item img:hover {
  transform: scale(1.08);
}

/* ---------- CAPTION ---------- */
.sbx-caption {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 18px;
  text-transform: uppercase;
  color: #000;
  font-family: SilkaMono, sans-serif;
  text-align: center;
}

/* ---------- GROUND (DEPTH FEEL) ---------- */
#sbx-ground {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1500px;
  height: 1500px;
  transform: translate(-50%, -50%) rotateX(90deg);
  background: radial-gradient(circle, rgba(0,0,0,0.15), transparent 70%);
}

/* ---------- ROTATION KEYFRAMES ---------- */
@keyframes sbx-spin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

@keyframes sbx-spinRevert {
  from {
    transform: rotateY(360deg);
  }
  to {
    transform: rotateY(0deg);
  }
}

/* ---------- MOBILE SAFETY ---------- */
@media (max-width: 768px) {
  .sbx-home-slider {
    height: 100vh;
  }

  #sbx-spin-container {
    width: 200px;
    height: 260px;
  }

  .sbx-caption {
    font-size: 11px;
  }
}


.sbx-home-slider.sticky-top4444 .sbx-header-line {
    top: -80px;
    position: relative;
    text-align: center;
}

p.s00131313464646.h__0001141 {
    color: #1d535c;
    font-family: SilkaMono;
    text-transform: uppercase;
    font-size: 14px !important;
}

.sbx-home-slider.sticky-top4444 {
    background: #f7f4ee;
    margin-top: 108px;
    padding-bottom: 149px;
    margin-bottom: -86px;
}
.sbx-home-slider.sticky-top4444 .sbx-title {
    color: #1d535c;
    font-family: 'SilkaMono';
    letter-spacing: 0px;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 900 !important;
    padding-bottom: 5px;
    position: relative;
    top: 31px;
}
.sbx-carousel-item {
    background: #1d535c;
    border-radius: 16px;
    border: 1px solid #000;
    box-shadow: none !important;
}


.sbx-carousel-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #000;
    box-shadow: none !important;
}
p.s00131313464646.h__0001141 {
    position: relative;
    top: 36px;
}


.sbx-text-wrap {
    position: relative;
    top: 15px;
}

.sbx-home-slider.sticky-top4444 {
    padding-top: 20px;
}
@media screen and (min-width:1700px) and (max-width:4000px) {
    
    section#matterSection {
    margin-top: 84px;
}
    
    #section_featured .product_00999 .d-flex.mt-4 {
    background: #dedede;
    position: relative;
    padding-top: 13px;
    width: 110%;
    margin-left: -15px;
    padding: 14px 20px !important;
    top: 28px !important;
    padding-right: 23px !important;
}
}


/* BROCHURE POPUP */
.brochure-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.brochure-overlay.active {
  display: flex;
}

.brochure-box {
    background: #fff;
    width: 500px;
    max-width: 92%;
    padding: 42px;
    position: relative;
    border-radius: 8px;
    animation: brochureZoom .3s ease;
}

@keyframes brochureZoom {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.brochure-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.brochure-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}
.brochure-box button {
    width: 100%;
    padding: 12px;
    background: #1d535c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 66px;
    margin-top: 16px;
    letter-spacing: 1px;
}

.close-brochure {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 43px;
    cursor: pointer;
}
.brochure-box h3 {
    margin-bottom: 20px;
    font-size: 30px;
    font-family: ppneuemontreal-medium!important;
    letter-spacing: 1px;
    color: #1d535c;
    padding-bottom: 21px;
}


p.text-muted.fs-16.mb-5.d001101d {
    display: block;
}

.tags__00999s__0009 {
    background: transparent!important;
    color: #605d5d !important;
    padding: 0px!important;
    font-weight: 800;
    margin-right: 13px;
    margin-top: -9px;
    font-family: 'SilkaMono';
}

.c01140__priduct a.text-reset.hov-text-primary {
    margin-top: -42px!important;
    margin-bottom: 2px;
    font-weight: 900;
}

.bg-white.overflow-hidden.product_00999.INTERIOR a.d-block.overflow-hidden img.w-100 {
    width: 93%!important;
    margin-top: -109px;
}

.bg-white.overflow-hidden.product_00999.INTERIOR .p-5.pt-4.text-center {
    padding: 3px 12px!important;
    padding-bottom: 27px!important;
    margin-top: 115px;
    position: relative;
    background: #eee;
}


#section_featured .product_00999 img.w-100.has-transition {
    width: 92%!important;
    height: auto!important;
    object-fit: fill!important;
    margin-left: auto;
    margin-right: auto;
    margin-top: -125px;
    margin-bottom: -13px;
}

#section_featured .product_00999 .d-flex.mt-4 {
    background: #f1f4f7;
    position: relative;
    padding-top: 13px;
    width: 110%;
    margin-left: -15px;
    padding: 14px 14px;
    top: 25px;
}


div#section_featured p.text-muted.fs-16.mb-5.d001101d {
    display: none;
}

/*
#section_newest .product_00999 img.w-100.has-transition {
    width: 92%!important;
    height: auto!important;
    object-fit: fill!important;
    margin-left: auto;
    margin-right: auto;
    margin-top: -125px;
    margin-bottom: -13px;
}
*/


#section_newest .product_00999 img.w-100.has-transition {
    width: 100%!important;
    height: auto!important;
    object-fit: fill!important;
    margin-left: auto;
    margin-right: auto;
    margin-top: 38px;
    margin-bottom: -13px;
}
#section_newest .product_00999 .d-flex.mt-4 {
    background: #fff;
    position: relative;
    padding-top: 13px;
    width: 110%;
    margin-left: -15px;
    padding: 14px 14px;
    top: 25px;
}



div#section_newest p.text-muted.fs-16.mb-5.d001101d {
    display: none;
}



#section_featured .c01140__priduct {
    padding: 0 13px;
}








    .form-control:focus {
    border-color: #1f2a50;
    box-shadow: none;
}
    
    
    .button-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
    
    
.button--secondary .btn-fill {
    background: #f3c47c!important;
    border-radius: 25px;
}
.button {
  position: relative;
  overflow: hidden;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
}

/* Secondary */
.button--secondary {
  background: #f5f5f5;
  color: #111;
}

/* Text */
.btn-text {
  position: relative;
  z-index: 2;
  transition: color 0.35s ease;
}

/* Fill layer (WIDTH animation) */
.btn-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #1e545d;
  transition: width 0.45s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}


/* Hover */
.button:hover .btn-fill  {
  width: 100%;
}

/* Text color on hover */
.button--secondary:hover .btn-text {
  color: #fff;
}
    
    
    
    .button-group {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Base Button */
.button {
  position: relative;
  overflow: hidden;
  padding: 16px 5px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
}

/* Secondary */
.button--secondary {
  background: #f5f5f5;
  color: #111;
}

/* Text Layer */
.btn-text {
  position: relative;
  z-index: 3;
  transition: color 0.35s ease;
}

/* Fill Animation Layer */
.btn-fill {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140%;
  background: #1e545d; /* hover color */
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}


/* Hover Effect */
.button:hover .btn-fill {
  transform: translateY(0%);
}

/* Text Color Change on Hover */
.button--secondary:hover .btn-text {
  color: #fff;
}

/* Loader (optional – matches your markup) */
.btn-loader {
  display: none;
  position: absolute;
  z-index: 4;
}

    span.login_0110011 {
    position: relative;
    color: #fff;
    z-index: 9;
    letter-spacing: 3px;
}
.button--fixed.whitecolor_00 {
    background: #fff;
    color: #000;
    border: 2px solid #1d535c;
    border-radius: 80px!important;
    letter-spacing: 0px!important;
   height: 60px;
}
.button--fixed.whitecolor_00 span.login_0110011 {
    color: #1d535c;
    letter-spacing: 0px;
}
.button--fixed.color__full {
    background: #1e545d;
    color: #000;
    border: 2px solid #1d535c;
    border-radius: 80px !important;
    letter-spacing: 0px !important;
    height: 60px;
}

.row.no-gutters.product__pricing__listt .col.mb-3 .button--secondary.button--fixed.whitecolor_00 {
    width: 194px;
    padding: 0px 0px;
    max-width: 186px;
    position: relative;
    left: 14px;
}


.row.no-gutters.align-items-center.aiz-plus-minus.mr-3.s__border__00099 {
    border-radius: 70px;
    height: 47px;
    width: 154px!important;
}

.row.no-gutters.align-items-center.aiz-plus-minus.mr-3.s__border__00099 button.btn.col-auto.btn-icon.btn-md.btn-light.rounded-0 {
    background: transparent;
    border: none;
}.s__000114414414 {
    margin-top: 17px;
}

.col-sm-12.price_0090011444 {
    margin-top: 26px;
}
.row.no-gutters.mb-3.sds00011 strong.fs-16.fw-700 {
    color: #222;
    font-size: 25px!important;
    font-weight: 900!important;
    margin-top: 11px;
}
.s__000011414414144 svg.mr-2.has-transition {
    padding-right: 0px!important;
    margin-right: 3px!important;
}

.wishlist0011 {
    margin-top: 32px;
    text-align: left;
    position: relative;
    left: 8px;
}
.row.no-gutters.product__pricing__listt {
    gap: 13px;
}

.product__details_009s {
    padding-left: 27px;
    padding-top: 43px;
    padding-right: 28px;
}
.product__d_0099 {
    margin-top: 24px;
    border-radius: 12px!important;
}
.s__000114414414 {
    margin-bottom: 36px;
}

.product__details_009s.sticky-top {
    padding-top: 14px;
}

.product__d_0099 a.mr-5.pb-2.fs-16.fw-700.text-reset.active.show {
    font-size: 31px!important;
    text-transform: capitalize;
    font-weight: 800!important;
    margin-bottom: 21px;
    color: #333636!important;
}

.button--fixed.whitecolor_00 span.login_0110011 {
    color: #1d535c;
    letter-spacing: 0px;
    font-family: 'SilkaMono';
    padding: 0px 0px!important;
}

.no__he0011__0 {
    padding: 0px 0px;
    width: 100%;
}

.no__he0011__0 {
    height: 43px!important;
}


a.btn.btn-primary.btn-block.fw-700.fs-14.rounded-0.submit-button.button.button--secondary.button--fixed.color__full.no__he0011__0 {
   background: #1e1e1e;
    color: #000;
    border: 2px solid #1e1e1e;
}

button.btn.btn-primary.btn-block.fw-700.fs-14.rounded-0.submit-button.button.button--secondary.button--fixed.whitecolor_00.no__he0011__0 {
   border: 2px solid #1e1e1e;
 
}

button.btn.btn-primary.btn-block.fw-700.fs-14.rounded-0.submit-button.button.button--secondary.button--fixed.whitecolor_00.no__he0011__0 span.login_0110011{
    
    color: #1e1e1e;
}

.no__he0011__0.width00111444144 {
    width: auto;
    height: 41px!important;
    padding: 0 17px;
}

span.login_0110011.btn.btn-primary.btn-block.fw-700.fs-14.rounded-0.submit-button.button.button--secondary.button--fixed.whitecolor_00.no__he0011__0.width00111444144 span.btn-fill {
    height: 44px!important;
    border-radius: 73px;
    width: 105%;
    margin-left: -4px;
    margin-top: -3px;
}
.filteredbutton .whitecolor_00.no__he0011__0 {
    margin-top: 78px;
}

span.s0014__74774477 {
    border: none!important;
    position: relative!important;
    z-index: 9!important;
}

.mt-3__0011144144 {
    margin-bottom: 34px;
}

.mt-3__0011144144 p {
    font-size: 14px;
    font-family: 'SilkaMono';
    letter-spacing: 0px;
    line-height: 21px;
}

.mt-3__0011144144 {
    margin-top: -20px;
}

h2.sub-title.sticky-top {
    top: 151px;
}

h2.sub-title.title_0021212 {
    font-size: 53px;
    font-weight: 800;
}

span.over__lapp {
    background: transparent;
    padding: 9px 0px;
    position: relative;
    z-index: 99;
    /* height: 13px; */
    display: inline-block;
    top: 0px;
    left: 0px;
    text-align: center;
    width: 100%;
}
@media screen and (min-width:768px) and (max-width:4000px) {
    
 .mobile__00999e {
    display: none;
}   
    
}
@media screen and (min-width:320px) and (max-width:767px) {
.no__he0011__0 {
    padding: 0px 3px;
    width: 100%;
    letter-spacing: 0px!important;
}
    
    button.btn.btn-primary.btn-block.fw-700.fs-14.rounded-0.submit-button.button.button--secondary.button--fixed.whitecolor_00.no__he0011__0 span.login_0110011 {
    color: #1e1e1e;
    font-size: 12px;
}
    
    .bg-white.overflow-hidden.product_00999.INTERIOR .product_00999 img.w-100.has-transition {
    width: 100%!important;
    height: auto!important;
    object-fit: fill!important;
    margin-left: auto;
    margin-right: auto;
    margin-top: -43px;
    margin-bottom: auto;
}
.tags__00999s__0009 {
    background: transparent!important;
    color: #605d5d !important;
    padding: 0px!important;
    font-weight: 800;
    margin-right: 13px;
    margin-top: -2px;
    font-family: 'SilkaMono';
    font-size: 10px;
    line-height: 18px;
}
    
    .bg-white.overflow-hidden.product_00999.INTERIOR .p-5.pt-4.text-center {
    padding: 1px 12px!important;
    padding-bottom: 27px!important;
    margin-top: 90px;
    position: relative;
    background: #eee;
}
    .no__he0011__0 {
    height: 38px!important;
}
    
.row.no-gutters.product__pricing__listt .button {
    position: relative;
    overflow: hidden;
    padding: 12px 0px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    height: 40px!important;
}
    
    .row.no-gutters.product__pricing__listt {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 18px;
}
    
    .product__d_0099 {
    display: none;
}
    
    .product__details_009s.sticky-top {
    padding: 4px;
}
    .s__000114414414 {
    margin-top: -12px;
    margin-bottom: -7px!important;
}
    
    .wishlist0011 {
    margin-top: 32px;
    text-align: left;
    position: relative;
    left: 153px;
    margin-top: -64px;
    width: 100px;
}
    
    .row.no-gutters.product__pricing__listt button.btn.btn-primary.btn-block.fw-700.fs-14.rounded-0.submit-button.button.button--secondary.button--fixed.whitecolor_00 {
    background: transparent;
    border: 2px solid #111111;
}
}
section.section_home-v1-hero .padding-global {
    padding-left: 18px;
}
.row.no-gutters.product__pricing__listt .col-sm-6.pr-1 {
    padding-left: 0px;
}
span.stg00114 {
    font-weight: 900!important;
    font-family: ppneuemontreal-medium !important;
}

.submenu_0988.wodth_2334 li a {
    font-size: 12px;
    color: #1d535c;
    font-weight: 500!important;
}
.blog__latest_blog .related-posts {
    padding-left: 30px;
}

button.btn.btn-primary.btn-block.fw-700.fs-14.rounded-0.submit-button.button.button--secondary.button--fixed.whitecolor_00.no__he0011__0 {
    border-radius: 0px!important;
    height: 36px!important;
}
a.btn.btn-primary.btn-block.fw-700.fs-14.rounded-0.submit-button.button.button--secondary.button--fixed.color__full.no__he0011__0 {
    border-radius: 0px!important;
    height: 36px!important;
}
  

button.btn.btn-primary.btn-block.fw-700.fs-14.rounded-0.submit-button.button.button--secondary.button--fixed.whitecolor_00.no__he0011__0 span.btn-fill {
    border-radius: 0px;
}


a.btn.btn-primary.btn-block.fw-700.fs-14.rounded-0.submit-button.button.button--secondary.button--fixed.color__full.no__he0011__0 span.btn-fill {
    border-radius: 0px!important;
    
}
  
.product_00999 .flex-fill {
    width: 50%;
}

.s00110111 svg.icon222 {
    width: 17px;
    position: relative;
    top: -2px;
}

.row.gutters-16.border-top.border-left.row-cols-xxl-2.row-cols-xl-2.row-cols-lg-2.row-cols-md-2.row-cols-2 .product_00999.INTERIOR img.w-100.has-transition {
    width: 100%!important;
    height: auto!important;
    object-fit: contain!important;
    margin-left: auto;
    margin-right: auto;
    margin-top: -199px;
    margin-bottom: -13px;
    padding: 14px;
    /* margin: 8px!important; */
}

.row.gutters-16.border-top.border-left.row-cols-xxl-2.row-cols-xl-2.row-cols-lg-2.row-cols-md-2.row-cols-2 .product_00999.INTERIOR  .position-relative {
    height: 600px;
}
span.bg-dark.text-white.text-xs.px-3.py-1.tags__00999s__0009 {
    margin-bottom: -2px;
    margin-top: -2px;
}
span.stg00114 {
    position: relative;
    top: -7px;
}

div#sbx-ground {
    z-index: -9;
    height: 0px;
}

.related__product__009 .absolute.top-0.left-0.mt-3.ml-3.z-10 span.bg-gray-200.text-gray-700 {
    padding-left: 9px!important;
    padding-bottom: 0px!important;
}
.product__details_009s   .button--fixed.whitecolor_00 {
    background: #fff;
    color: #000;
    border: 2px solid #1d535c;
    border-radius: 0px!important;
    letter-spacing: 0px!important;
    height: 60px;
}

.product__details_009s .button--secondary .btn-fill {
    background: #f3c47c!important;
    border-radius: 0px;
}
.product__details_009s .button--fixed.color__full {
    background: #1e545d;
    color: #000;
    border: 2px solid #1d535c;
    border-radius: 0px !important;
    letter-spacing: 0px !important;
    height: 60px;
}


section.mb-5.pb-3.categoric_0008888.Designer.Products .col-md-3.col-sm-6 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
    /* max-width: 25%; */
}

section.mb-5.pb-3.categoric_0008888.Designer.Products p.text-muted.small {
    display: none;
}

section.mb-5.pb-3.categoric_0008888.Designer.Products .categories__footer {
    text-align: center;
}
section.experience-section h2.section-title.mb-5 {
    padding-bottom: 30px;
}

.mb-4.bg-white.rounded-0.border.product__listing_009_00_0 .text-reset.fs-16.fs-md-20.fw-700.hov-text-primary {
    font-size: 27px!important;
    margin-bottom: -12px;
}

.s00323232323 span.profi__00 {
    color: #333!important;
    font-size: 11px!important;
    letter-spacing: 1px;
    padding-bottom: 14px!important;
}

span.s00323232323 {
    line-height: 35px;
    padding-bottom: 7px!important;
    display: inline-block;
}

@media screen and (min-width:320px) and (max-width:767px) {
    
    .aiz-top-menu-sidebar.collapse-sidebar-wrap.sidebar-xl ul.mb-0.pl-3.pb-3.h-100 {
    padding-top: 43px;
}
    .right__align_009 {
    display: flex;
    gap: 0px;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
}
    
    .right__align_009 {
    justify-content: left;
    margin-top: 36px;
}
    .right__align_009 img {
    width: 92px;
    height: auto;
    position: relative;
    top: 8px;
    margin-top: -16px;
    margin-bottom: -1px;
    margin-left: -7px;
}
    
    .home-v1-hero_left-content {
  
    padding-bottom: 0px;
    
}
    .sbx-home-slider.sticky-top4444 {
    background: #f7f4ee;
    margin-top: 0px;
    padding-bottom: 149px;
    margin-bottom: 170px;
}
    
    .sbx-home-slider.sticky-top4444 {
    display: none;
}
    
    p.ston__000011__000 {
    font-family: 'SilkaMono';
    letter-spacing: -0.5px;
    text-align: center;
    padding-bottom: 23px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 15px;
    font-size: 11px;
    padding-top: 7px;
}
    
    .feat__section  .custom-card {
    margin-bottom: 25px;
}
    
    span.s0110010101101 {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 22px;
}
    #section_featured .product_00999 img.w-100.has-transition {
    width: 92%!important;
    height: auto!important;
    object-fit: fill!important;
    margin-left: auto;
    margin-right: auto;
    margin-top: -31px;
    margin-bottom: -31px;
}
    #section_featured .product_00999 .d-flex.mt-4 {
    background: #f1f4f7;
    position: relative;
    padding-top: 13px;
    width: 122%;
    margin-left: -15px;
    padding: 14px 14px;
    top: 2px;
}
    #section_newest h3.fs-16.fs-md-20.fw-700.mb-2.mb-sm-0 span {
    font-size: 23px;
    font-weight: 500;
}
    
#section_newest .c01140__priduct a.text-reset.hov-text-primary {
    margin-top: 19px!important;
    margin-bottom: 2px;
    font-weight: 900;
}
    
    #section_newest .product_00999 img.w-100.has-transition {
    width: 100%!important;
    height: auto!important;
    object-fit: fill!important;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0PX;
    margin-bottom: 1PX;
}
    
    #section_newest .c01140__priduct a.text-reset.hov-text-primary {
    margin-top: 19px!important;
    margin-bottom: 2px;
    font-weight: 900;
    HEIGHT: 42PX;
}
    
    #section_newest .product_00999 .d-flex.mt-4 {
    background: #fff;
    position: relative;
    padding-top: 13px;
    width: 110%;
    margin-left: -15px;
    padding: 14px 14px;
    top: 1px;
}
    
    section#matterSectionvv {
    padding-top: 34px!important;
}
    .blog__latest_blog .related-posts {
    padding-left: 0px!important;
}
    .explore-btn {
 
    width: 37%!important;
    width: 69%!important;
    border-radius: 10px;
}
    .mb-4.bg-white.rounded-0.border.product__listing_009_00_0 .text-reset.fs-16.fs-md-20.fw-700.hov-text-primary {
    font-size: 21px!important;
    margin-bottom: -12px;
}
    
    section.mb-5.pb-3.categoric_0008888.Exterior .mb-4.bg-white.rounded-0.border.product__listing_009_00_0 {
    background: transparent!important;
    border: none!important;
    margin-bottom: 0px!important;
}
    
    button.btn.btn-primary.btn-block.fw-700.fs-14.rounded-0.submit-button.button.button--secondary.button--fixed.whitecolor_00.no__he0011__0 {
    border-radius: 0px!important;
    height: 32px!important;
}
    
    .product_00999 button.btn.btn-white.border {
    padding: 6px 0px!important;
    width: 100%;
    font-size: 12px!important;
    font-family: SilkaMono;
    border-radius: 0px!important;
    height: 32px;
}
section.py-lg-3.text-light.footer-widget span.theming-theme-light {
    color: #868683 !important;
    font-size: 12px;
    line-height: 17px!important;
    letter-spacing: 0.3px;
}
}


@media (max-width: 991.98px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.productimg.overflow-hidden.p-1.border.mr-3 {
    width: 100%;
    overflow: hidden;
    height: 358px;
    border: none!important;
    object-fit: cover!important;
    margin-bottom: 11px;
    background: #f3f3f3;
    padding: 0px!important;
    padding: 20px!important;
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
}

.product__listing_009_00_0 img.img-fit.h-100 {
    width: 100%;
    text-align: center;
    object-fit: cover!important;
}


section.mb-5.pb-3.categoric_0008888.Exterior .product__listing_009_00_0 img.img-fit.h-100 {
    width: 100%;
    text-align: center;
    object-fit: contain!important;
}
.shop__all span.arrow-icon.icon_00001qa {
    margin-left: 16px;
}

.shop__all a {
    letter-spacing: 2px;
}
#section_newest span.s__009990099s__14{
font-size: 13px!important;
    line-height: 39px!important;
}
#section_newest span.s0110010101101 {
    width: 97%;
}


#matterSection h2.sub-title {
    width: 100%;
    max-width: 96%;
    font-size: 20px;
    line-height: 26px;
}
.product__list_00999.categoryBox.product__categorees_00011441 {
    padding: 22px;
    border: none;
    margin: 8px;
    height: 400px;
    background: #f1f4f7!important;
}

p.ston__000011__000.h__po {
    width: 100%;
    margin-bottom: -38px;
    padding-top: 12px;
}

.row.g-4.padd__top_0011414 {
    padding-top: 33px;
}

.center_heading_009.planning__heading__0099 {
    padding-top: 0px;
    margin-top: -32px;
}

.s__ne__111414 {
    /* background: #fff; */
    color: #255962;
    margin-top: 38px;
    text-align: center;
    padding: 3px 0px;
    text-transform: uppercase;
    /* border: 1px solid #00000024; */
}



.s__ne__111414 h3 {
    font-weight: 800!important;
    font-size: 26px;
    font-family: ppneuemontreal-medium !important;
    letter-spacing: 1px;
    text-transform: capitalize;
    /* font-style: italic; */
}

.s__ne__111414 {
    background: transparent;
    color: #255962;
    margin-top: 38px;
    text-align: center;
    padding: 22px 0px;
    text-transform: uppercase;
    border: none;
}
div#search_product_count {
    margin-top: -47px;
    margin-left: 212px;
    position: relative;
    top: -17px;
    font-size: 19px!important;
}
.product__list_00999.categoryBox.product__categorees_00011441 img.w-150px.h-auto {
    object-fit: contain!important;
    height: 271px!important;
    position: relative;
    top: 23px;
}

.pr__duct_00d0 {
    padding: 24px 0px;
    border-bottom: 1px solid #0000001c;
    margin-left: 2%;
}

h2.sub-title.title_0021212 {
    font-size: 53px;
    font-weight: 800;
    line-height: 56px;
    padding-top: 15px;
}

.pr__duct_00d0 h3 {
    font-size: 27px;
    color: #0a4b50;
}
.pr__duct_00d0 ul {
    margin-top: 20px;
}

.pr__duct_00d0 li h3 {
    font-size: 17px;
    color: #000000;
    font-family: 'SilkaMono';
    text-transform: uppercase;
    font-weight: 600;
}


.pr__duct_00d0 h3 {
    font-size: 23px;
    color: #0a4b50;
    padding-bottom: 13px;
}



.arlades-process {
  padding: 80px 20px;
  background: #f7f6f4;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.process-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.5px;
  color: #1c1c1c;
}

.process-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.process-number {
  font-size: 42px;
  font-weight: 600;
  color: #b8a98a;
  line-height: 1;
  min-width: 60px;
}

.process-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #1f1f1f;
}

.process-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 480px;
}

/* Responsive */
@media (max-width: 768px) {
  .process-wrapper {
    grid-template-columns: 1fr;
  }

  .process-title {
    font-size: 28px;
  }

  .process-number {
    font-size: 36px;
  }
}







.who-we-work-with {
  padding: 80px 0;
  background: #fafafa;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.section-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 16px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.work-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.work-card i {
  font-size: 42px;
  color: #b08d57; /* luxury gold tone */
  margin-bottom: 18px;
}

.work-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}




.cta-begin {
    padding: 90px 0;
    background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
    color: #fff;
    background: url(../img/servicesbanner.jpg);
    background-attachment: fixed;
}
.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(34px);
    border: 1px solid #00000021;
}

.cta-box h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.cta-box p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto 40px;
    color: #fff;
    line-height: 26px;
}
.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/*
.btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
*/

.cta-begin .btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #000!important;
    letter-spacing: 1px;
}

.cta-begin .btn-primary {
    background: #fff;
    color: #000!important;
    border: none;
}


.arlades-process {
    padding: 80px 20px;
    background: #fff;
    font-family: "Inter", sans-serif;
}
.btn-primary {
  background: #d6b77a;
  color: #111;
}

.btn-primary:hover {
  background: #c2a464;
}

.btn-outline {
  border: 1px solid #d6b77a;
  color: #d6b77a;
}

.btn-outline:hover {
  background: #d6b77a;
  color: #111;
}

section.serviceshero.banner__hero112.d__new__0000w {
    height: 500px;
    padding: 0px;
    border-radius: 0px;   
}
section.main__searices .cta-buttons {
    justify-content: flex-start;
    margin-top: 45px;
}

section.serviceshero.banner__hero112.d__new__0000w {
    margin: 0px;
}
.icon__00 img {
    width: 30%;
    margin-bottom: 22px;
}

span.over__lapp {
    display: none;
}


.bg-white.overflow-hidden.product_00999.EXTERIOR .absolute.top-0.left-0.mt-3.ml-3.z-10 {
    padding-left: 14px;
}
div#search_product_count {
    margin-top: -55px!important;
    margin-left: 214px!important;
    position: relative;
    top: -10px!important;
    font-size: 19px!important;
}

p.s00131313464646.h__0001141 {
    width: 73%;
    margin-left: auto;
    margin-right: auto;
}

span.over__lapp {
    display: none!important;
}

h5#exclusiveModalLabel {
    text-align: center;
    width: 100%;
    font-family: 'SilkaMono';
}

.all__heading__0099 h2 {
    font-weight: 900 !important;
    font-family: ppneuemontreal-medium !important;
    color: #1d535c!important;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 34px !important;
}

.all__sub__heading01 p {
    color: #000!important;
    opacity: 1!important;
    font-family: Sohne, Arial, sans-serif;
    letter-spacing: 0px!important;
    font-size: 15px!important;
}

.text-style-muted {
    opacity: 1!important;
}
.section_individual-about {
    background: #f7f4ee!important;
}

.individual-about_left-wrapper {
    width: 100%;
}
span.s002124545 {
    float: left;
    width: 78%;
    margin-bottom: 17px;
}
span.s00__0099ii {
    font-size: 129px;
    height: 41px;
    display: inline-block;
    float: left;
    margin-right: 28px;
    position: relative;
    top: -37px;
    color: #22222236;
}
.no__00114114414414 .all__sub__heading01 {
    padding-top: 49px;
}

.section_individual-about.about__0000114411444 {
    padding-bottom: 88px;
}

.individual-about_right-wrapper {
    grid-row-gap: 5.875rem;
    flex-flow: column;
    padding-top: 1.5rem;
    display: flex;
    width: 100%;
}

section.serviceshero.top__00011001__0099 {
    margin-top: 24px;
}

.box__inner p {
    font-size: 13px;
    color: #000!important;
    -webkit-text-fill-color: #000;
    letter-spacing: 1px;
    padding-top: 11px;
}

.box__inner {
    padding: 37px 21px;
}
/*
span.stg00114 {
  text-transform: capitalize;
  font-size: 36px;
  font-style: italic;
  background: #dce2e3;
  padding: 0 20px;
  border-radius: 45px;
  padding-bottom: 3px;
  position: relative;
  z-index: 99;
  top: 5px;
  display: inline-block;

  
  transform: rotate(356deg);

 
  animation: floatColorLoop 3s ease-in-out infinite;

  will-change: transform, color;
}


@keyframes floatColorLoop {
  0% {
    transform: rotate(356deg) translateY(0);
  
  }
  50% {
    transform: rotate(356deg) translateY(-12px);
  
  }
  100% {
    transform: rotate(356deg) translateY(0);
 
  }
}

h1.hero_heading.hh01 {
    padding-bottom: 7px;
}
*/
.stg00114 img {
    width: 113px;
}

/*
section.mb-4.pt-3.product__00011011_details {
    background: #fcf7ee;
}

.product__00011011_details .bg-white.py-3 {
    background: transparent!important;
}*/
