@font-face {
    font-family: 'Mardoto-Regular';
    font-weight: 400;
    src: url(../fonts/Mardoto-Regular.ttf);
}

@font-face {
    font-family: 'Mardoto-Medium';
    font-weight: 500;
    src: url(../fonts/Mardoto-Medium.ttf);
}

@font-face {
    font-family: 'Mardoto-Bold';
    font-weight: 700;
    src: url(../fonts/Mardoto-Bold.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --blue: #2E324E;
    --red: #9E3333;
    --lightBlue: #E6E7F8;
    --gray: #D3D3D3;
    --lightGray: #F3F3F3;
    --transparentGray: #FFFFFF05;
    --yellow: #FFB800;
}
/* Basic styles for the toggle icon */
.toggle-icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid black; /* Arrow color */
    margin-left: 10px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Rotate the arrow when the menu is expanded */
.collapse.show .toggle-icon {
    transform: rotate(180deg);
}

/* Make sure the collapsible sections are hidden by default */
.collapse {
    display: none;
}

/* Show the collapsible section when it has the .show class */
.show {
    display: block;
}

.material-btn-check + .material-btn-check-label, .brand-btn-check + .brand-btn-check-label,  .color-btn-check + .color-btn-check-label {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Mardoto-Regular';
    border-radius: 8px;
    border: 2px solid rgba(136, 136, 136, 0.20);
    background: var(--white);
    line-height: 16px;
    text-align: center;
    cursor: pointer;
}

.material-btn-check-label:hover, .brand-btn-check-label:hover {
    border: 2px solid var(--blue)!important;
}

.material-btn-check:checked + .material-btn-check-label, .brand-btn-check:checked + .brand-btn-check-label {
    border: 2px solid var(--blue) !important;
    background: var(--white);
}
header {
    z-index: 10;
    /*background-color: var(--white);*/
}

.accordion-button:not(.collapsed) {
    background-color: var(--white);
    box-shadow: none;
}

.accordion-item {
    border: none;
}

.accordion-button:focus {
    box-shadow: none;
}


.logo {
    width: 109px;
}

header > div {
    padding: 28px 0;
}

header .navbar-collapse {
    height: min-content;
}

header .navbar-nav {
    gap: 60px;
}


header .nav-link {
    font-family: 'Mardoto-Medium';
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--blue);
}

header .nav-link:focus, header .nav-link:hover {
    color: var(--blue) !important;
}

header .nav-item.active {
    border-bottom: 2px solid var(--red);
}

.white-header .nav-item.active {
    border-bottom: 2px solid var(--white);
}

.white-header .nav-link, .white-header .nav-link:hover {
    color: var(--white) !important;
}

.white-header .search-box {
    border-bottom: 1px solid var(--white);
}

.white-header svg path {
    fill: var(--white);
}

.search-box {
    border-bottom: 1px solid var(--blue);
}

.home-page-slider-section {
    max-width: 1440px;
    width: 100%;
    height: 749px;
    /*aspect-ratio: 1440 / 749;*/
    /*position: absolute;*/
    /*top: 0;*/
    box-shadow: inset 0 0 0 1000px #2E324EB2;
    margin: 0 auto;
}

.white-img {
    z-index: 1;
    max-width: 1442px;
}

.home-page-slider-section-content {
    top: 180px;
}

.home-page-slider-section-text {
    z-index: 2;
}

.home-page-slider-section-text h1 {
    font-family: 'Mardoto-Bold';
    font-size: 50px;
    font-weight: 700;
    line-height: 59px;
    color: var(--black);
    text-transform: uppercase;
}

.home-page-slider-section-text span {
    font-size: 28px;
    line-height: 32px;
    font-family: 'Mardoto-Bold';
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
}

/*.home-page-slider-section-text h1 span {*/
/*    font-size: 28px;*/
/*    line-height: 32px;*/
/*}*/

.home-page-slider-section-text p, .project-info-box li {
    font-family: 'Mardoto-Regular';
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--black);
}

.see-all-btn {
    background-color: var(--red);
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Mardoto-Medium';
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 8px;
}

.home-page-slider-box {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    border: 3px dashed #FFFFFF;
    border-radius: 50%;
}

.home-page-slider {
    position: absolute;
    top: 50%;
    left: 50%;
    transition: .5s;
    transform-origin: center;
}

.item {
    transform-origin: center;
    transition: .5s;
    position: absolute;
    width: 124px;
    height: 124px;
    display: inline-block;
}


