@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --black: #000;
    --lightblack: #333333;
    --white: #fff;
    --bordercolor: #EEEEEE;
    --grey: #F3F4F6;
    --red: #F20231;
    --blue: #011684;
    --gold: #BB9749;
    --lightgold: #c9B07A;
    --playfair: "Playfair Display", serif;
    --poppins: "Poppins", sans-serif;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--poppins);
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    background: #FFFFFF;
    overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
    font-family: var(--playfair);
    font-weight: 400;
}

h1,
.heading-title {
    font-weight: 600;
    font-size: 79px;
    line-height: 88px;
    text-transform: uppercase;
    color: var(--white);
    padding-bottom: 40px;
}

h2 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.05em;
    color: #0C112E;
    text-align: center;
}

h3 {
    font-weight: 600;
    font-size: 42px;
    line-height: 1.05em;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #0b5798;
}

:focus {
    outline: none !important;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
}

label {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
    margin: 0 0 10px;
}

label span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
}

.select {
    position: relative;
}

.select::after {
    content: "\e91b";
    font-family: "Syd";
    color: #000;
    font-size: 14px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 18px;
    pointer-events: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: #e3e3e3 1px solid;
    padding: 9px 14px;
    font-size: 17px;
    font-weight: 400;
    line-height: 17px;
    color: #6c6b6b;
}

textarea {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: #e3e3e3 1px solid;
    transition: 0.2s ease all;
    resize: none;
    padding: 9px 14px;
    font-family: "Cabin", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 17px;
    color: #6c6b6b;
}

[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
    width: 100%;
    height: 45px;
    background: #FFFFFF;
    border-radius: 6px;
    border: #EEEEEE 1px solid;
    outline: none;
    padding: 9px 14px;
    font-size: 15px;
    font-weight: 400;
    line-height: 17px;
    color: #000;
    transition: 0.2s ease all;
}

textarea {
    height: 70px;
}

input::-webkit-input-placeholder {
    color: #707070;
    opacity: 1;
}

[type="submit"] {
    border: 1px solid #292929;
    outline: none;
    padding: 13px 25px;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    color: #292929;
    border-radius: 0px;
    transition: 0.2s ease all;
    background: #fff;
    text-align: center;
    display: inline-block;
}

.primary-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid #F37C68;
    line-height: 1.5em;
    padding: 17px 70px;
    font-weight: 600;
    color: var(--white);
    border-radius: 100px;
    transition: all .4s ease-in-out;
}

.primary-btn:hover,
.secondary-btn {
    background: #F37C68;
}

.secondary-btn:hover {
    background: transparent;
    border: 1px solid #F37C68;
}

.sec-padding {
    padding: 80px 0;
}

.sec-margin {
    margin: 80px 0;
}

p {
    line-height: 1.5em;
    font-weight: 400;
    margin: 0;
}

.text-flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    max-width: 100%;
    padding: 0 20px;
    position: relative;
}

/* header----------------------------------------- */
/* top-header-start----------------------------- */
.top-header {
    font-size: 14px;
    background-color: #F8F8F8;
    padding: 13px 0 12px;
}

.top-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.need-help-box a {
    font-weight: 700;
    color: #202020;
}

.need-help-box a span {
    text-decoration: underline;
    transition: all 0.4s ease-in-out;
}

.need-help-box a:hover span {
    color: var(--red);
}

.header-top-offer-box p {
    font-weight: 700;
}

.header-top-offer-box a {
    color: var(--red);
    text-decoration: underline;
}

.header-top-offer-box a:hover {
    color: var(--black);
}

.header-top-favourite-box {
    display: flex;
    align-items: center;
}

.header-top-favourite-box p {
    font-weight: 500;
    color: #111111;
    transition: all 0.4s ease-in-out;
}

.header-top-sign-in-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 6px;
    border-right: 1px solid #A1A2A1;
}

.header-top-wishlist-box {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 12px;
}

.header-top-favourite-box a:hover p {
    color: var(--red);
}

.header-top-favourite-box a img {
    transition: all 0.3s ease-in-out;
}

.header-top-favourite-box a:hover img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(57%) saturate(7227%) hue-rotate(342deg) brightness(91%) contrast(110%);
}

/* top-header-end------------------------------------------- */
/* middle-header-start---------------------------------- */
.middle-header {
    background-color: #070616;
    padding: 8px 0;
}

.header-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.header-right {
    display: flex;
    align-items: center;
}

/* menu-bar-start=========================== */

.menu-bar {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 99;
    height: 100%;
    width: 300px;
    background-color: var(--black);
    opacity: 0;
    transition: 0.4s;
    padding: 30px 0 0 30px;
}

.menu-bar.show {
    left: 0;
    opacity: 1;
}

.menu-bar li {
    margin-bottom: 15px;
}

.menu-bar li a {
    font-weight: 500;
    line-height: 1em;
    text-transform: uppercase;
    color: var(--white);
}

.menu-bar li.has-children i {
    font-size: 12px;
    line-height: 1;
    margin-left: 2px;
    margin-bottom: 2px;
}

.sub-menu {
    display: none;
    padding: 12px 0 0 15px;
}

.sub-menu li {
    line-height: 1;
    margin-bottom: 10px;
}

.sub-menu li:last-child {
    margin-bottom: 0;
}

.sub-menu li a {
    opacity: 0.9;
}

.toggle-btn {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 7px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    padding: 0;
}

.toggle-btn span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.2s ease-in-out;
}

.toggle-btn.active {
    row-gap: 0;
}

