@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap')
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px;
    font-family: "Lato", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

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

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    border: 1px solid #a30000 !important;
    text-align: center;
    position: relative;
    overflow: hidden !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #a30000 !important;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-family: Poppins;
    font-weight: 400
}

.btn10:hover {
    border: 1px solid #a30000 !important;
    color: #fff !important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #a30000;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Hind", sans-serif;
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 20px;
}

h2 {
    font-family: "Hind", sans-serif;
    font-size: 55px;
    line-height: 30px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    font-size: 18px;
    line-height: 35px;
    font-weight: 500;
    margin: 0px;
    font-family: "Hind", sans-serif;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #333;
    padding: 0px 12px;
    font-size: 14px;
    font-weight: 600;
}

.header-right-meun-link a {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
}

.header-right-icon ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-right-icon ul li:last-child a {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.header-right-icon ul li a span {
    font-size: 14px;
}

.header-right-icon ul li a {
    padding: 0;
    font-size: 20px;
}


.menuSec .row {
    align-items: center;
}


.header-logo a img {
    width: 70%;
}


.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover, .menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #ec5ab4;
}
.menuSec li:hover>ul {
    /*display: block;*/
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}


.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

header.sticky.fixed .header-logo a img {
    width: 55%;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

header.sticky.fixed .menuSec {
    background: #fff;
    box-shadow: 0 0 7px 0 #0000004d;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.menuSec {
    padding: 5px 0;
}

.header-right-box {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
}

.header-right-icon ul li a label {
    background: #ec5ab4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    top: -8px;
    left: 15px;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

.banner_text h2 {
    font-family: "Ubuntu", sans-serif;
    color: #fff;
    font-size: 56px;
    line-height: 80px;
}

.btn-1 {
    background: #ec5ab4;
    padding: 15px 30px;
    font-family: "Hind", sans-serif;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.img-fluid {
    width: 100%;
    height: auto;
}

.banner_text p {
    margin-bottom: 30px;
}

.banner_text p {
    margin-bottom: 40px;
    width: 70%;
    line-height: 30px;
}

.banner_text {
    margin-left: 70px;
}

section.main_slider .carousel-control-next-icon {
    background-image: inherit !important;
    position: relative;
}

section.main_slider .carousel-control-next-icon:before {
    content: "\f054";
    position: absolute;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    color: #000;
    font-size: 25px;
    opacity: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

section.main_slider .carousel-control-prev {
    width: 2%;
    opacity: 1;
}

section.main_slider .carousel-control-next {
    width: 6%;
    opacity: 1;
}

section.main_slider .carousel-control-prev-icon {
    background-image: inherit !important;
    position: relative;
}

section.main_slider .carousel-control-next {
    right: 1px;
}

section.main_slider .carousel-control-prev-icon:before {
    content: "\f053";
    position: absolute;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    color: #000;
    font-size: 25px;
    opacity: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

/*banner css end*/


/* search box css */

.top-shipping ul li {
    margin-right: 15px;
}

.top-shipping ul {
    align-items: baseline !important;
}

body.search-open {
    overflow: hidden;
}

.close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: 0;
    font-size: 50px;
    font-weight: 700;
    display: block;
    cursor: pointer;
    color: black;
    padding: 1rem 1.25rem;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font: 18px;
    opacity: 1 !important;
    width: 50px;
    height: 50px;
}

.close:hover {
    background: #e21d1a;
    color: white;
    opacity: 1 !important;
    top: 2rem;
    right: 2rem;
}

.search-box.search-elem {
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #000000b0;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.search-box.search-elem .inner {
    width: 70%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.search-box.search-elem label {
    color: white;
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
}

.search-box.search-elem button.submit {
    outline: none;
    position: absolute;
    top: 0;
    right: 15px;
    height: 70px;
    color: #ffffff;
    width: 171px;
    height: 55px;
    background: #000000;
    font-family: 'Poppins';
    font-size: 22px;
    cursor: pointer;
    border: 0;
}

.top-cart ul li i {
    margin-right: 13px;
    font-size: 20px;
}

.search-box.search-elem button.submit[disabled] {
    width: 171px;
    height: 55px;
    font-size: 20px;
    color: white;
    background: linear-gradient(to top, #e70e0e 0%, #f66565 100%);
    display: inline-block;
}

.search-box.search-elem input[type=text] {
    padding: 20px;
    height: 55px;
    width: 80%;
    font-size: 32px;
    font-family: 'Poppins';
    font-weight: 300;
    border: none;
    border-bottom: solid 2px #e21d1a;
    transition: border 0.3s;
    border-radius: 0;
}

.search-box.search-elem input[type=text]:focus {
    border-bottom: solid 2px #55cd6c;
    box-shadow: none;
}

.search-box.search-elem label.placeholder {
    position: absolute;
    top: 13px;
    left: 2rem;
    font-size: 32px;
    font-weight: 300;
    font-family: 'Poppins';
    color: #999;
    transition: all 0.3s;
}

.search-box.search-elem label.placeholder.move-up {
    top: -25px;
    color: white;
    font-size: 17px;
    font-family: 'Poppins';
}

.search-box.search-elem.search-open {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.search-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem;
    padding: 0 10px;
    display: inline-block;
    color: white;
}


/* end search box css */


/*Loader Start*/


#loader-main {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background-color: #fff;
}

#loader {
    width: 100%;
    height: 100%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*Loader End*/


/*Featured Categories Start*/

.add-padding-t-b {
    padding: 80px 0;
}

.heading-one {
    color: #000;
    font-family: "Ubuntu", sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
}

.text-one {
    color: #777;
    line-height: 32px;
    width: 50%;
    margin: 0 auto;
}

.featured-categories-box:hover .featured-categories-img img {
    transform: scale(1.2);
    transition: 1.8s;
}

.featured-categories-img img {
    width: 100%;
    height: 415px;
    object-fit: cover;
    transition: 1.5s;
}

.featured-categories-img {
    overflow: hidden;
    margin-bottom: 15px;
}

.featured-categories-box h2 {
    font-size: 25px;
    color: #333;
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-categories-box p {
    font-family: "Ubuntu", sans-serif;
    font-size: 15px;
    color: #333333;
}


/*Featured Categories End*/


/*Featured Products Start*/


.featured-products-heading {
    text-align: center;
    margin-bottom: 4%;
}

.featured-products-sec {
    padding: 40px 0;
}

.featured-products-heading h2 {
    position: relative;
}




.featured-products-box {
    text-align: center;
    position: relative;
}

.featured-products-box h2 {
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 15px;
    line-height: 25px;
    height: 50px;
}

.featured-categories-silder-items h4 {
    color: #a5a5a5;
}

.featured-products-box h3 {
    font-size: 15px;
    color: #ec5ab4;
    margin-bottom: 0;
}

.featured-products-row .row {
    justify-content: center;
    margin-top: 30px;
}


.featured-products-button a {
    background: #ec5ab4;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    height: 40px;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.featured-products-button a:hover span {
    display: none;
}

.featured-products-button:hover a i {
    bottom: 15px;
    transition: 0.5s;
    display: block;
    opacity: 1;
}

.featured-products-button a i {
    position: absolute;
    bottom: -17px;
    transition: 0.5s;
    /* display: none; */
    opacity: 0;
}

.featured-products-button {
    position: absolute;
    width: 100%;
    bottom: 0px;
    opacity: 0;
    transition: 0.5s;
}

.featured-products-box:hover .featured-products-button {
    opacity: 1;
    bottom: 135px;
    transition: 0.5s;
}

.featured-products-icon-left {
    position: absolute;
    top: 15px;
    right: -10px;
    transition: 0.5s;
    opacity: 0;
}

.featured-products-icon-left ul {
    box-shadow: 0 0 5px 0 #0000002e;
    padding: 5px 15px;
    line-height: 48px;
    background: #fff;
}

.featured-products-box:hover .featured-products-icon-left {
    transition: 0.5s;
    right: 15px;
    opacity: 1;
    top: 15px;
}

.featured-products-icon-left ul li i {
    font-size: 20px;
    color: #333;
}

.featured-products-icon-left ul li i:hover {
    color: #777;
}

.featured-products-button-row {
    margin-top: 5%;
    text-align: center;
}

.featured-products-button-row a {
    padding: 10px 20px;
    border: 2px solid #020266;
    color: #020266;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-products-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.featured-products-silder .slick-active {
    opacity: 1.5;
}

.featured-products-box h4 {
    font-size: 14px;
    font-family: "Hind", sans-serif;
    margin-bottom: 2px;
}

.featured-products-silder .slick-slide {
    margin: 0px 10px;
}

.featured-products-silder .slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 1.25;
}

.featured-products-silder .slick-prev::before {
    content: "\f053";
    position: absolute;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    color: #333;
    font-size: 22px;
    opacity: 1;
    background: #fff;
}

.featured-products-silder .slick-next::before {
    content: "\f054";
    position: absolute;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    color: #333;
    font-size: 22px;
    opacity: 1;
    background: #fff;
}


/*Featured Products End*/


/*About Start*/


.about-sec {
    margin: 70px 0;
}
.about-img-two:first-child {
    margin: 0 0 40px;
}

.about-img-one, .about-img-one >img {
    height: 100% !important;!i;!;
}
.about-img-one img {
    width: 374px;
    height: 746px;
    object-fit: cover;
}

.about-img-two img {
    width: 373px;
    height: 373px;
    object-fit: cover;
}

html {
    overflow-x: hidden;
}

.about-text {
    margin-left: 50px;
    margin-right: 50px;
}


.about-text ul:before {
    content: "";
    position: absolute;
    background: #339059;
    width: 100px;
    height: 3px;
    top: -30px;
}

.about-text h2 {
    color: #000;
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-text h3 {
    font-size: 32px;
    color: #000;
    font-family: "Hind", sans-serif;
}

.about-text p {
    color: #000 !important;!i;!;
    line-height: 25px;
    font-size: 15px;
}

.about-text ul {
    margin-top: 50px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 30px;
    position: relative;
}

.about-text .btn-2 {
    padding: 12px 30px;
    font-family: "Hind", sans-serif;
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    border: 2px solid #8a8a8a;
}

.about-text .btn-1 {

    padding: 13px 30px;

}

/*About End*/



/*Furniture Magazine Start*/


.our-blogs-heading {
    text-align: center;
    margin-bottom: 2%;
}
.our-blogs-buttton-row {
    text-align: center;
    margin-top: 50px;
}
.our-blog-box-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.our-blog-box-img {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-blog-icon {
    position: absolute;
    z-index: 99999;
    left: 0;
    transition: 2s;
    display: none;
}
.our-blogs-silder .slick-active {
    opacity: 1.5;
}

.our-blog-box:hover .our-blog-icon {
    display: block;
    left: inherit;
    transition: 2s;
}


.our-blog-box:hover .our-blog-box-img img {
    transform: scale(1.1);
    transition: 0.5s;
}

.our-blog-box-img:before {
    content: "";
    position: absolute;
    background: #00000061;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.5s;
    z-index: 5;
}
.our-blog-box:hover .our-blog-box-img:before {
    opacity: 1;
    transition: 0.5s;
}
.our-blogs-heading h2 {
    margin-bottom: 0;
}
.our-blog-button {
    position: absolute;
    z-index: 5;
    top: -14px;
    right: 0;
    left: 0;
}
.our-blog-button a {
    background: #CF4A9A !important;
    padding: 8px 15px !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-family: "Hind", sans-serif;
}
.our-blogs-text {
    box-shadow: 0 0 2px 0 #00000061;
    padding: 30px 20px;
    text-align: center;
    transition: 0.5s;
    position: relative;
}
.our-blogs-silder .slick-prev:before {
    content: "\f053";
    font-weight: 900;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-size: 30px;
    color: #333 !important;
}
.our-blogs-silder .slick-prev {
    left: -45px;
}
.our-blogs-silder .slick-next:before {
    content: "\f054";
    font-weight: 900;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-size: 30px;
    color: #333 !important;
    opacity: 3;
}
.our-blogs-date {
    background: #ffff;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    top: 10px;
    left: 10px;
    z-index: 5;
}


.our-blogs-date h2 {
    font-size: 24px;
    margin-bottom: 0;
    color: #333333;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
}
.our-blogs-date h2 span {
    display: block;
    font-size: 14px;
}


.our-blog-box {
    position: relative;
}
.our-blog-box:hover .our-blogs-text {
    box-shadow: 0 0 5px 0 #000000ba;
    transition: 0.5s;
}
.our-blogs-text h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-family: "Ubuntu", sans-serif;
    color: #333;
}
.our-blogs-text ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}
.our-blogs-text ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #a4a4a4;
    text-transform: capitalize;
    font-family: "Hind", sans-serif;
}

.our-blogs-text p {
    color: #77797b;
    font-size: 14px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 15px;
    line-height: 25px;
}

.our-blogs-text a {
    font-size: 13px;
    color: #cf4a9b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 0;
    font-family: "Hind", sans-serif;
}
.our-blog-icon ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 8px;
}
.our-blog-icon ul li i {
    font-size: 12px;
    color: #fff;
}

.our-blogs-silder .slick-slide {
    margin: 10px 10px;
}
.furniture-magazine-sec {
    padding: 20px 0;
}


/*Furniture Magazine  End*/


/*Testimonials Start*/


.testimonials-sec {
    background-color: #EC5AB4;
    margin: 70px 0;
}
.testimonials-heading h3 {
    font-family: "Ubuntu", sans-serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}
.testimonials-heading p {
    font-size: 16px;
    color: #fff;
}
.testimonials-heading h2 {
    font-family: "Ubuntu", sans-serif;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
}

.testimonials-silder .slick-active {
    opacity: 1.5;
}
.testimonials-silder-items ul li img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}
.testimonials-silder-items ul {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.testimonials-silder-items p:before {
    content: "";
    position: absolute;
    background: #000;
    width: 15px;
    height: 15px;
    top: -15px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    left: 30px;
}
.testimonials-heading {
    margin-bottom: 20px;
}

.testimonials-silder .slick-next:before {
    content: "\f054";
    position: absolute;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    color: #fff;
    font-size: 22px;
    opacity: 1;
}

.testimonials-silder .slick-prev {
    left: -35px;
}

.testimonials-silder .slick-prev:before {
    content: "\f053";
    position: absolute;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    color: #fff;
    font-size: 22px;
}
.testimonials-silder-items p {
    color: #bfbfbf;
    background: #000;
    padding: 25px 25px;
    font-size: 14px;
    line-height: 25px;
    position: relative;
}
.testimonials-silder .slick-slide {
    margin: 0px 15px;
}
.testimonials-silder-items ul li i {
    color: #ecba2d;
    font-size: 14px;
}


/*Testimonials End*/




 /*Frequently Asked Questions Start*/

section.faqs-main {
    padding: 80px 0 100px;
}
.faq-heading p {
    width: 80%;
    margin: 0 auto;
}
.gorilla-content .accordion-button.collapsed {
    padding: 18px 18px 18px 45px;
    background-color: #fff;
    color: #333333;
    font-size: 15px;
    line-height: 30px;
    border-radius: 0px !important;
    font-weight: 600;
    text-transform: capitalize;
    font-family: "Hind", sans-serif;
}
.gorilla-content .accordion-button {
    color: #333;
     font-size: 15px;
    line-height: 30px;
      font-weight: 600;
    border-radius: 0px !important;
    text-transform: capitalize;
    background: no-repeat;
    font-family: 'Montserrat', sans-serif;
    padding: 18px 18px 18px 45px;
}
.accordion-body.gorrila-page-txt p {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 10px;
    color: #777;
}
.faq-heading h2 {
    color: #000;
}




.gorilla-content .gorrila-page-txt .color-red {
  color: #A60000;
  font-weight: 500;
  margin-bottom: 7px;
  margin-top: 30px;
  }

.gorrila-page-txt ul {
    list-style: disc;
}
.gorrila-page-txt ul li{
   color: #000000;
   font-size: 14px;
   line-height: 23px;
   font-family: 'Roboto', sans-serif;
   font-weight: 400;
   margin-bottom: 15px;
   margin-left: 15px;
}
.gorrila-page-txt ul li::marker {
  color: #000;
}

.accordion-body.gorrila-page-txt {
    padding: 0px 18px 18px 45px;
    background: #ffffff;
    border: unset !important;
    border-top: none;
}

.accordion-body.gorrila-page-txt {
    padding: 0px 20px 20px;
    background: #ffffff;
    border: unset !important;
    border-top: none;
}

.gorilla-content .accordion-item {
    margin-bottom: 5px;
    border: inherit;
    box-shadow: 0 0 7px 0 #000000c4;
    border-top: 1px solid #ec5ab4;
}
.accordion-button::after {
    content: "" !important;
    position: absolute !important;
    background-image: url(../images/plue-icon.png) !important;
    width: 20px;
    height: 20px;
    background-size: cover;
    left: 15px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(0%) saturate(0%) hue-rotate(217deg) brightness(103%) contrast(92%);
}   
.accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus-icon.png) !important;
}
.gorilla-content  .accordion-button:not(.collapsed){
  box-shadow: none;
  /* border: 1px solid; */
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.accordion-collapse.collapse {
  /* border: 1px solid #A60000; */
  border-top: 0;
  border-radius: 0 0 10px 10px;
  /* margin-bottom: 30px; */
}


.gorilla-content  button:focus:not(:focus-visible){
  box-shadow: none;
}

.gorilla-content .accordion-button::after{
  content: '\f067';
  font-weight: 900;
  font-family: 'Font Awesome 5 free';
  background-image: none;

}

.accordion-button:not(.collapsed)::after{
  content: '\f068';
  font-weight: 900;
  font-family: 'Font Awesome 5 free';
}
.address {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
section.faqs-main p {
    font-weight: 500;
    line-height: 28px;
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}


.faq-heading.text-center {
    margin-bottom: 30px;
}
.faq-heading.text-center h3 span {
    display: block;
}
.faq-heading.text-center h3 {
    line-height: 60px;
}

.frequently-asked-questions-row .row {
    justify-content: center;
}

 /*Frequently Asked Questions End*/


/*Footer Start*/

 .footer-sec {
    background: #d1d4d3;
}
.row.ftr-back {
    padding-top: 50px;
}
.footer-logo p {
    font-size: 14px;
    line-height: 22px;
    color: #787878;
}
.footer-sec h2 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}
.footer-recent-posts ul li h2 {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
}
.footer-recent-posts ul li p {
    font-size: 14px;
    color: #bbb;
}
.footer-recent-posts ul {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #bbbebd;
}
ul.boader-none {
    border-bottom: none;
}
.footer-recent-posts ul li img {
    width: 200px;
    height: 90px;
    object-fit: cover;
}
.footer-quick-links ul li a {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    font-family: "Hind", sans-serif;
}
.footer-quick-links ul {
    line-height: 25px;
}
.footer-quick-links {
    margin-left: 10px;
}
li.active a {
    color: #333 !important;
    font-weight: 800 !important;
}
.footer-copy-right {
    border-top: 1px solid #bbbebd;
    margin-top: 80px;
    padding: 15px 0;
    text-align: center;
}
.footer-copy-right p {
    color: #777;
    font-size: 14px;
    font-family: "Hind", sans-serif;
}
.footer-copy-right p a {
    color: #242424;
}

/*Footer End*/


/* Inner About Start*/

.inner-banner-sec {
    background: url(https://www.mrporter.com/cms/ycm/resource/blob/782326/62f16fd09ca78560e9f636b16f07c348/de8bbd64-3cdf-49ca-9ca3-4d342ae3adcd-data.jpg);
    height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position-y: -100px;
    background-color: #000000a6;
    background-blend-mode: overlay;
}

.inner-banner-heading h2 {
    font-family: "Ubuntu", sans-serif;
    font-size: 68px;
    color: #fff;
}
.inner-banner-heading ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 0;
    margin-top: 30px;
}

.inner-banner-heading ul li {
    font-family: "Hind", sans-serif;
    color: #fff;
}
.inner-banner-heading ul li a {
    font-family: "Hind", sans-serif;
    color: #fff;
    text-transform: uppercase;
}


/* Inner About End*/

/*Inner Contact Start*/


.inner-contact-link {
    text-align: center;
}
.inner-contact-link ul li i {
    font-size: 50px;
    color: #ec5ab4;
    margin-bottom: 20px;
}
.inner-contact-link ul li a {
    font-size: 17px;
    color: #242424;
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
}
.inner-contact-faq h2 {
    color: #242424;
    font-size: 24px;
    font-family: "Ubuntu", sans-serif;
    border-bottom: 2px solid #e4e4e4;
    padding-bottom: 30px;
}
.inner-contact-row .inner-contact-faq h2 {
    
    padding-bottom: inherit;
}
.inner-contact-row .gorilla-content .accordion-button.collapsed {
    padding: 12px 12px 12px 45px;
   }
   .inner-contact-row .accordion-body.gorrila-page-txt {
    padding: 10px 20px 10px;
    
} 
.inner-contact-row .gorilla-content .accordion-button {
   
    padding: 12px 12px 12px 45px;
}
.inner-contact-row .gorilla-content .accordion-item {
    margin-bottom: 10px;
    
}
.inner-contact-faq-heading h2 {
    padding-bottom: 30px !important;
    margin-bottom: 30px;
}
.inner-contact-faq {
    padding: 20px 0;
    border-right: 2px solid #e8e8e8;
    padding-right: 50px;
}
.inner-contact-form h2 {
    font-size: 14px;
    color: #a5a5a5;
    font-family: "Ubuntu", sans-serif;
    margin-bottom: 15px;
}

.inner-contact-form label {
    color: #242424;
    font-size: 16px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    margin-bottom: 5px;
}
.inner-contact-input {
    margin-bottom: 25px;
}
.inner-contact-input input {
    width: 100%;
    height: 50px;
    border: 1px solid #e5e5e5;
    padding: 0 10px;
}
.inner-contact-input textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    padding: 10px 10px;
    resize: none;
    height: 170px;
}
.inner-contact-submit button {
    padding: 15px 20px;
    font-size: 13px;
    background-color: #F3F3F3;
    color: #3E3E3E;
    border: none;
    font-weight: 700;
}
.inner-contact-form {
    margin-left: 20px;
}
.inner-contact-form h3 {
    color: #242424;
    font-size: 24px;
    font-family: "Ubuntu", sans-serif;
}

/*Inner Contact End*/

/*My Account Start*/

.my-account-box p {
    color: #777;
    line-height: 25px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e4e4e4;
}
.my-account-box label {
    color: #242424;
    font-size: 16px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
}
.my-account-box input {
    width: 100%;
    height: 50px;
    margin-bottom: 25px;
    background: #e8f0fe;
    border: 1px solid #d0d8e4;
    padding: 0 10px;
}
.my-account-box button {
    background: #ec5ab4;
    width: 100%;
    height: 50px;
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-family: "Hind", sans-serif;
    font-weight: 500;
}

/*My Account End*/


/*Inner Shop Start*/

.inner-shop-sec {
    padding: 80px 0;
}

.inner-shop-products-categories h4 {
    font-size: 18px;
    color: #333333;
    font-weight: 500;
    font-family: 'Montserrat';
}

.filter-by-price h4 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 35px;
    font-weight: 500;
    font-family: "Ubuntu", sans-serif;
}