.red-circle {
    background-color: var(--red);
    border-radius: 50%;
}

.gray-circle {
    background-color: var(--gray);
    border-radius: 50%;
    top: 5px;
}

.item-img-box {
    top: 25px;
}

.item-img-box img{
    object-fit: contain;
}

.controls {
    z-index: 4;
    bottom: 180px;
}

.left, .right {
    cursor: pointer;
}

.left {
    margin-right: 24px;
}

.right {
    margin-left: 24px;
}

.tub-box {
    z-index: 3;
    top: calc(50% - 42px);
    /*top: 120px;*/
    /*right: -40px;*/
}

.tub-box img {
    user-select: none;
    object-fit: contain;
    aspect-ratio: 784 / 450;
}

.svg {
    position: absolute;
    width: 0;
    height: 0;
}

.clipped {
    width: 100%;
    background-color: var(--white);
    background-size: cover;
    -webkit-clip-path: url(#my-clip-path);
    clip-path: url(#my-clip-path);
    height: 750px;
}

.home-page-slider-section-box,
.partners-section,
.main-projects-section,
.services-section,
.best-seller-section,
.news-section,
.promotions-section {
    z-index: 3;
}

.partners-section .swiper-slide {
    height: 60px;
}


.project-img-bg {
    width: 100%;
    aspect-ratio: 567/429;
    background-color: var(--blue);
    max-width: 567px;
}

.project-img img {
    width: 100%;
    aspect-ratio: 596/420;
    max-width: 596px;
    object-fit: cover;
    position: relative;
    margin-top: 40px;
    z-index: 1;
}

.project-info-box h2, .services-section h2,
.best-seller-section h2, .news-section h2,
.promotions-section h2 {
    font-family: 'Mardoto-Medium';
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    color: var(--black);
    text-transform: uppercase;
}

.project-info-box p {
    color: var(--black);
}


/*.project-type{*/
/*    display: grid;*/
/*    grid-template-columns: repeat(4, minmax(0, 1fr));*/
/*    gap: 10px;*/
/*}*/

.project-type span{
    color: var(--white);
    text-transform: lowercase;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    height: 50px;
    overflow: hidden;
}

.project-type span::first-letter {
    text-transform: uppercase;
}

.project-info-box p, .project-type span, .service-item-info p {
    font-family: 'Mardoto-Regular';
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
}

.project-info-box ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.project-type label {
    background-color: var(--blue);
    cursor: pointer;
    margin-bottom: 5px;
}


.project-type img {
    width: 38px;
    height: 38px;
}

.project-type label.active {
    border-bottom: 5px solid var(--red);
}


.services-box {
    margin: 0 -8px;
}


.service-item-card {
    aspect-ratio: 429/379;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.service-item .service-item-card {
    position: relative;
    height: 100%;
    width: 100%;
}

.service-item .service-item-card::before, .about-us-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.even-service .service-item-card {
    align-items: end;
    color: var(--white);
}

.odd-service .service-item-card {
    color: var(--black);
}

.even-service .service-item-card::before {
    background-color: #111111AB;
}

.odd-service .service-item-card::before {
    background-color: #D9D9D980;
}

.about-us-title-section::before {
    background-color: #2E324EB2;
}

.service-item .service-item-info {
    position: relative;
    z-index: 2;
    padding: 36px;
}

.even-service .service-item-info h4,
.even-service .service-item-info p {
    text-align: center;
}


.service-item-info h4 {
    font-family: 'Mardoto-Medium';
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    text-transform: uppercase;
}

.best-seller-section h3 {
    font-family: 'Mardoto-Medium';
    font-size: 28px;
    font-weight: 500;
    line-height: 32px;
    color: var(--black);
}


.best-seller-categories-box {
    background-color: var(--lightBlue);
    border-radius: 8px;
}

.best-seller-categories-box .swiper-slide:first-child {
    border-radius: 8px 0 0 8px;
}

.best-seller-categories-box .swiper-slide:last-child {
    border-radius: 0 8px 8px 0;
}

.best-seller-categories-box .swiper-slide {
    width: 220px !important;
    background-color: var(--lightBlue);
}

.category-border-left {
    border-left: 1px solid var(--white);
}


.best-seller-category-item button {
    font-family: 'Mardoto-Regular';
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--blue);
    text-transform: uppercase;
}

.best-seller-category-item button.active {
    color: var(--white);
    background-color: var(--blue) !important;
    border-radius: 8px;
}


.best-seller-category-img {
    aspect-ratio: 1440/450;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.best-seller-category-img > div {
    padding: 30px 50px;
    background: #D9D9D9B2;
    bottom: 60px;
    border-radius: 0 4px 4px 0;
}

.best-seller-category-img h4 {
    font-family: 'Mardoto-Medium';
    font-size: 24px;
    font-weight: 500;
    line-height: 27px;
    text-transform: uppercase;
    text-align: center;
    color: var(--blue);


}


.product-section {
    padding: 100px 0;
}

.product-card {
    background-color: var(--lightGray);
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px #00000040;

}


.product-card-img {
    aspect-ratio: 239/190;
    object-fit: contain;
}

.product-card-title {
    font-family: 'Mardoto-Medium';
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--black);
}

.product-card-desc {
    font-family: 'Mardoto-Regular';
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--black);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    height: 50px;
    overflow: hidden;
}

.product-card-price {
    padding: 5px 22px;
    font-family: 'Mardoto-Medium';
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--blue);
    background-color: var(--gray);
    border-radius: 4px;
}