.toggle-btn.active span:first-child {
    transform: rotate(45deg) translate(1px, 1px);
}

.toggle-btn.active span:nth-child(2) {
    display: none;
}

.toggle-btn.active span:last-child {
    transform: rotate(-45deg) translate(1px, -1px);
}

/* menu-bar-end================================= */

.contact-btn-wrap a,
.contact-btn-wrap a p {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.contact-btn-wrap a:hover {
    color: var(--red);
}

/* middle-header-end--------------------------------- */
/* bottom-header-start---------------------------- */

.bottom-header {
    background-color: #2C2B49;
}

.bottom-header-wrapper {
    display: flex;
    align-items: center;
}

.custom-select {
    width: 243px;
    height: 54px;
    background-image: url(../images/all-catagories-icon.webp);
    background-repeat: no-repeat;
    background-position: 91% 51%;
    outline: none;
    padding: 0 0 0 30px;
    background-color: var(--red);
    border: none;
    border-radius: 0px;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
    color: var(--white);
}

.custom-select option {
    background-color: var(--white);
    color: var(--black);
}

.shipping-payment-box,
.free-shipping-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shipping-payment-box {
    padding-left: 24px;
}

.free-shipping-box {
    gap: 9px;
}

.free-shipping-box p {
    font-size: var(--font16);
    line-height: 1em;
    text-transform: uppercase;
    color: var(--white);
}

.input-div {
    position: relative;
    width: 348px;
    border-radius: 6px;
    overflow: hidden;
    margin: 0 auto;
}

.input-div input {
    width: 100%;
    height: 39px;
    border: 1px solid #FFFFFF12;
    background-color: var(--white);
    outline: none;
    font-size: 15px;
    line-height: 1em;
    padding: 14px 16px;
    padding-right: 42px;
    border-radius: 6px;
}

.input-div input::placeholder {
    color: #2E2E2F;
}

.input-div .search-input-icon {
    position: absolute;
    right: 6px;
    top: 5px;
    bottom: 4px;
    width: 30px;
    height: 30px;
    background: #2D2C4A;
    border: 0;
    border-radius: 6px;
    padding: 9px;
}

.cart-item {
    height: 100%;
    background-color: var(--red);
    color: var(--white);
    padding: 19px 25px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item a,
.cart-item p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1em;
    text-transform: uppercase;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* bottom-header-end--------------------------- */

/* latest-project start ====================*/
.p-70 {
    padding: 70px 0;
}

.pt-100 {
    padding-top: 100px;
}

.latest-project h2 {
    padding-bottom: 50px;
}

.travertine-box-img-text {
    position: relative;
}

.travertine-box {
    height: 100%;
    background-color: #FAFAFA;
    border-radius: 10px;
    padding: 30px 25px 35px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}

.travertine-box-img {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-star {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.review-star .rateing-star {
    font-size: 15px;
}

.rateing-star i {
    color: #EDBD20;
}

.travertine-box .review-star .rateing-star i:nth-child(4) {
    color: #EDEDED;
}

.review-star .rateing-star i:last-child {
    color: #EDEDED;
}

.travertine-box-img {
    height: 210px;
    display: flex;
    justify-content: center;
    padding-bottom: 28px;
}

.travertine-icon {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 25px;
    color: #292929;
}

.travertine-icon:hover i {
    color: #E21818;
}

.travertine-box-img-text h3 {
    font-weight: 400;
    font-size: 19px;
    text-transform: capitalize;
    line-height: 1.5rem;
    color: #131313;
    padding: 12px 0;
    transition: all .4s ease-in-out;
}

.travertine-box-img-text h3:hover {
    color: var(--red);
}

.review-star {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.review-star p {
    font-family: var(--playfair);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.125rem;
    color: #110F36;
}

.price {
    padding-top: 14px;
}

.price p {
    font-family: var(--playfair);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.125rem;
    color: #110F36;
}

.price del {
    color: #B1B1B1;
    text-decoration: line-through;
}

.travertine-box-bottom {
    display: flex;
    flex-wrap: wrap;
}

.travertine-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    margin: 26px 0 0px;
}

.add-cart-btn {
    width: 100%;
    height: 100%;
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 16px;
    line-height: 1em;
    text-transform: uppercase;
    color: var(--white);
    background-color: #E21818;
    border: 1px solid #E21818;
    border-radius: 3px;
    padding: 9px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
}

.expand-btn {
    height: 100%;
    color: var(--white);
    background-color: #E21818;
    border: 1px solid #E21818;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    font-size: 14px;
}

.add-cart-img-box i {
    color: var(--white);
}

.travertine-right-row {
    --bs-gutter-y: 1.5rem;
}

.primary-button {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.125rem;
    color: var(--white);
    text-align: center;
    padding: 15px 47px;
    background-color: #121A31;
    border: 2px solid #121A31;
    border-radius: 100px;
}

.primary-button:hover,
.primary-button.red {
    background-color: #F80B28;
    border: 2px solid #F80B28;
}

.primary-button.red:hover {
    background-color: #121A31;
    border: 2px solid #121A31;
}

.see-all-btn {
    padding-top: 30px;
}

/* latest-project end */

/* product-slider-start */
.product-carousel.owl-carousel .owl-item img {
    width: fit-content;
}

.side-button .owl-nav {
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    border: 0px;
    text-align: right;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    left: 0px;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}

.side-button .owl-nav .owl-prev span,
.side-button .owl-nav .owl-next span {
    font-size: 0px;
}

.side-button .owl-nav .owl-prev,
.side-button .owl-nav .owl-next,
.side-button .owl-nav .owl-next:hover {
    display: inline-block;
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    position: relative;
    outline: none;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background: transparent !important;
    border: 2px solid #CCCBCB !important;
    border-radius: 50%;
    box-shadow: none;
}

.side-button .owl-nav .owl-next,
.side-button .owl-nav .owl-prev:hover {
    background: #110F36 !important;
    margin-right: 0px;
    right: 0px;
    position: relative;
}

.side-button .owl-nav .owl-prev,
.side-button .owl-nav .owl-prev {
    margin-right: 0px;
    left: 0px;
    position: relative;
}

.side-button .owl-nav .owl-prev {
    left: -90px;
}

.side-button .owl-nav .owl-next {
    right: -90px;
}

.side-button .owl-nav .owl-prev::after,
.side-button .owl-nav .owl-next::after {
    content: "\f104";
    position: absolute;
    font-family: "FontAwesome";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    font-size: 16px;
    color: #C4C4C4;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.side-button .owl-nav .owl-next::after {
    content: '\f105';
}

.side-button .owl-nav .owl-prev:hover::after,
.side-button .owl-nav .owl-next::after {
    color: var(--white);
}

.side-button .owl-nav .owl-next:hover::after {
    color: #C4C4C4;
}

/* product-slider-end */

/* guiter-selection start */
.guiter-selection-box {
    height: 100%;
    position: relative;
}

.guiter-selection-bg-box {
    width: 100%;
    height: 100%;
    position: absolute;
}

.guiter-selection-bg-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guiter-selection-text-box {
    position: relative;
}

.guiter-selection-text-row {
    align-items: center;
}

.guiter-selection-header-box {
    padding: 90px 0 90px 65px;
}

.guiter-selection-header-box h3 {
    color: var(--white);
    padding-bottom: 35px;
}

.guiter-selection-header-box .primary-button {
    padding: 15px 37px;

    &:hover {
        background-color: #d10a21;
        border: 2px solid #d10a21;
    }
}

/* guiter-selection end */


/* banner start */
.banner-sec {
    position: relative;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.banner-bg-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-inner-img img {
    height: 650px;
    object-fit: contain;
}

.banner-cont p {
    font-size: 18px;
    line-height: 18px;
    color: var(--white);
}

.btns {
    margin-top: 40px;
    display: flex;
    gap: 24px;
}

.social-media-sec {
    display: flex;
    align-items: center;
    gap: 100px;
    position: absolute;
    right: -135px;
    top: 50%;
    transform: rotate(90deg);
    z-index: 99999;
}

.social-media-sec li a {
    font-weight: 500;
    font-size: 18px;
    line-height: 17px;
    color: #73798D;
}

.banner-content-outer {
    padding: 65px 0;
}

.banner-row {
    align-items: center;
}

.banner-inner .owl-dots button {
    width: 26px;
    height: 26px;
    border: 3px solid transparent;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 50% !important;
    position: absolute;
}

.banner-inner .owl-dots button:first-child {
    right: 25%;
    top: 59%;
}

.banner-inner .owl-dots button:nth-child(2) {
    right: 25%;
    top: 65%;
}

.banner-inner .owl-dots button:nth-child(3) {
    right: 25.7%;
    top: 70%;
}

.banner-inner .owl-dots button span {
    margin: 0 !important;
    width: 12px;
    height: 12px;
    border-radius: 50% !important;
    background: #fff !important;
}

.banner-inner .owl-dots button.active {
    border-color: #fff;
}

.banner-inner.owl-theme .owl-nav.disabled+.owl-dots {
    margin: 0;
}

/* banner end */

/* Instruments details start */
/* .instrument-details-box {
    width: 20%;
} */

.instrument-img {
    position: relative;
    overflow: hidden;
}

.instrument-img img {
    transition: all .4s ease-in-out;
}

.instrument-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.instrument-img:hover img {
    transform: scale(1.1);
}

.instrument-details-text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.instrument-details-text h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 18px;
    text-align: center;
    color: var(--white);
    padding-bottom: 25px;
}

.instrument-details-text a {
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    text-decoration: underline;
    color: var(--white);
}

.instrument-details-text a:hover {
    color: #F37C68;
}

.instrument-details-rows {
    display: flex;
}

/* Instruments details end */

/* counter-sec start */
.counter-sec {
    background-color: #0e1531;
    padding: 95px 0 70px;
}

.count-box-inner {
    display: flex;
    color: var(--white);
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 50px;
    line-height: 42px;
    text-align: center;
    padding-bottom: 11px;
}

.count-box p {
    font-family: var(--playfair);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: var(--white);
}

.count-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* counter-sec end */

/* footer-start-------------------------------- */
.footer {
    background-color: #07081A;
    color: var(--white);
}

.footer-top {
    padding: 80px 0 52px;
    border-bottom: 1px solid #EEEEEE1F;
}

.footer-logo a p {
    color: var(--white);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col:first-child {
    width: 271px;
}

.footer-col:nth-child(2) {
    width: 175px;
}

.footer-col:nth-child(3) {
    width: 180px;
}

.footer-col:last-child {
    width: 391px;
}

.footer-box {
    height: 100%;
}

.logo-text {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.4rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 33px 0 29px;
}

.footer-social a {
    transition: all 0.2s ease-in-out;
    color: var(--white);
}

.footer-social a i {
    font-size: 18px;
}

.footer-social a:hover {
    filter: brightness(0) saturate(100%) invert(16%) sepia(57%) saturate(7227%) hue-rotate(342deg) brightness(91%) contrast(110%);
}

.footer-heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 1em;
    text-transform: capitalize;
    padding: 0 0px 24px;
    font-family: sans-serif;
}

.footer-col:nth-child(2) ul li,
.footer-col:nth-child(3) ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-col:nth-child(2) ul li:first-child {
    padding: 0;
}

.footer-col:nth-child(2) ul li a,
.footer-col:nth-child(3) ul li a {
    font-weight: 400;
    font-size: 17px;
    line-height: 2.688rem;
    text-transform: capitalize;
    color: var(--white);
    padding-left: 13px;
    position: relative;
    font-family: sans-serif;
}

.footer-col:nth-child(2) ul li a::before,
.footer-col:nth-child(3) ul li a::before {
    content: " ";
    width: 4px;
    height: 4px;
    background-color: var(--white);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer-col:nth-child(2) ul li a:hover,
.footer-col:nth-child(3) ul li a:hover {
    color: var(--red);
}

.footer-col:nth-child(4) ul li {
    display: flex;
    align-items: start;
    padding-top: 25px;
}

.footer-col:nth-child(4) ul li:nth-child(1) .footer-contact-cont a {
    display: contents;
}

.footer-col:nth-child(4) ul li:nth-child(2) a {
    text-decoration: underline;
}

.footer-col:nth-child(4) ul li:first-child {
    padding: 0;
}

.footer-col:nth-child(4) ul li img {
    padding-top: 5px;
}

.footer-contact-cont {
    max-width: 375px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding-left: 11px;
}

.footer-contact-cont span {
    line-height: 1.375rem;
}

.footer-contact-cont a {
    font-weight: 500;
    font-size: 19px;
    line-height: 1.375rem;
    color: var(--white);
    font-family: sans-serif;
}

.footer-col:nth-child(4) ul li:last-child a {
    font-weight: 400;
    line-height: 1.313rem;
}

.footer-contact-cont a:hover {
    color: var(--red);
}

.footer-bottom {
    padding: 22px 0 25px;
}

.footer-bottom-text p,
.footer-bottom-text p a {
    font-weight: 400;
    line-height: 1em;
    color: var(--white);
    text-align: center;
}

.footer-bottom-text p a:hover {
    color: #F80B28;
}

.footer-icon li i {
    color: #F20231;
}

/* footer-end---------------------------------- */
/* testimonials-start */
.review-slider-title h4 {
    font-weight: 800;
    font-size: var(--font18);
    color: var(--black);
    padding: 10px 0;
}

.review-slider-title p {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: var(--black);
}

.review-info-wrapper-two {
    display: flex;
    align-items: center;
}

.review-info-left {
    width: 30%;
}

.review-info-right {
    width: 59%;
    margin-left: 30px;
}

.review-text-slider .slick-arrow i {
    color: var(--black);
    font-size: 12px;
}

.review-text-slider .slick-arrow::before {
    display: none;
}

.review-text-slider .slick-arrow {
    width: 30px;
    height: 30px;
    border: 1px solid #DDDDDD;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
}

.review-text-slider .slick-prev {
    bottom: -42px;
    right: auto;
}

.review-text-slider .slick-next {
    left: 40px;
    bottom: -42px;
    right: auto;
}

.testimonial-input {
    background-color: #F8F8F8;
    padding: 20px 0;
}

.testimonial-input-row {
    align-items: center;
}

.review-info-wrapper,
.input-wrapper {
    height: 100%;
    padding: 80px 0 70px;
    border-right: 1px solid #CDCFD0;
}

.mrg-top-80 {
    margin: clamp(45px, 5.556vw, 80px) 0 0;
}

.mrg-bot-80 {
    margin: 0 0 clamp(45px, 5.556vw, 80px);
}

.input-wrapper {
    border: 0;
}

.input-wrapper-inner h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 23px;
    color: var(--black);
    padding-bottom: 38px;
    text-align: center;
}

.mail-box {
    border: 1px solid #000000;
    width: 75%;
    position: relative;
    border-radius: 9px 0 0 9px;
}

.mail-box input {
    width: 100%;
    height: 64px;
    background-color: #F8F8F8;
    border-radius: 9px 0 0 9px;
    outline: 0;
    border: 0;
    padding: 27px 54px;
}

.mail-box input::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: var(--black);
}

.mail-icon {
    position: absolute;
    top: 25px;
    left: 21px;
}

.sub-box {
    width: 25%;
}

.sub-btn {
    width: 100%;
    height: 66px;
    background-color: var(--red);
    border: 0;
    border-radius: 0 9px 9px 0px;
    padding: 0;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    transition: all.4s ease-in-out;
}

.sub-btn:hover {
    background-color: var(--black);
}

.form-inner {
    display: flex;
}

.social-icons a {
    width: 22px;
    height: 22px;
    border: 1px solid var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 7px;
}

.social-icons a:hover {
    border: 1px solid var(--red);
}

.social-icons a i {
    color: var(--black);
    font-size: 10px;
}

.social-icons a:hover i {
    color: var(--red);
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-media-para p {
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    color: var(--red);
    padding-right: 20px;
}

.social-media-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

/* testimonials-end */


/* 02-04-26 */
/* product-page-start */
/* inner-banner-start */
.inner-banner-sec {
    background-color: #0e1531;
    padding: 120px 0;
}

.inner-banner-title h2 {
    font-size: 52px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.product-banner-title {
    max-width: 200px;
    margin: 0 auto;
}

/* inner-banner-end */
.product-title h3 {
    padding: 5px 0 43px;
    font-weight: 400;
}

.filter-clear-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 9px;
}

.filter-clear-box p {
    line-height: 1em;
    text-align: left;
}

.filter-clear-box a {
    font-weight: 400;
    font-size: 14px;
    line-height: 1em;
    letter-spacing: 0;
    text-align: right;
    text-decoration: underline;
    color: var(--black);
}

.products-right-top-search {
    margin: 38px 0 24px;
}

.products-search-sec input {
    width: 100%;
    height: 45px;
    background: #FFFFFF;
    border-radius: 6px;
    border: #EEEEEE 1px solid;
    outline: none;
    padding: 9px 14px;
    font-size: 15px;
    font-weight: 400;
    line-height: 17px;
    color: #000;
    transition: 0.2s ease all;
}

.products-search-sec {
    width: 100%;
    position: relative;
    border: 1px solid #767676;
    border-radius: 3px;
    overflow: hidden;
}

.products-search-img-box {
    width: 47px;
    background-color: #CF1E2F;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.filter-box {
    width: 100%;
    border-radius: 6px;
}

.filter-box.open .filter-header {
    margin-bottom: 0px;
    border-radius: 4px 4px 0 0;
}

.filter-header img {
    position: relative;
    top: 0;
    right: 0;
    filter: brightness(0) saturate(100%) invert(96%) sepia(87%) saturate(2%) hue-rotate(151deg) brightness(113%) contrast(100%);
}

.filter-header {
    width: 100%;
    border: 1px solid #0C1C33;
    border-radius: 5px;
    background-color: var(--white);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 14px 22px;
    margin-bottom: 20px;
    gap: 12px;
    background-color: #0C1C33;
}

.filter-box.open .arrow {
    transform: rotate(180deg);
}

.filter-box.open .filter-header img {
    top: -3px;
    right: 0;
}

.floor-finder-title p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0.09em;
    color: var(--white);
    text-transform: capitalize;
}

.filter-options.floor-finder-select-sec {
    display: none;
    padding: 10px 15px 30px;
    border-radius: 0 0 4px 4px;
    border: 1px solid #767676;
    border-top: none;
}

.filter-box .floor-finder-select-sec,
.filter-box-two .floor-finder-select-sec {
    margin-bottom: 20px;
}

.price-slider {
    position: relative;
    width: 100%;
    margin: 18px auto 22px;
    height: 8px;
}

.price-slider input[type="range"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: transparent;
    pointer-events: none;
}

/* black track */
.price-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: #0B102D;
    border-radius: 4px;
}

.price-slider input[type="range"]::-moz-range-track {
    height: 6px;
    background: #0B102D;
    border-radius: 4px;
}

/* hollow (white center) handles */
.price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 16px;
    height: 16px;
    border: 2px solid #0B102D;
    /* black ring */
    background: #fff;
    /* white center */
    border-radius: 50%;
    cursor: pointer;
    margin-top: -5px;
    box-shadow: 0px 2px 4px 0px #00000040;
    position: relative;
    z-index: 99;
    /* center vertically */
}

.price-slider input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 16px;
    height: 16px;
    border: 2px solid #252525;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

/* min/max number inputs */
.price-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-family: sans-serif;
}