.filter-by-price ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
}

.line-1:before {
    content: "";
    position: absolute;
    background: #ec5ab4;
    width: 4px;
    height: 20px;
    top: -8px;
    left: 0px;
}

.line-1:after {
    content: "";
    position: absolute;
    background: #eda416;
    width: 4px;
    height: 20px;
    right: 0;
    top: -8px;
}

.filter-by-price ul li {
    font-size: 18px;
    color: #777777;
    font-family: "Ubuntu", sans-serif;
}

.filter-by-price ul li span {
    color: #000;
    font-weight: 600;
    padding: 0 5px;
}

.filter-by-price ul li button {
    background: #f7f7f7;
    border: none;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.line-1:after {
    content: "";
    position: absolute;
    background: #ec5ab4;
    width: 4px;
    height: 20px;
}

.line-1 {
    background: #ec5ab4;
    width: 100%;
    height: 3px;
    position: relative;
}




.inner-shop-products-categories ul li a {
    font-size: 15px;
    color: #333333;
    font-weight: 500;
}

.inner-shop-products-categories {
    border-bottom: 1px solid #e4e4e4;
}

.inner-shop-products-categories ul {
    line-height: 40px;
}

.filter-by-price {
    margin-top: 35px;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 25px;
}

.stock-status-box {
    margin-top: 40px;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 25px;
}
.filter-by-brand {
    margin-top: 40px;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 25px;
}
.filter-by-brand h2 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: "Ubuntu", sans-serif;
}
.filter-by-brand span {
    font-size: 30px;
    font-weight: 700;
}
.stock-status-box h4 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 35px;
    font-weight: 500;
    font-family: "Ubuntu", sans-serif;
}