.product-card:hover .product-card-price {
    color: var(--white);
    background-color: var(--blue);
}

.news-box {
    display: grid;
    grid-template-columns: minmax(45%, 587px) minmax(26%, 351px) minmax(27%, 359px);
    gap: 10px;
}

/*.news-first-card {*/
/*    grid-column: span 1;*/
/*    grid-row: 1 / 3;*/
/*}*/

.news-third-card {
    /*grid-column: 3;*/
    /*grid-row: 1 / 4;*/
    background-color: var(--lightGray);
}

.news-fourth-card {
    /*grid-column: span 1;*/
    /*grid-row: 3 / 4;*/
    background-color: var(--lightGray);
}

.news-fifth-card {
    /*grid-column: 2;*/
    /*grid-row: 2 / 4;*/
    background-color: var(--lightGray);
}

.news-card {
    margin-bottom: 10px;
}

.news-first-card {
    aspect-ratio: 587/621;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    height: 100%;
    width: 100%;
    padding: 70px 50px 50px;
}

.news-first-card .news-card-info {
    color: var(--white) !important;
}


.news-first-card::before, .news-second-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;

}

.news-first-card::before {
    background: #06060699;
}

.news-second-card::before {
    background: #F3F3F399;
}

.news-second-card {
    /*aspect-ratio: 351/245;*/
    aspect-ratio: 351/260;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    /*height: 100%;*/
    /*width: 100%;*/
}

.news-first-card .news-card-info,
.news-second-card .news-card-info {
    position: relative;
    z-index: 3;
}


.news-third-card .news-card-img {
    aspect-ratio: 359/609;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    /*object-fit: cover;*/
}

/*.news-third-card .news-card-img img{*/
/*    object-fit: cover;*/
/*}*/