.price-inputs label {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1em;
    letter-spacing: 0.09em;
    color: var(--black);
}

.price-inputs input[type="number"] {
    width: 90px;
    padding: 6px;
    border: 1px solid #767676;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1em;
    letter-spacing: 0.09em;
    color: var(--black);
    margin-top: 10px;
    display: flex;
}

.product-list-left .nav .nav-link.active,
.product-list-left .nav .nav-link:hover {
    background-color: #0C1C33;
    color: var(--white);
}

.product-list-left .nav .nav-link {
    padding: 12px 23px;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #767676;
    border-radius: 4px;
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
    color: var(--black);
}

.product-list-left .nav .nav-link:last-child {
    margin: 0;
}

.product-list-left .nav .nav-link.active img,
.product-list-left .nav .nav-link:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(0deg) brightness(110%) contrast(100%);
}

.product-list-left .nav .nav-link:first-child img {
    width: 17px;
    height: 22px;
}

.product-list-left .nav .nav-link img {
    margin-right: 12px;
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-family: sans-serif;
}

.price-inputs label {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1em;
    letter-spacing: 0.09em;
    color: var(--black);
}

.price-inputs input[type="number"] {
    width: 90px;
    padding: 6px;
    border: 1px solid #767676;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1em;
    letter-spacing: 0.09em;
    color: var(--black);
    margin-top: 10px;
    display: flex;
}