.shop-top-row-link ul {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}


.shop-top-row-link ul li a {
    font-size: 14px;
    color: #555555;
    font-weight: 600;
    font-family: "Ubuntu", sans-serif;
}

li.chg a {
    color: #000 !important;
    font-weight: 400 !important;
}

.shop-top-row-show ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.shop-top-row-icon ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
}

.shop-next-page-link ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 20px;
    justify-content: center;
}

.shop-next-page-link {
    margin-top: 50px;
}

li.page-open a {
    background: #ec5ab4;
}

.shop-next-page-link ul li a {

    padding: 10px 15px;
    color: #000;
    font-weight: 700;
}

.shop-top-row-show ul li {
    font-size: 15px;
    font-weight: 500;
    font-family: "Ubuntu", sans-serif;
}

.shop-top-row-select select {
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
    color: #000;
    font-weight: 600;
    font-family: "Ubuntu", sans-serif;
}
.filter-by-color ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Ubuntu", sans-serif;
}
.filter-by-color ul li label {
    background: #ec5ab4;
    padding: 0px 15px;
    color: #fff;
    font-family: "Ubuntu", sans-serif;
    border-radius: 40px;
}
.filter-by-color ul li p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}
.filter-by-color ul {height: auto;display: flex;flex-flow: wrap;gap: 5px;}