.news-fourth-card-img {
    aspect-ratio: 239 / 239;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.news-fifth-card .news-card-img {
    aspect-ratio: 351 / 400;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;

}

.news-card-info {
    color: var(--black);
}

.news-card-info h4 {
    font-family: 'Mardoto-Medium';
    font-size: 28px;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
}

.news-card-info p, .about-us-service-info p {
    font-family: 'Mardoto-Regular';
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.news-card-info a {
    font-family: 'Mardoto-Medium';
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
}

.news-card-info a {
    color: var(--red);
}

.news-first-card a {
    color: var(--white) !important;
}

.news-fourth-card img,
.news-fifth-card img {
    object-fit: cover;
}


.promotions-box {
    aspect-ratio: 1440/892;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
}

.promotions-info {
    padding: 80px 100px;
    background: #23202099;
    color: var(--white);
    height: 100%;
}

.promotions-info h3 {
    font-family: 'Mardoto-Regular';
    font-size: 47px;
    font-weight: 400;
    line-height: 55px;
    margin-bottom: 38px;
}


.promotions-info p {
    font-family: 'Mardoto-Regular';
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 120px;
}

.promotions-info h2 {
    font-family: 'Mardoto-Bold';
    font-size: 60px;
    font-weight: 700;
    line-height: 70px;
    color: #C3DF15;
    margin-bottom: 68px;
}

.promotions-info a {
    font-family: 'Mardoto-Medium';
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: var(--white) !important;
}


.roller-box {
    /*top: 770px;*/
    z-index: 2;
}

.roller-box-img {
    background-image: url("../images/roller/brush.webp");
    /*background-size: ;*/
    width: 188px;
    right: -25px;
    height: 300px;
    background-repeat: repeat-y;
}

.roll {
    z-index: 133;
    aspect-ratio: 166 / 215;
    right: calc(50% - 680px);
}


.best-seller-category-slide {
    width: 100%;
}

/*.best-seller-category-slide .swiper-slide {*/
/*    width: 80% !important;*/
/*}*/

/*.best-seller-category-slide .swiper-slide:nth-child(2n) {*/
/*    width: 80% !important;*/
/*}*/

/*.best-seller-category-slide .swiper-slide:nth-child(3n) {*/
/*    width: 80% !important;*/
/*}*/
.best-seller-category-slide .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px !important;
}


/*shop-list*/

.list-of-products {
    /*height: 205px;*/
    padding: 32px 0;
    position: relative;
    background-color: var(--blue);
}

.list-of-products .content-header {
    padding: 0 0 0 112px;
}

.list-of-products img {
    position: absolute;
    top: -100px;
}

.list-of-products h1 {
    text-align: end;
    font-size: 90px;
    font-family: Mardoto-Bold;
    font-weight: 900;
    line-height: 108px;
    color: var(--transparentGray);
    text-transform: uppercase;
}

.list-of-products span {
    font-family: Mardoto-Medium;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    color: var(--white);
    text-transform: uppercase;
    padding-left: 84px;
}

.categories-title {
    font-family: Mardoto-Medium;
    font-size: 23px;
    font-weight: 500;
    line-height: 27px;
    color: var(--black);
    text-transform: uppercase;
}

.categories-title:hover {
    color: var(--black);
}

.category_name {
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    font-family: 'Mardoto-Medium';
    color: var(--black);
    cursor: pointer;
}

.category_name:hover {
    color: var(--blue);
}

.clear-all {
    background-color: var(--gray);
    color: var(--blue);
    padding: 9px 30px 10px 30px;
}

.clear-all:hover {
    background-color: var(--gray);
}

.clear-all:focus, .clear-all:active {
    background-color: var(--gray);
    color: var(--black);
    border: none;
}

.search-input {
    background-color: var(--white);
}

.search-input:focus-visible {
    outline: none;
}

.subcategory_name {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--black);
    text-decoration: none;
    font-family: 'Mardoto-Regular';
    cursor: pointer;
}

.category-section-title {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Mardoto-Medium';
    line-height: 20px;
}

.subcategory-count {
    color: var(--blue);
}

.filterTitle {
    font-size: 24px !important;
    line-height: 26px !important;
}

.filter h2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: var(--black);
    font-family: 'Mardoto-Medium';
    text-transform: capitalize;
}
.pagination{
    flex-wrap: wrap;
}
#products .page-link {
    border: none !important;
    color: var(--blue);
    padding: 10px 15px !important;
    border-radius: 8px;
}

#products .page-link:focus {
    border: none !important;
    background-color: var(--white) !important;
    box-shadow: none !important;
}

#products .disabled>.page-link {
    background-color: var(--white) !important;
}

#products .active>.page-link, .page-link.active  {
    background-color: var(--blue) !important;
    color: var(--white);
}

.filter a {
    cursor: pointer;
}

.filter .ui-slider-range {
    background-color: #9E3333 !important;
    border-radius: 5px !important;
}

.filter .ui-slider-handle {
    border-radius: 50% !important;
    border: none !important;
    background-color: #9E3333 !important;
    height: 19px !important;
}

.filter .ui-slider-handle:focus-visible {
    border: none !important;
}

.filter .ui-slider {
    background-color: #D9D9D9 !important;
}


#slider {
    width: 100%;
    height: 9px;
    border-radius: 5px;
    accent-color: var(--red);
    border: none;
}

.values p {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--blue);
    font-family: 'Mardoto-Regular';
}

.materials, .brands, .discounted-products {
    color: var(--black);
    border: none;
    text-decoration: none;
    text-transform: capitalize;
}

.color-link {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: none;
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.19) inset, 0px 0px 0px 3px #FFF;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.selected-color {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.colors-box {
    padding-left: 12px;
}

.choose {
    background-color: var(--blue);
    color: var(--white);
    padding: 8px 30px;
}

.choose, .clear-all {
    border-radius: 8px;
    font-size: 14px;
    line-height: 16px;
    text-decoration: none;
}

/*product single page*/

.all-products {
    padding-top: 68px;
}

.product-info {
    background-color: var(--lightGray);
    border-radius: 0px 300px 323px 0px;
}

.single-product h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    font-family: Mardoto-Bold;
    color: var(--black);
    padding-bottom: 20px;
    margin: 0;
    text-transform: uppercase;
}