.product-list-left .nav .nav-link.active,
.product-list-left .nav .nav-link:hover {
    background-color: #0C1C33;
    color: var(--white);
}

.product-list-left .nav .nav-link img,
.product-list-left .nav .nav-link i {
    margin-right: 12px;
}

.products-showing-results {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 29px;
}

.products-showing-results p {
    font-size: 14px;
    line-height: 1em;
    letter-spacing: 0;
}

.sort-by-box {
    flex-direction: row;
    gap: 11px;
}

.sort-by-select {
    width: 203px;
    height: 34px;
    background-image: url(../images/sort-by-dropdown.webp);
    background-repeat: no-repeat;
    background-position: 91% 51%;
    outline: none;
    background-color: var(--white);
    border: 1px solid var(--black);
    border-radius: 3px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1em;
    letter-spacing: 0.06em;
}

/* pagination-sec start */
.pagination-sec {
    width: 100%;
    margin-top: 60px;
}

.pagination-sec ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-sec ul li {
    margin: 0 4px;
}

.pagination-sec ul li a {
    display: flex;
    width: 32px;
    height: 32px;
    font-size: 14px;
    font-weight: 700;
    color: #202020;
    align-items: center;
    justify-content: center;
    border: 1px solid #DFE3E8;
    border-radius: 4px;
}