.filter-by-color ul li p span {
    
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.filter-by-color {
    margin-top: 40px;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 25px;
}
.filter-by-color h2 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: "Ubuntu", sans-serif;
}

.shop-top-row {
    margin-bottom: 30px;
}

.shop-top-row-icon ul li svg {
    width: 22px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(21%) saturate(18%) hue-rotate(322deg) brightness(99%) contrast(89%);
}

.shop-top-row .row {
    align-items: center;
}

.shop-top-row-link ul li {
    font-size: 14px;
    color: #555555;
    font-weight: 600;
}


.stock-status-box ul li label {
    font-size: 15px;
    color: #333333;
    font-weight: 500;
}

.stock-status-box ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stock-status-box ul {
    line-height: 40px;
}

.stock-status-box ul li input {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
}

.stock-status-box ul{
    margin: 0;
}
.stock-status-box ul li{
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgba(129,129,129,0.2);
    margin: 10px 0 0 0;
}
.stock-status-box ul li .left_pro{
    width: 25%;
    display: inline-block;
    vertical-align: middle;
}
.stock-status-box ul li .left_pro img{}
.stock-status-box ul li .right_pro{
    width: 40%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 20px;
}
.stock-status-box ul li .right_pro p {
    margin: 0;
    color: #000;
    font-family: "Ubuntu", sans-serif;
    line-height: 15px;
}
.right_pro i {
    color: #eabe12;
    font-size: 13px;
}
.stock-status-box.chg ul li {
    border-bottom: 1px solid #e4e4e4 !important;
    padding-bottom: 15px !important;
    margin-top: 20px !important;
}
.stock-status-box.chg {
    border-bottom: none;
}
.stock-status-box ul li .right_pro span {
    color: #ec5ab4;
    font-family: "Ubuntu", sans-serif;
}