.product-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    font-family: Mardoto-Regular;
    padding: 20px 0;
    color: var(--black);
    border-top: 1px solid #D3D3D380;
    border-bottom: 1px solid #D3D3D380;
}


.product-single-page, .news-single-page{
    margin-top: -80px;
}


.single-product h2 {
    font-size: 22px;
    font-weight: 400;
    line-height: 27px;
    font-family: Mardoto-Regular;
    color: var(--black);
}

.product-color-box {
    border-bottom: 1px solid #D3D3D380;
    padding: 12px 0 20px 0;
}

.product-color-box .product-color {
    width: 40px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.19) inset, 0px 0px 0px 3px var(--lightGray);
}

.active-color {
    background-color: var(--blue);
    height: 5px;
}

.quality, .brand {
    padding: 24px 0 16px 0;
    border-bottom: 1px solid #D3D3D380;
}

.quality p {
    font-weight: 400;
    font-family: Mardoto-Regular;
    font-size: 14px;
    line-height: 16px;
    padding: 0;
    margin: 0;
}

.add-product h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    color: var(--blue);
    font-family: Mardoto-Medium;
}

.add-product-button {
    font-size: 21px;
    font-weight: 500;
    line-height: 24px;
    font-family: Mardoto-Medium;
    color: var(--red);
    margin: 0;
    background-color: var(--lightGray);
}

.heart {
    height: 18px;
    width: 18px;
}

.add-product {
    padding-top: 27px;
}

.size {
    padding: 24px 0 16px 0;
    border-bottom: 1px solid #D3D3D380;
}

.single-product .row {
    width: 100% !important;
}

.bath {
    width: 610px;
    position: absolute;
    top: 189px;
    left: -200px;
}

.shower {
    padding-left: 268px;
}

.product-swiper .gallery-top {
    width: calc(100% - 100px);
}

.product-swiper .gallery-thumbs {
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    margin-top: 108px;
}

.product-swiper .gallery-top {
    overflow: hidden;
}

.product-swiper .gallery-top .swiper-wrapper .swiper-slide img {
    aspect-ratio: 396/515;
    width: 100%;
    object-fit: contain;
}

.product-swiper .gallery-thumbs .swiper-wrapper .swiper-slide {
    height: 80px !important;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.product-swiper .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.4;
}

.background-vector {
    right: -120px;
    top: 30px;
    aspect-ratio: 340 / 451;
    width: 340px;
    opacity: 0.2;
}

.wishlist-product-count {
    color: var(--white);
    background: var(--yellow);
    font-family: 'Mardoto-Medium';
    font-weight: 500;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    font-size: 6px;
    line-height: 6px;
    text-align: center;
    right: -3px;
    top: 3px;
    padding: 2px;
}

.navbar-menu-header .wishlist-product-count {
    color: var(--blue);
}

#navbar-menu .navTitle {
    color: var(--black);
    font-family: 'Mardoto-Regular';
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
}

#navbar-menu .header-links-btn svg {
    vertical-align: unset;
}

#navbar-menu .header-links-btn.active {
    background-color: var(--red);
}

#navbar-menu .header-links-btn.active .navTitle {
    color: var(--white);
}

#navbar-menu .header-links-btn.active svg path {
    fill: var(--white);
}

.similar-products {
    padding: 58px 0 41px 0;
}

.similar-products h2 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    font-family: Mardoto-Medium;
    color: var(--black);
}

.product-images {
    left: -30px;
}

.similar-products-box-bg {
    background-color: var(--blue);
    height: 161px;
    width: 100%;
    top: 0;
}

.similar-products-box .similar-product {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 3px 4px 4px 0px #CDCCCC40 !important;
    top: 40px;
    aspect-ratio: 1/1;
}