.pegination-left-arrow {
    background-color: #241B02;
    color: #fff !important;
    border-color: #241B02;
}

.pegination-right-arrow {
    background-color: #747677;
    color: #fff !important;
    border: 1px solid #DFE3E8;
}

/* pagination-sec end */
/* product-page-end */

/* our benefits start */
.local-seo-bannr-right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.local-seo-banner-para {
    width: 50%;
    display: flex;
    gap: 24px;
    padding: 30px 25px 30px 35px;
}

.local-seo-text h3 {
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 17px;
    line-height: 18px;
    padding-bottom: 9px;
}

.local-seo-text p {
    font-size: 15px;
    line-height: 18px;
    color: #5F5D5D;
    padding-bottom: 11px;
}

.local-seo-text a {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.our-benifits .row {
    align-items: center;
}

.our-benifits-inner {
    display: flex;
    border-top: 1px solid #DDDDDD
}

.local-seo-first-box {
    border-right: 1px solid #DDDDDD;
}

/* our benefits end */

/* our-latest */

.our-latest {
    padding: 90px 0;
}

.our-latest h2 {
    font-weight: 600;
    font-size: 60px;
    line-height: 42px;
    text-align: center;
    color: var(--black);
    padding-bottom: 50px;
}

.our-latest-box-text h4 {
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: var(--black);
    padding-bottom: 12px;
}

.our-latest-box-text {
    padding: 35px 0 14px;
    width: 50%;
    border-top: 3px solid #F80B28;
}

.our-latest-box-img {
    width: 50%;
}

.our-latest-box {
    display: flex;
    gap: 20px;
}

.our-latest-box-text span {
    display: block;
    font-size: 13px;
    line-height: 18px;
    color: #2D2D2D;
}

.our-latest-box-text p {
    font-family: var(--playfair);
    font-size: 16px;
    line-height: 21px;
    padding-top: 15px;
}

.our-latest-box-text p a {
    width: 20px;
    height: 20px;
    background-color: #F80B28;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
}

.our-latest-btn a {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: var(--white);
    background-color: #F80B28;
    padding: 17px 49px;
    border-radius: 100px;
    border: 1px solid #F80B28;
    margin-top: 40px;
}

.our-latest-btn a:hover {
    color: #F80B28;
    background-color: transparent;
}

.connect-sec {
    padding-bottom: 50px;
}

.connect-box-text h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 18px;
    color: var(--black);
    padding-bottom: 5px;
}