.inner-shop-box-row .main_cc_bx{  }
.inner-shop-box-row .main_cc_bx p{padding: 20px;background: #efa03b;color: #fff;font-size: 17px;width: 90%;}
.inner-shop-box-row .main_cc_bx p i{font-weight: 300;margin: 0 10px 0 0;}

.inner-shop-box-row .main_cc_bx .input_wrp{width: 90%;border: 2px solid rgba(129,129,129,0.2);display: flex;align-items: center;justify-content: space-between;padding: 10px;}
.inner-shop-box-row .main_cc_bx .input_wrp input{border: none;}
.inner-shop-box-row .main_cc_bx .input_wrp i{display: inline-block;font-size: 18px;color: #dbd8d8;}

.stock-status-box h2 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: "Ubuntu", sans-serif;
}

.stock-status-box ul li {
    padding: 0;
    border-bottom: inherit;
    margin: 0px 0 0 0;
}


/*Inner Shop End*/


/*Contact End*/

/*Check Out Start*/
.banner-text.chg ul li h2 {
    color: #b8bbc6;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 0;
    transition: 0.5s;
}
.banner-text.chg ul li i {
    font-size: 30px;
    color: #aeacbd;
}
.banner-text.chg ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}
.banner-text.chg ul li h2:hover {
    color: #fff;
    transition: 0.5s;
}
.checkout-coupon h2 {
    font-size: 15px;
    margin-bottom: 0;
    color: #242424;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-family: "Hind", sans-serif;
}
.checkout-coupon-form {
    border: 2px dashed #ddd;
    margin-top: 25px;
    text-align: center;
    padding: 40px;
}
.checkout-coupon h2 a {
    margin-left: 10px;
    color: #ec5ab4;
    font-weight: 700;
    text-decoration: underline;
}
.checkout-coupon-form h2 {
    color: #849191;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 30px;
}
.checkout-coupon-form ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.checkout-coupon-form ul li input {
    width: 265px;
    height: 50px;
    padding: 0 10px;
    border: 2px solid #e6e6e6;
}
.checkout-coupon-form ul li input::placeholder {
    color: #8c9a98;
    font-size: 14px;
    font-family: Montserrat, sans-serif;
}
.checkout-coupon-form ul li button {
    width: 150px;
    height: 50px;
    background: #ec5fb6;
    border: none;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 500;
}
.checkout-main {
    margin-top: 5%;
}
.billing-details-form h2 {
    font-size: 30px;
    color: #242424;
    font-weight: 400;
    font-family: "Ubuntu", sans-serif;
    margin-bottom: 35px;
}
.billing-details-form label {
    font-size: 16px;
    color: #242424;
    margin-bottom: 5px;
    font-family: "Hind", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
}
.billing-details-form input,
.billing-details-form select {
    height: 50px;
    padding: 0 10px;
    margin-bottom: 4%;
    border: 2px solid #e6e6e6;
    width: 100%;
}
.billing-details-form input {
    color: #000;
}
.checkout-main label span {
    color: #e01020;
}
.billing-details-form input::placeholder {
    color: #8c9a98;
    font-size: 14px;
    font-family: Montserrat, sans-serif;
}
.billing-details-form select {
    color: #8c9a98;
    font-size: 14px;
    font-family: Montserrat, sans-serif;
}
.billing-details-form textarea {
    width: 100%;
    height: 200px;
    padding: 15px 10px;
    border: 2px solid #e6e6e6;
    color: #000;
}
.billing-details-form textarea::placeholder {
    color: #8c9a98;
    font-size: 14px;
    font-family: Montserrat, sans-serif;
}
.your-order-box h2 {
    font-size: 30px;
    color: #242424;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}
.your-order-box ul.your-order li h2 {
    font-size: 18px;
    margin-bottom: 0;
}
.your-order-box {
    padding: 30px;
    background-color: #f8f8f8;
}
.your-order-box ul li {
    display: flex;
    align-content: center;
    justify-content: space-between;
    border-bottom: 2px solid #efefef;
    padding: 15px 0;
    font-family: "Hind", sans-serif;
}
.your-order-box li.no-padding {
    padding: 18px 0 0 0 !important;
    border: none !important;
}
.your-order-box ul li span {
    color: #84868d;
    font-size: 16px;
}
.your-order-box ul li h3 {
    font-size: 16px;
    margin-bottom: 0;
}
.your-order-box h4 {
    margin-bottom: 0;
    font-size: 22px;
    color: #020266;
}
.your-order-box ul.assistance {
    background: #e0b252;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    margin-bottom: 20px;
}
.your-order-box ul.assistance li {
    border: none;
}
.your-order-box p {
    border-top: 1px solid #e6e6e6;
    padding-top: 18px;
    line-height: 25px;
    color: #77777b;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    font-size: 15px;
}
.your-order-box p a {
    color: #333;
    font-weight: 700;
}
.your-order-box button {
    width: 100%;
    height: 55px;
    font-size: 16px;
    background: #ec5ab4;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Hind", sans-serif;
    border: none;
}
ul.assistance li h2 {
    border: 2px solid #fff;
    font-size: 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
}
ul.your-order {
    background-color: #fff;
    padding: 20px 20px;
}

.your-order-box ul li p {
    color: #fff;
    line-height: 23px;
    margin-bottom: 0;
    padding-top: 0;
    border: none;
}
.checkout-coupon-form.faq__panel {
    display: none;
}
.checkout-coupon-form.faq__panel.faq__panel_active {
    display: block;
}

/*Check Out End*/


/* Cart Start */


.add-to-cart a {
    font-size: 19px;

    display: block;

    text-align: center;

    padding-top: 9px;

    color: #333333;

    font-weight: 500;

    text-decoration: none;

    font-family: "cereM";
}
.add-to-cart h4 {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 0;
    text-align: center;
    font-family: "Ubuntu", sans-serif;
}



.add-to-cart .table > tbody > tr > td,
.add-to-cart .table > tbody > tr > th,
.add-to-cart .table > tfoot > tr > td,
.add-to-cart .table > tfoot > tr > th,
.add-to-cart .table > thead > tr > td,
.add-to-cart .table > thead > tr > th {
    vertical-align: middle;
}

.total-section {
    border: none;

    padding: 27px 40px;

    border: 1px solid #00000024;
}

.total-section ul {
    font-family: "Poppins";

    list-style: none;

    margin-bottom: 0;
}

.total-section li {
    font-size: 24px;

    padding-bottom: 30px;

    color: #333333;

    font-family: "cereM";

    font-weight: 400;
}

li.color-change {
    color: #000;

    text-transform: capitalize;

    font-weight: 400;

    font-size: 26.96px;

    text-transform: uppercase;

    font-family: "cereM";
}

.total-section li.color-change span {
    font-weight: 400;

    font-size: 26.96px;

    color: #000;

    font-family: "cereM";
}

.total-section li span {
    float: right;
}

.ship-estimate {
    padding: 20px 40px;

    border: 1px solid #00000029;

    margin-top: 25px;
}

.ship-estimate li {
    color: #000;

    font-size: 27px;

    margin-bottom: 18px;

    font-weight: 500;

    font-family: "minM";
}

.ship-estimate ul {
    margin-top: 20px;

    margin-bottom: 25px;

    font-family: "Poppins";

    list-style: none;
}

.ship-estimate .grey-style {
    color: #333333;

    font-size: 20px;

    font-family: "cereM";

    font-weight: 500;
}

.proceed a {
    color: #000;

    text-align: left;

    font-size: 20px;

    text-transform: uppercase;

    font-weight: 500;

    /* background: #000000; */

    font-family: "cereM";
}

.proceed .checkout-btn {
    padding: 15px;

    width: 100%;

    font-size: 20px;

    margin-top: 4px;

    border-radius: 0px;

    text-align: center;

    color: #ffffff;

    text-transform: uppercase;

    background: #fb2b2b;

    font-family: "cereR";
}

.or-amazon {
    margin-top: 50px;

    position: relative;

    border: 2px solid #cecece;

    /* top: 25px; */

    padding: 30px 50px;

    border-radius: 5px;

    background: #fff;
}

.or-amazon p {
    font-size: 17px;

    position: absolute;

    background: #f3f3f3;

    top: -18px;

    left: 85px;

    padding: 3px 20px;

    color: #333333;

    display: block;

    text-transform: uppercase;

    border: 2px solid #cecece;

    font-family: "cereR";
}

.or-amazon a {
    text-decoration: none;

    text-align: center;
}

.product-img {
    display: inline-block;

    width: 100%;

    padding: 10px 5px;

    border-radius: 10px;
}

.product-img img {
    width: 100%;
}

.table > :not(:last-child) > :last-child > * {
    font-size: 20px;
    font-weight: 600;
    padding: 16px 9px;
    text-transform: uppercase;
    text-align: center;
    font-family: "Ubuntu", sans-serif;
}
.add-to-cart-bottom-sec {
    margin-top: 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-totals-box h2 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    font-family: "Ubuntu", sans-serif;
}
.cart-totals-box ul li h4 {
    font-size: 20px;
    font-family: Montserrat, sans-serif;
    color: #242424;
    font-weight: 600;
}

.cart-totals-box ul li h5 {
    font-family: Montserrat, sans-serif;
    color: #ec5ab4;
    font-weight: 600;
}

.add-to-cart-button a {
    background: #f7f7f7;
    font-size: 15px;
    width: 180px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-family: "Ubuntu", sans-serif;
}
.cart-totals-box a {
    background: #ec5ab4;
    padding: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-family: "Ubuntu", sans-serif;
}
.cart-totals-box ul li h2 {
    font-size: 14px;
    margin-bottom: 0;
    text-transform: capitalize;
}

.cart-totals-box ul li h3 {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

.cart-totals-box ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e6e6e6;
    font-family: "Ubuntu", sans-serif;
}

.cart-totals-box li.chg {
    padding: 17px 0 0 0 !important;
    border: none !important;
}
.add-to-cart-up-date a {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    font-family: "Ubuntu", sans-serif;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    padding: 0;
    text-transform: uppercase;
    font-weight: 600;
}
.cart-totals-box {
    border: 3px solid #efefef;
    padding: 25px 25px;
    margin-left: 10px;
}
thead,
tbody,
tfoot,
tr,
td,
th {
    border-bottom: 1px solid #efefef !important;
}

.table-space h3 {
    font-weight: 500;

    margin-bottom: 0px;

    font-size: 18px;

    line-height: 30px;

    color: #333333;

   font-family: "Ubuntu", sans-serif;
}

.space .row {
    align-items: center;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: #c2c2c2;

    border-style: solid;

    border-width: 0;
}

th.qty {
    text-align: center;
}

a.remove {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    color: #4c5152;
}

.table-space h6 {
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    font-family: "Ubuntu", sans-serif;
    width: 90%;
}
.add-to-cart-bottom-input ul li button {
    width: 170px;
    height: 50px;
    background: #ec5ab4;
    color: #fff;
    text-transform: uppercase;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    border: none;
}
.add-to-cart-bottom-input ul {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.add-to-cart-bottom-input ul li input {
    border: 2px solid #e6e6e6;
    width: 270px;
    height: 50px;
    padding: 0 20px;
}
/* skin 2 */
.skin-2 .num-in {
    background: #ffffff;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    height: 41px;
    width: 160px;
    float: left;
    border: 1px solid #cfcfcf;
}

.skin-2 .num-in span {
    width: 30%;
    display: block;
    height: 40px;
    float: left;
    position: relative;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: "";
    position: absolute;
    background-color: #667780;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}
ul.quantity-button {
    gap: 20px !important;
}
.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}
.skin-2 .num-in span:hover {
    background: #ec5ab4;
    color: #000;
}
.skin-2 .num-in input {
    float: left;
    width: 40%;
    height: 40px;
    text-align: center;
    border: 1px solid #cfcfcf;
}

/* / skin 2 */

/* Cart End */

/*Cart Sider Bar start*/



.cart-side-bar {
    background: white;
    top: 0;
}


.cart-side-bar {
    width: 390px;
    position: fixed;
    height: 100vh;
    z-index: 9999;
    background: white;
    right: 0;
    top: 0;
}

.cart-side-bar {
    width: 430px;
    position: fixed;
    height: 100vh !important;
    z-index: 9999;
    background: white;
    top: 0;
}

.cart-side-nav-all-content {
    padding: 20px;
}

.cart-side-nav-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.cart-side-nav-heading h1 {
    line-height: 28px;
    font-size: 20px;
    color: #2d2a2a;
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
}

a.close-btn-cart-nav {
    font-size: 14px;
    text-transform: uppercase;
    color: black;
   font-family: "Ubuntu", sans-serif;
}

.close-btn-cart-nav .fa.fa-times {
    margin-left: 5px;
}


.side-nav-content {
    text-align: center;
    height: 53vh;
    margin-top: 50px;
}

side-nav-content i {
    text-align: center;
}






.cart-side-bar {
    right: -500px;
    overflow-x: hidden;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
ul.cart_side-account li h3 {
    font-family: "Ubuntu", sans-serif;
    font-size: 20px;
    margin: 0;
    color: #eb5ab3;
}
ul.cart-side-button li a {
    background: #eb5ab3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: #fff;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
}
.side-nav-content a {
    font-family: "Ubuntu", sans-serif;
    color: #eb5ab3;
    font-weight: 600;
}
.side-nav-content h6 {
    font-family: "Ubuntu", sans-serif;
    margin-bottom: 0;
}
li.cart-side-view-cart a {
    background: #f7f7f7 !important;
    color: #000 !important;
}
.cart-side-nav.footer {
    border-top: 1px solid #e4e4e4;
    padding-top: 20px;
}
ul.cart-side-button {
    margin-bottom: 0;
}
ul.cart-side-button li {
    margin-bottom: 10px;
}
ul.cart_side-account li h2 {
    font-family: "Ubuntu", sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}
ul.cart_side-account {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*Cart Sider Bar End*/

/*Register Area Start*/

.login-form {
    padding: 30px 30px;
    margin: auto;
    background-color: #fff;
    border: 1px solid #ebebeb;
}
ul.sign-forgot li a {
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
    color: #ec5ab4;
}
.sign-button button {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    font-family: "Ubuntu", sans-serif;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    background: #ec5ab4;
}
ul.sign-forgot li p label {
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
}
ul.sign-forgot li p input {
    width: 15px;
    height: 15px;
}
ul.sign-forgot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.login-form h2 {
    margin-bottom: 30px;
    font-size: 30px;
    font-family: "Ubuntu", sans-serif;
}

.login-form form .form-group {
    margin-bottom: 25px;
}

.login-form form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: "Ubuntu", sans-serif;
}

.login-form form .form-group .form-control {
    height: 60px;
    padding: 15px 25px;
    line-height: initial;
    color: var(--paragraph-color);
    border-radius: 5px;
    box-shadow: unset;
    transition: var(--transition);
    font-size: var(--font-size);
    font-weight: 400;
    background: #e8f0fe;
    border: 1px solid #d0d8e4;
    font-family: "Ubuntu", sans-serif;
}




/*Register Area End*/


/*Blog Start*/

.blogs-detail-text img {
    width: 100%;
}
.blogs-detail-sec .row .chg {
    justify-content: center;
}

.blogs-detail-text ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #a4a4a4;
    font-family: "Ubuntu", sans-serif;
}
.blogs-detail-point p {
    line-height: 30px;
    margin-bottom: 20px;
}
.blogs-detail-text {
    text-align: center;
}
.blogs-detail-sec {
    padding: 80px 0;
}
.blogs-detail-point {
    margin-top: 50px;
}
.blogs-detail-point h3 {
    font-size: 23px;
    color: #000;
    font-weight: 800;
    margin-bottom: 15px;
}
.blog-detail-cocail-link ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
    margin-top: 80px;
    border-top: 2px solid rgba(113,113,113,0.15);
    padding-top: 30px;
}
a.colour-2 {
    background-color: #3CF !important;
}
a.colour-3 {
    background-color: #CB2027 !important;
}
a.colour-4 {
    background-color: #0274B3 !important;
}
a.colour-5 {
    background-color: #37AEE2 !important;
}
.blog-detail-cocail-link ul li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: #ffff;
    background-color: #365493;
}
.blogs-detail-text a {
    text-transform: uppercase;
    background: #cf4a9b;
    color: #fff;
    padding: 8px 20px;
    font-family: "Ubuntu", sans-serif;
    margin-bottom: 10px;
}
.blog-detail-img {
    position: relative;
}
.blogs-detail-text h2 {
    font-size: 40px;
    margin-top: 10px;
    font-family: "Ubuntu", sans-serif;
    line-height: 35px;
}
.blogs-older ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}
.blogs-detail-button button {
    background: #cf4a9b;
    color: #fff;
    border: none;
    padding: 12px 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Ubuntu", sans-serif;
}
.Leave-a-reply span {
    color: red;
    font-size: 16px;
}
.blogs-detail-check-box input {
    width: 20px !important;
    height: 20px !important;
    margin-bottom: 0 !important;
}