.similar-products-box .similar-product .product-img{
    width: 100%;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.similar-product {
    position: relative;
    transition: transform 0.3s ease;
}

.similar-product:hover {
    transform: scale(1.3);
    z-index: 1;
    outline: 2px solid var(--red);
}

.similarSwiper {
    padding-bottom: 120px !important;
}

.similar-products-box .similar-product h3 {
    font-size: 10px;
    font-weight: 500;
    font-family: Mardoto-Medium;
    line-height: 12px;
    text-transform: uppercase;
    color: var(--blue);
    padding: 8px 12px;
}
 .similarSwiper .swiper-slide:hover {
     z-index: 1 !important;
 }


.similarSwiper .swiper-slide {
    overflow: visible !important;
}

.price-box {
    background-color: var(--red);
    border-radius: 0px 0px 10px 0px;
    bottom: 0;
    right: 0;
    padding: 8px 12px 8px 16px;
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;
    font-family: Mardoto-Medium;
    color: var(--white);
}

.see-all-products a {
    font-size: 20px;
    font-weight: 500;
    font-family: Mardoto-Medium;
    line-height: 24px;
    color: var(--red) !important;
    text-decoration: none;
}

.about-us, .about-us-title-section {
    aspect-ratio: 1440/393;
}

.about-us-title-section, .about-us-service {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.about-us-title {
    font-family: 'Mardoto-Bold';
    font-size: 40px;
    font-weight: 900;
    line-height: 47px;
    color: var(--white);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    padding-bottom: 106px;
}

.about-us-main-projects {
    padding: 72px 0 128px;
}

.about-us-main-projects .lamp {
    bottom: 30px;
}


.about-us-service {
    aspect-ratio: 1268/560;
    padding: 72px;
    margin-right: 52px;
}

.about-us-service-info {
    color: var(--white);
}

.about-us-service-info h3, .about-us-find-us-section h2 {
    font-family: 'Mardoto-Medium';
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    text-transform: uppercase;
}

.about-us-service-info h2 {
    font-family: 'Mardoto-Bold';
    font-size: 50px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
}

.about-us-service-info h2 span {
    font-family: 'Mardoto-Bold';
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
}

.about-us-service-info a {
    background-color: var(--red);
    color: var(--white);
    border-radius: 8px;
    padding: 10px 16px;
}

.about-us-service-card-box {
    row-gap: 24px;
}

.about-us-service-card {
    background-color: var(--white);
    border-radius: 10px;
    color: var(--blue);
    box-shadow: 0px 4px 4px 0px #00000040;
}

.about-us-service-card h4, .about-us-service-info a, .about-us-find-us-section span {
    font-family: 'Mardoto-Medium';
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

.about-us-service-card p {
    font-family: 'Mardoto-Regular';
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.about-us-service-card-box img {
    max-width: 205px;
    width: 100%;
    aspect-ratio: 205/274;
    bottom: -240px;
    right: -50px;
}

.about-us-find-us-section {
    padding: 120px 0 98px;
}

.about-us-find-us-section h2 {
    color: var(--black);
}

.about-us-find-us-section span {
    color: var(--white);
    background-color: var(--red);
    padding: 14px;
    bottom: -21px;
}

.login {
    background-color: var(--blue);
}
.activeFavourite svg path{
    fill:#9e3334;
    stroke:#9e3334
}



/*.download-app {*/
/*    background-color: var(--white);*/
/*    color: var(--black);*/

/*    padding: 8px 12px;*/
/*    border-radius: 8px;*/
/*}*/

/*.download {*/
/*    font-size: 12px;*/
/*    line-height: 14px;*/
/*    font-weight: 400;*/
/*    font-family: 'Mardoto-Regular';*/

/*}*/

/*.app-store {*/
/*    font-size: 14px;*/
/*    line-height: 16px;*/
/*    font-weight: 500;*/
/*    font-family: 'Mardoto-Medium';*/

/*}*/


.download-app {
    width: min-content;
}

.app-logo {
    width: min-content;
    max-height: 50px
}

.st1 {
    stroke: #ffffff;
    stroke-width: .2;
    stroke-miterlimit: 10
}

.st1, .st2 {
    fill: #fff
}

.st3 {
    fill: url(#SVGID_1_)
}

.st4 {
    fill: url(#SVGID_2_)
}

.st5 {
    fill: url(#SVGID_3_)
}

.st6 {
    fill: url(#SVGID_4_)
}

.st7, .st8, .st9 {
    opacity: .2;
    enable-background: new
}

.st8, .st9 {
    opacity: .12
}

.st9 {
    opacity: .25;
    fill: #fff
}


.heart {
    display: inline-block;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(255, 255, 255);
    height: 10px;
    width: 10px;
    transform: rotate(-45deg);
    animation-name: beat;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.heart:after {
    background-color: rgb(255, 255, 255);
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 0px;
    left: 5px;
}

.heart:before {
    background-color: rgb(255, 255, 255);
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 10px;
    height: 10px;
    top: -5px;
    left: 0px;
}
@keyframes beat {
    0% {
        transform: scale(1) rotate(-45deg);
    }
    50% {
        transform: scale(0.6) rotate(-45deg);
    }
}