.connect-box-text p,
.connect-box-text a {
    font-size: 14px;
    line-height: 18px;
    color: #484646;
}

.connect-box {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
}

.connect-row {
    --bs-gutter-y: 1.5rem;
}



/* 03-04-26 */

/* blog sec start */
.blog-sec {
    padding: 65px 0 80px;
}

.blog-inner-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-row {
    --bs-gutter-x: 31px;
}

.blog-left-inner-row {
    --bs-gutter-x: 33px;
    --bs-gutter-y: 37px;
}

.blog-inner-content-box {
    padding: 30px 0 22px 5px;
}

.blog-inner-content-box span {
    font-size: 14px;
    font-weight: 400;
    line-height: 1em;
    color: #FF0000;
}

.blog-inner-content-box h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: 0;
    color: var(--black);
    padding: 5px 0 13px;
}

.blog-inner-content-box p {
    line-height: 24px;
    color: var(--black);
    line-height: 1.5em;
}

.blog-input-div {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin: 0 auto;
}

.blog-right-search-box,
.blog-right-search-box .blog-input-div {
    width: 100%;
}

.blog-right-search-box .blog-input-div {
    border: 1px solid #EEEEEE;
}

.blog-right-search-box .blog-input-div input {
    width: 100%;
    height: 39px;
    background-color: #FAFAFA;
    border: #EEEEEE 1px solid;
    outline: none;
    font-size: 14px;
    padding: 4px 14px;
    padding-right: 42px;
    border-radius: 0 4px 4px 0;
}

.blog-right-search-box .blog-input-div input::placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: 0;
    color: #808080;
}

.blog-right-search-box .blog-input-div .search-input-icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 36px;
    /* height: 100%; */
    background: #2D2C4A;
    border: 0;
    border-radius: 0;
    padding: 8px 10px;
}

.blog-right-search-box .blog-input-div .search-input-icon i {
    color: var(--white);
}

.blog-right-inner-row {
    --bs-gutter-y: 30px;
}

.blog-popular-post-row {
    --bs-gutter-y: 17px;
    padding: 27px 0 0;
}

.blog-right-inner-heading h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0;
    color: var(--black);
    padding: 0 0 16px;
    border-bottom: 1px solid #DEE0EA;
}

.blog-popular-inner-box {
    display: flex;
    align-items: center;
    gap: 21px;
}

.blog-popular-img-box {
    width: 40%;
}

.blog-popular-content-box {
    width: 60%;
    color: var(--black);
}

.blog-popular-content-box span {
    font-size: 14px;
    line-height: 1em;
    font-weight: 400;
}