.blogs-detail-check-box label {
    margin-bottom: 0;
}
.blogs-detail-button {
    margin-top: 25px;
}
.blogs-detail-check-box {
    display: flex;
    align-items: center;
    gap: 12px;
}


.Leave-a-reply textarea {
    width: 100%;
    height: 200px;
    border: 2px solid #e6e6e6;
    padding: 15px 15px;
    margin-bottom: 30px;
}
.Leave-a-reply input {
    width: 100%;
    height: 50px;
    border: 2px solid #e6e6e6;
    padding: 0px 15px;
    margin-bottom: 30px;
}
.blogs-detail-check-box input {
    width: 20px;
}
.blods-icon {
    text-align: center;
}
.Leave-a-reply p {
    font-size: 19px;
    color: #777777;
}
.Leave-a-reply p {
    font-size: 19px;
    color: #777777;
    margin-bottom: 40px;
    font-family: "Ubuntu", sans-serif;
}
.blods-icon a i {
    color: #ec5ab4;
}
.Leave-a-reply label {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-bottom: 0;
    font-family: "Ubuntu", sans-serif;
}

ul.blog-older {
    justify-content: end;
}
.blogs-older {
    margin-top: 50px;
    border-bottom: 2px solid rgba(113,113,113,0.15);
    padding-bottom: 30px;
}
.blogs-older .row {
    align-items: center;
}
.Leave-a-reply {
    margin-top: 50px;
}
.Leave-a-reply h2 {
    font-size: 25px;
}
.blogs-older ul li h2 {
    font-size: 20px;
    margin-bottom: 0;
    color: #BBB;
}
.blogs-older ul li p {
    font-size: 14px;
    margin-bottom: 0;
    font-family: "Ubuntu", sans-serif;
    line-height: 25px;
}
.blogs-older ul li a {
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: #000;
}

/*Blog End*/


/*Products Detail Start*/

.products-detail-sec {
    padding: 80px 0;
}
.products-detail-text ul {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}
.products-detail-text ul li a {
    font-size: 15px;
    color: #8e8e8e;
    font-weight: 500;
    font-family: "Ubuntu", sans-serif;
}
.products-detail-text ul li {
    font-size: 12px;
    color: #8e8e8e;
}
.products-detail-text a.active {
    color: #333 !important;
    font-weight: 600 !important;
    font-family: "Ubuntu", sans-serif;
}
.products-detail-text h2 {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 20px;
}
.products-detail-text h3 {
    font-size: 25px;
    color: #ec5ab4;
    font-family: "Ubuntu", sans-serif;
}
.prod-detail-silder {
    cursor: pointer;
}
ul.quantity-button li a {
    background: #ec5ab4;
    padding: 15px 25px;
    text-transform: uppercase;
    color: #fff;
    font-family: "Ubuntu", sans-serif;
}
ul.wishlist {
    margin-top: 30px;
}
ul.wishlist {
    gap: 10px;
    border-bottom: 1px solid rgba(119, 119, 119, 0.2);
    padding-bottom: 3%;
}
.products-detail-text h2 span {
    margin-left: 8px;
    color: #8e8e9d;
}
ul.wishlist li a {
    color: #333333;
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-family: "Ubuntu", sans-serif;
}
.tab-content p {
    font-family: "Ubuntu", sans-serif;
}
.maecenas-iacults-text p {
    font-size: 16px;
}
.maecenas-iacults-text h2 {
    margin-bottom: 0px;
    margin-top: 20px;
}



.products-detail-text h2 {
    font-size: 16px;
    font-weight: 600;
    font-family: "Ubuntu", sans-serif;
}
ul.socail-icon li h2 {
    margin-bottom: 0;
    margin-right: 5px;
}
ul.socail-icon {
    gap: 15px;
}
.reviews-tab-sec {
    border-top: 1px solid #e4e4e4;
    padding-top: 2%;
}
.nav {
    justify-content: center;
    gap: 20px;
}
.nav-tabs .nav-link {
     font-family: "Ubuntu", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
}
.nav-tabs {
    border-bottom: none;
    margin-bottom: 4%;
}
.reviews-form h2 {
    font-size: 15px;
    color: #000;
    font-weight: 600;
    margin-bottom: 25px;
}
.reviews-form h3 {
    font-size: 16px;
    color: #777;
}
.reviews-form span.red {
    color: #e01020;
    margin-left: 5px;
}
.reviews-form textarea {
    width: 100%;
    height: 180px;
    border: 2px solid #e6e6e6;
    margin-bottom: 10px;
}
.reviews-form ul.checkbox li input {
    width: 25px;
}
.reviews-form ul.checkbox {
    margin-top: 3%;
}
.reviews-form button {
    width: 20%;
    font-size: 17px;
    text-transform: uppercase;
    height: 50px;
    color: #fff;
    border: none;
    background: #020266;
}
.reviews-form ul.checkbox li {
    display: flex;
    align-items: center;
    gap: 15px;
}
.reviews-form ul.checkbox li label {
    font-size: 17px;
}

.reviews-form ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.reviews-form ul li span {
    color: #322432;
}
.reviews-form ul li span:hover {
    color: #eabe12 !important;
}
.reviews-form label {
    font-size: 15px;
    margin-bottom: 5px;
    color: #322432;
    font-weight: 500;
     font-family: "Ubuntu", sans-serif;
}
.reviews-form ul li h2 {
    margin-bottom: 0;
    color: #322432;
    font-weight: 500;
}
.reviews-form input {
    width: 100%;
    height: 45px;
    border: 2px solid #e6e6e6;
}
.reviews-tab-sec {
    margin-bottom: 5%;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 80px;
}
.reviews-heading h2 {
    font-size: 18px;
    color: #242424;
    font-weight: 600;
    margin-bottom: 30px;
}
.reviews-heading p {
    font-size: 16px;
    color: #777;
    margin-bottom: 0;
}
.reviews-tab-sec .nav-link {
    color: #333333;
}
.reviews-tab-sec .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #242424;
    background-color: inherit;
    border-color: inherit;
    border: none;
    position: relative;
    font-weight: 700;
}
.reviews-tab-sec .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: inherit !important;
    isolation: inherit !important;
    border: none;
    color: #333333;
}
.maecenas-iacults-text ul li {
    line-height: 22px;
    margin-bottom: 15px;
}

.maecenas-iacults-text h2 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 20px;
}
.maecenas-iacults-text li {
    color: #777d80;
    font-size: 16px;
}
.prod-detail-silder-items-icon a i {
    font-size: 17px;
    color: #8e8e8e;
}
.products-detail-text {
    position: relative;
}

.products-detail-text-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.products-detail-text-icon ul li {
    font-size: 20px;
}
.maecenas-iacults-text p {
    line-height: 25px;
    color: #7b8384;
}
.featured-products-heading.chg {
    text-align: left;
    margin-bottom: 4%;
    position: relative;
}
.featured-products-button.chg a i {
    color: #333333;
}
.featured-products-button.chg a {
    background: #fff;
    box-shadow: 0 0 10px 0 #00000075;
}

.featured-products-heading.chg:before {
    content: "";
    position: absolute;
    border: 1px solid #020266;
    bottom: -10px;
    width: 5%;
}
.featured-products-sec.chg1 {
    border-top: 1px solid #e4e4e4;
    padding: 50px 0;
}
.featured-products-heading.chg h2 {
    font-size: 24px;
}
.pro-detail-colour-box ul li p {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}  
.pro-detail-colour-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.pro-detail-colour-box ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pro-detail-colour-box ul {
    display: inherit;
    align-items: inherit;
    gap: inherit;
    margin-bottom: inherit;
}
.pro-detail-colour-box ul li {
    margin-bottom: 15px;
} 
/*Products Detail End*/

.price-range-slider .range-bar {
    margin-bottom: 20px;
}

.inner-shop-sec form>button {
    width: 100%;
    border: 0;
    background: #ec5ab4;
    color: #fff;
    font-size: 20px;
    height: 40px;
    border-radius: 30px;
}

.stock-status-box.chg ul li > a {
    width: 100%;
    display: flex;
}

.filter-by-brand {
    height: 200px;
    overflow-y: scroll;
}


#menuToggle
{
  display: block;
  position: absolute;
  top: 50px;
  left: 90px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  /* right: auto; */
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #000;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
ul.nav-side li a {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 23px;
    padding: 0 40px !important;
}
.nav-side
{
  position: absolute !important;
  width: 300px;
  margin: -100px 0 0 0 !important;
  padding: 0px !important;
  padding-top: 125px !important;
  left: -100px;
  background: #ededed;
  list-style-type: none !important;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  height: 104vh;
}

.nav-side li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's fade it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
  opacity: 1;
  text-align: start;
}

@media screen and (max-width: 768px) {
  #menu2 {
    transform: none;
    opacity: 0;

    transition: opacity 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  }
}
.header-logo {
}

#menu2 a {
    display: block;
    color: #000;
    text-transform: uppercase;
}
ul.dropdown-menu {
    background: unset;
    border: unset;
    width: 100%;
}

ul.dropdown-menu a {
}