.blog-popular-content-box p {
    font-size: 17px;
    line-height: 1em;
    font-weight: 500;
    padding-top: 5px;
}

.blog-right-inner-content-box {
    padding: 15px 0 0;
}

.blog-right-inner-content-box ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* blog-dropdown */

.blog-right-inner-box .blog-dropdown {
    width: 100%;
}

.blog-right-inner-box .dropdown-toggle {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
}

.blog-right-inner-box .dropdown-toggle i {
    display: inline-block;
    margin-right: 9px;
    transition: transform 0.3s ease;
    font-size: 14px;
}

.blog-right-inner-box .blog-dropdown.open i {
    transform: rotate(90deg);
}

.blog-right-inner-box .dropdown-toggle .label {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.563rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.blog-right-inner-box .dropdown-content {
    display: none;
    padding-left: 24px;
    margin-top: 4px;
}

.blog-right-inner-box .dropdown-content a {
    font-size: 16px;
    margin: 4px 0;
    cursor: pointer;
    color: var(--black);
    display: block;
}

.blog-right-inner-box .blog-dropdown-content a:hover {
    color: #FF0000;
}

.blog-right-inner-box .blog-dropdown.open .dropdown-content {
    display: block;
}

.blog-right-inner-box .dropdown-toggle::after {
    display: none;
}



.blog-tag-row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
    padding: 21px 0 0;
}

.blog-tag-box {
    width: 100%;
    height: 100%;
    background-color: #F9F9F9;
    border: 1px solid #C9C4C4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 11px 0;
}

.blog-tag-box p {
    line-height: 1em;
    color: var(--black);
    transition: 0.3s ease-in-out;
}

.blog-tag-box:hover p {
    color: #FF0000;
}

.blog-details-box-info p {
    padding-bottom: 20px;
}

.blog-details-box-info p:last-child {
    padding: 0;
}

.blog-details-box-info.blog-inner-content-box {
    padding-bottom: 0;
}

.blog-details-left-inner-row {
    --bs-gutter-y: 45px;
}

.blog-details-left-bottom-inner-row {
    --bs-gutter-x: 17px;
}

.read-more-btn {
    background-color: #E21818;
    color: var(--white);
    padding: 18px 40px;
    border: 1px solid #E21818;
}

.read-more-btn:hover {
    background-color: transparent;
    border: 1px solid #E21818;
    color: #E21818;
}

/* product details start*/

.product-details-upper-sub-link-text-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-details-upper-sub-link-text-box a,
.product-details-upper-sub-link-text-box p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.06em;
    color: var(--black);
    position: relative;
}

.product-details-upper-sub-link-text-box a {
    padding-right: 15px;
}

.product-details-upper-sub-link-text-box a::after {
    content: "/";
    position: absolute;
    right: 3px;
}

.product-details-upper-sub-link {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
    margin-bottom: 34px;
}

.product-detl-section {
    margin: 39px 0 80px;
}

.product-detl-wrap {
    --bs-gutter-x: 45px;
}

.product-details-upper-sub-link-text-box a:hover {
    color: var(--purple);
}

.product-learg-slide {
    max-width: 400px;
    margin: 0 auto;
}

.product-image-items>img {
    width: 100%;
    height: 484px;
    object-fit: contain;
    padding: 48px 75px;
}

.product-small-slide {
    max-width: 400px;
    margin: 0 auto;
    padding: 16px 0 0;
}

.js-product-thumb-slider {
    margin: 0 -15px;
}

.product-thumb-col {
    height: 100px;
    cursor: pointer;
    border: 1px solid #E3E3E3;
    padding: 5px;
    margin: 0 15px;
}

.product-thumb-col.slick-current {
    opacity: 1;
}

.product-thumb-col img {
    width: 100%;
    object-fit: contain;
}

.product-thumb-col-img-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-all-details.travertine-box-img-text h3 {
    font-family: var(--poppins);
    font-size: 22px;
    text-transform: uppercase;
    padding: 0;

    &:hover {
        color: var(--black);
    }
}

.details-para {
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: 0.02em;
    color: #525050;
}

.product-details-rating {
    margin: 12px 0 26px;
}

.product-detailed-price {
    font-size: 20px;
    line-height: 1em;
    letter-spacing: 0.12em;
    color: #222222;
    margin-top: 15px;
}

.product-detailed-price del {
    font-size: 16px;
    text-decoration: line-through;
    color: #878787;
}

.safe-checkout {
    margin: 20px 0;
}

.safe-checkout p {
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    color: #525050;
}

.quantity-box p {
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

.quantity-cart-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.quantity {
    width: 95px;
    height: 28px;
    display: flex;
    overflow: hidden;
}

.quantity button {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0.06em;
    width: 30%;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
    padding: 0;
}

.quantity button:hover {
    background-color: #2D2C4A;
    color: var(--white);
}

.input-box {
    border: 1px solid var(--black);
    border-radius: 0;
    width: 40%;
    height: 28px;
    text-align: center;
    padding: 9px 5px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0.06em;
    outline: none;
}

/* Hide the number input spin buttons */
.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-box[type="number"] {
    -moz-appearance: textfield;
}

.cart-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 26px 0 30px;
}

.cart-buttons>div {
    height: 100%;
}