ul.dropdown-menu a {
    color: #000 !important;
    border-bottom: 1px solid #0000002b !important;
}

ul.nav-side li {
    display: block;
    width: 100%;
}

li.button-dropdown:hover {
    background: unset !important;
}

ul.nav-side li ul {
    background: unset !important;
    position: inherit !important;
    width: 100% !important;
    top: 20px !important;
    height: 530px;
    overflow-y: scroll;
}

ul.nav-side li ul li a {padding: 16px 40px !important;}

a.dropdown-toggle {
    padding: 0px 40px !important;
}
.carousel-control-prev, .carousel-control-next {
    z-index: 0;
}



.dropdown-menu::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

/* Handle */
.dropdown-menu::-webkit-scrollbar-thumb {
  background: #888; /* Color of the scrollbar handle */
  border-radius: 4px; /* Rounded corners of the handle */
}

/* Handle on hover */
.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #555; /* Darker color when hovering */
}

/* Track */
.dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color of the scrollbar track */
  border-radius: 4px; /* Rounded corners of the track */
}

.category-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
}

.category-box {
    width: 100%;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: start;
    gap: 15px;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    border: 2px solid #ccc;
    margin: 0 0 24px;
}

.category-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: rgb(255 240 245);
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
    z-index: -1;
}

.category-box:hover::before {
    transform: scale(2);
}

.category-box:hover {
    transform: translateY(-8px);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
}

.icon img {
    width: 100%;
    height: 135px;
    object-fit: contain;
    mix-blend-mode: darken;
}

.content h3 {
    margin: 0;
    font-size: 1.3em;
    color: #333;
}

.content p {
    margin-top: 5px;
    font-size: 14px;
    color: #555;
    line-height: 1.2;
}

.category-box:hover h3,
.category-box:hover p {
    color: #000000;
}
.icon {
    width: 80%;
    margin-left: 20%;
}

section.category--sec {
    padding: 100px 0;
}

.filter-checkbox input[type="checkbox"] {
  display: none;
}

.filter-checkbox span {
  font-size: 16px;
  color: #666;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
}

.filter-checkbox span:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  transition: background-color 0.2s ease-in-out;
}

.filter-checkbox input[type="checkbox"]:checked + span:before {
  background-color: #ec5ab4;
  border-color: #ec5ab4;
}

.filter-checkbox input[type="checkbox"]:checked + span:after {
  content: "\2713";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 14px;
}
label.filter-checkbox {
    display: block;
    margin: 0 0 10px;
}


.product-container .product-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2a2a2a;
}

.product-container .rating-section {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product-container .stars {
    color: #f5a623;
    font-size: 20px;
    margin-right: 10px;
}

.product-container .reviews {
    font-size: 14px;
    color: #666;
}

.product-container .reviews a {
    color: #0073e6;
    text-decoration: none;
    font-weight: 500;
}

.product-container .color-options {
    margin-bottom: 10px;
}

.product-container .color-options span {
    font-weight: 500;
    margin-right: 10px;
}

.product-container .color-boxes {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-flow: wrap;
}

.product-container .color-box {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-container .color-box:hover {
    border-color: #ccc;
}

.product-container .color-box.selected {
    border-color: #0073e6;
}

.product-container .size-options {
    margin-bottom: 5px;
}

.product-container .size-options span {
    font-weight: 500;
}

.product-container .size-selection {
    margin-bottom: 15px;
}

.product-container .size-selection label {
    font-weight: 500;
    color: #2a2a2a;
}

.product-container .sizes {
    display: flex;
    gap: 5px 0;
    flex-wrap: wrap;
    margin: 5px 0;
}

.product-container .size {
    padding: 3px 15px;
    border-right: 1px solid #d3d3d3;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600 !important;
    color: #000;
}

.product-container .size-guide-link {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #0073e6;
    text-decoration: none;
    font-weight: 500;
}

.product-container .fit-guide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.product-container .fit-guide span {
    font-size: 13px;
    color: #666;
}

.product-container .fit-sizing-guide {
    font-size: 13px;
    color: #0073e6;
    text-decoration: none;
    font-weight: 500;
}

.product-container .start-designing-btn {
    width: 100%;
    padding: 15px;
    background-color: #ec5ab4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
}

.product-container .start-designing-btn:hover {
    background-color: #d11087;
}

.product-container .delivery-options {
    display: flex;
    margin-bottom: 10px;
    text-align: left;
    gap: 50px;
}

.product-container .delivery-option {
    display: flex;
    align-items: center;
    margin: 0 5px;
    transition: transform 0.3s ease;
}

.product-container .delivery-icon-container {
    background-color: #e0e0e0;
    border-radius: 50%;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    width: 50px;
    height: 50px;
}

.product-container .delivery-icon {
    font-size: 20px;
    color: #666;
}

.product-container .delivery-type {
    display: block;
    font-weight: 500;
    color: #2a2a2a;
    font-size: 15px;
}

.product-container .delivery-date {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 2px;
}
.button-flexas {
    display: flex;
    gap: 20px;
}
.product-container .size:last-child {
    border: 0;
}

.button-flexas .start-designing-btn:last-child {
    background: #004ad1;
}
section.product-detal-sec-new {
    padding: 100px 0;
}
.slick-vertical .slick-slide {
    margin: 10px;
    opacity: 1;
}
.productdetailfor .slick-slide {
    margin: 0;
}
.slick-vertical .slick-slide.slick-current {
    border: 1px solid #000;
}

/* Custom Accordion Styles */
.custom-accordion .accordion-item {
    border: none;
}

.custom-accordion .accordion-button {
    background-color: transparent;
    border: none;
    color: #333;
    font-weight: 500;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1rem;
    text-align: left;
}

.custom-accordion .accordion-button:hover,
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #fff0f5;
    color: #333;
    border-radius: 4px;
}

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

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: '\2212' !important; /* Minus sign */
}

.custom-accordion .accordion-button.collapsed::after {
    /*content: '\002B' !important; */
    /* Plus sign */
}

.custom-accordion .accordion-button::after {
    flex-shrink: 0;
    margin-left: auto;
    color: #000;
    background: none;
    filter: none;
    top: 12px;
    left: unset;
    right: 10px;
    font-size: 24px;
    height: auto;
    width: auto;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 500;
}

.custom-accordion .accordion-body {
    padding-left: 1.75rem;
    padding-right: 1.25rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.95rem;
}

.custom-accordion .accordion-body ul {
    padding-left: 0;
    list-style: none;
}

.custom-accordion .accordion-body ul li {
    padding: 0.25rem 0;
    color: #666;
}

.custom-accordion .accordion-body ul li:hover {
    color: #333;
}
.custom-accordion {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
}

.search-boxs {
    position: relative;
    margin-top: -65px;
}

.search-boxs input {
    height: 45px;
    border: 2px solid #c1c1c1;
    padding: 0 50px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
}

.search-boxs button {
    position: absolute;
    background: transparent;
    border: 0;
    font-size: 20px;
    left: 10px;
    top: 6px;
}
span.selected-color {
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

span.selected-color > i {
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.product-container .size-options > span {
    display: flex;
    align-items: center;
}
.carousel-item>img {
    height: 630px;
    object-fit: cover;
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 10px 16px;
  border-radius: 5px;
}

.breadcrumb-item {
  margin-right: 10px;
}

li.breadcrumb-item a {
  text-decoration: none;
  color: #ec5ab4;
  font-weight: 600 !important;
  position: relative;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '>';
  margin-right: 10px;
  color: #6c757d;
  font-family: cursive;
  font-size: 24px;
  line-height: 1;
}

.breadcrumb-item.active {
  color: #6c757d;
}
.select-style > img {
    height: 25px;
    object-fit: contain;
    margin-left: 5px;
    padding: 2px;
}
.breadcrumb-item.active::before {
  content: '>';
  margin-right: 10px;
  color: #6c757d;
}