.cart-buttons a {
    font-size: 14px;
    line-height: 1;
    line-height: 1em;
    letter-spacing: 0.12em;
    color: var(--white);
    background-color: #2D2C4A;
    border: 1px solid #2D2C4A;
    padding: 14px 53px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.buy-now-btn a {
    padding: 16px 44px;
}

.add-cart_btn a:hover,
.buy-now-btn a {
    color: var(--black);
    border-color: var(--black);
    background: var(--white);
}

.add-cart-img-box i {
    font-size: 18px;
    transition: all .3s ease-in-out;
}

.add-cart_btn a:hover i {
    color: var(--black);
}

.buy-now-btn a:hover {
    color: #ffffff;
    background: #2D2C4A;
    border: 1px solid #2D2C4A;
}

.product-all-details-sub-section h6 {
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 16px;
    line-height: 1em;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.product-details-table-head {
    padding: 18px 0;
    border-top: 1px solid #eeeeee;
}

.product-details-table-body {
    width: 50%;
}

.product-details-table-body p,
.product-details-table-head p {
    font-size: 14px;
    margin: 0;
    line-height: 1.188rem;
    color: #525050;
}

.product-details-table-body .bold-p {
    color: #262525;
}

.more-details {
    text-align: right;
}

.more-details a {
    font-size: 14px;
    line-height: 1em;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    text-decoration: underline;
    color: #303030;
}

.more-details a:hover {
    color: #2D2C4A;
}

.more-details.product-details-table-head {
    padding: 15px 0 8px;
}

.product-all-details-sub-section ul {
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    padding-bottom: 23px;
}

.product-all-details-sub-section ul li {
    padding: 15px 0 0;
}

.product-all-details-sub-section ul li p {
    line-height: 1.3em;
    letter-spacing: 0.06em;
}

.product-all-details-sub-section ul li p span {
    line-height: 1em;
}

.product-slider-sec {
    display: flex;
    gap: 32px;
    flex-direction: row-reverse;
}

.product-learg-slide {
    width: 80%;
    max-width: 100%;
    margin: 0;
}

.product-small-slide {
    width: 20%;
    max-width: 100%;
    padding: 0;
}

.js-product-thumb-slider .slick-track {
    display: flex;
    flex-wrap: wrap;
    align-items: normal;
    --slide-size: 100%;
    flex-direction: column;
    width: auto !important;
    transform: translate(0) !important;
    gap: 20px;
    margin-top: -20px;
}

.product-thumb-col {
    width: 100% !important;
}

.js-product-thumb-slider {
    margin: 0;
}

.js-product-thumb-slider .slick-list {
    padding: 0 !important;
}

.product-thumb-col {
    margin: 0;
}

.product-image-items>img {
    position: relative;
}

.orange-box {
    width: 60px;
    height: 30px;
    border-radius: 18px;
    background-color: #070616;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 23px;
    left: 20px;
}

.orange-box p {
    font-size: 14px;
    line-height: 1em;
    letter-spacing: 0.13em;
    color: var(--white);
}

.share-icon-box {
    width: 38px;
    height: 38px;
    color: #2C2B49;
    border: 1px solid #2D2C4A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 31px;
    right: 45px;
}

.share-icon-box>i {
    transition: all .3s ease-in-out;
}

.share-icon-box:hover {
    color: var(--red);
    border-color: var(--red);
}

.product-learg-slide .slick-initialized .slick-slide {
    margin-right: 20px;
}

.product-image-items {
    border: 1px solid #DEDEDE;
}

.js-product-thumb-slider .product-thumb-col.slick-current {
    background-color: #F2F5F0;
}

/* product-details-end */

/* 04-04-26 */

.related-blog h2 {
    text-align: start;
    padding-bottom: 36px;
    font-weight: 400;
    font-size: 42px;
    line-height: 44px;
    color: var(--black);
}

.related-blog {
    padding-bottom: 70px;
}

.inner-banner-title h2 {
    text-transform: uppercase;
}

/* contact-us-map-start */
iframe {
    width: 100%;
    height: 100%;
}

.map-sec {
    height: 322px;
    border: 7px solid #FFFFFF;
    box-shadow: 0px 4px 4px 0px #00000040;
}

/* contact-us-map-end */
/* contact us start*/
.contact-us-wrap {
    height: 100%;
}

.contact-us-form-row {
    --bs-gutter-y: 18px;
}

.contact-us-inner-row {
    --bs-gutter-x: 90px;
}

.contact-us-form-input input,
.contact-us-form-input textarea {
    width: 100%;
    height: 56px;
    background-color: #FAFAFA;
    padding: 20px 31px;
    border: 1px solid #C4C4C4;
    border-radius: 3px;
    font-family: var(--playfair);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5rem;
    color: var(--black);
}

.contact-us-form-input textarea {
    height: 166px;
}

.contact-us-form-input input::placeholder,
.contact-us-form-input textarea::placeholder,
.send-btn button {
    font-family: var(--playfair);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5rem;
    color: var(--black);
}

.send-btn button {
    padding: 15px 90px;
    border-radius: 3px;
    color: var(--white);
}

.contact-info,
.contact-address-ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-box h3 {
    max-width: 294px;
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 3px solid #E21818;
}

.contact-address-ul {
    gap: 10px;
}

.contact-address-ul li p,
.contact-info-box p {
    font-size: 19px;
}

.contact-address-ul li a {
    color: var(--black);

    &:hover {
        color: var(--red);
    }
}

.contact-social-icon a {
    width: 50px;
    height: 50px;
    border-radius: 7px;
    background-color: #caccce;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-social-icon {
    display: flex;
    gap: 10px;
}

.contact-social-icon a:hover {
    background-color: var(--red);
}

/* contact-us-end */