@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap");

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

body {
    overflow-x: hidden;
}

main {
    overflow: hidden;
}

:root {
    --primary-color: #f7e788;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #151c22;
}

figure {
    margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-family: "Exo", sans-serif;
}

p {
    
    color: #2d2d2d;
    font-size: 15px;
    line-height: 25px;
    text-transform: unset;
    font-weight: 400;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
}

p::first-letter {
    text-transform: capitalize;
}

/* i::before {
    font-family: "Font Awesome 6 pro";
} */

/* go to top start */
.go-top {
    position: fixed;
    bottom: 7%;
    right: 1%;
    padding: 0;
    display: none;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    z-index: 10000;
}

.go-top:after {
    font-family: "Font Awesome 6 Pro";
    content: "\f106";
    color: #000;
    font-size: 25px;
    transition: all 0.2s ease-in-out;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 2px solid #ffffff;
    background-color: var(--primary-color);
}

.go-top:hover:after {
    background-color: #000;
    color: #fff;
}

/* go to top close */

/* go to top */
.scroll-to-top {
    width: 50px;
    height: 50px;
    background: #ffc233;
    position: fixed;
    bottom: 88px;
    right: 40px;
    z-index: 99;
    text-align: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    display: none;
    border-radius: 50%;
    cursor: pointer;
}

.scroll-to-top i {
    color: #fff;
    font-size: 18px;
    line-height: 50px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

/* go to top */
/**************************** Btn hover Start ***************************/
.btn {
    
    border-radius: 0px;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 12px;
    transition: all .3s ease-in-out;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 12px;
}

.btn-box .icon-wh {
    width: 25px;
    height: 25px;
    border-radius: 2px !important;
}

.btn-box .btn-primary {
    height: 50px;
    position: relative;
    font-weight: 600;
    font-size: 13px;
    line-height: 11px;
    text-transform: uppercase;
    color: #000;
    background-color: var(--primary-color);
    border-radius: 7px;
    padding: 0 20px;
    border: 1px solid var(--primary-color);
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.btn-box .btn-primary:hover {
    background-color: var(--primary-color);
}

.btn-box .btn-secondary {
    height: 48px;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-transform: capitalize;
    color: #000;
    background-color: #f1f1f1;
    border-radius: 100px;
    padding: 0 20px;
    border: 1px solid #f1f1f1;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.btn-box .btn-secondary:hover {
    background-color: #f1f1f1;
    border-color: #f1f1f1;
}

.btn-box .btn-ordinary {
    height: 55px;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-transform: capitalize;
    color: #000;
    background-color: transparent;
    border-radius: 100px;
    padding: 0 40px;
    border: 1px solid #000;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.btn-box .btn-ordinary:hover {
    background-color: #fff;
}

.btn-box .btn-icon {
    color: #232F3F;
}

/* Bounce To Right */
.hvr-bounce-to-right {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-right:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
    color: #000 !important;
    border-color: var(--primary-color) !important;
}

.hvr-bounce-to-right:hover:after,
.hvr-bounce-to-right:focus:after,
.hvr-bounce-to-right:active:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Right */
/* Bounce To left */
.hvr-bounce-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-left::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
    color: #000 !important;
    border-color: #f1f1f1 !important;
}

.hvr-bounce-to-left:hover::after,
.hvr-bounce-to-left:focus::after,
.hvr-bounce-to-left:active::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To left */

/* Bounce To top */
.hvr-bounce-to-top {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-top:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-top:hover,
.hvr-bounce-to-top:focus,
.hvr-bounce-to-top:active {
    color: #000 !important;
    border-color: #000 !important;
}

.hvr-bounce-to-top:hover:after,
.hvr-bounce-to-top:focus:after,
.hvr-bounce-to-top:active:after {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


/* Bounce To top */
/**************************** Btn hover Close ***************************/
/**************************** spinner Start ***************************/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000;
}

.overlay .overlayDoor:before,
.overlay .overlayDoor:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: #cb9274;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
    transition-delay: 0.8s;
}

.overlay .overlayDoor:before {
    left: 0;
}

.overlay .overlayDoor:after {
    right: 0;
}

.overlay.loaded .overlayDoor:before {
    left: -50%;
}

.overlay.loaded .overlayDoor:after {
    right: -50%;
}

.overlay.loaded .overlayContent {
    opacity: 0;
    margin-top: -15px;
}

.overlay .overlayContent {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.loader {
    width: 128px;
    height: 128px;
    border: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    position: relative;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .inner {
    width: 64px;
    height: 64px;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spinInner 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}

/**************************** spinner Close ***************************/
/**************************** Form css Start ***************************/
.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

select:focus,
textarea:focus,
input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #000 !important;
}

.input-main {
    margin: 0 0 18px 0;
    overflow: hidden;
}

.input-main p,
.input-main label {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0 0 3px 0;
    padding: 0;
    color: #313747;
    line-height: 24px;
}

.input-main p span,
.input-main label span {
    color: #ff6b6b;
}

.input-main .form-group {
    position: relative;
}

.input-main .form-group .card-imgs {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 20px;
    color: #74769e;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 3px;
}

.input-main .form-group .card-imgs li img {
    min-width: 26px;
    max-width: 26px;
    min-height: 26px;
    max-height: 26px;
    object-fit: contain;
}

.input-main .form-control.img-bx {
    padding: 12px 20px 12px 60px;
}

.input-main.rightOne .form-control.img-bx {
    padding: 12px 60px 12px 12px;
}

.input-main.rightOne .form-group .card-imgs {
    right: 20px;
    left: inherit;
}

.input-main .form-select,
.input-main .form-control {
    border: none;
    height: auto;
    background-color: #fff;
    border: 1px solid var(--Light-Grey, #d2d2d2);
    border-radius: 5px;
    padding: 8px 30px 8px 17px;
    color: #232f3f;
    font-size: 17px;
    font-weight: 400;
    position: relative;
}

.input-main .form-group .field-icon1 {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 10px;
    color: #313747;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.input-main .form-group .field-icon1.fa-eye:before,
.input-main .form-group .field-icon1.fa-eye-slash:before {
    font-family: "Font Awesome 6 pro";
}

.input-main .forgot {
    text-align: right;
    color: #313747;
    margin: 10px 0 0 0;
    font-size: 15px;
    line-height: 18px;
    text-transform: unset;
    font-weight: 400;
    display: block;
}

.form-check {
    margin: 0;
}

.form-check .form-check-input:checked {
    background-color: #FEA700;
    border-color: #FEA700;
}

.form-check .form-check-input:focus {
    border-color: #FEA700;
    box-shadow: none;
}

.form-check .form-check-label {
    letter-spacing: 1.5px;
    text-transform: capitalize;
    margin: 0;
    color: #313747;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/**************************** Form css End ***************************/
/**************************** offcanvas search-bar Start ***************************/
.offcanvas.search-bar {
    background: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.offcanvas.search-bar .offcanvas-body .search-h {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 30px 0;
    display: block;
    text-align: center;
}

.offcanvas.search-bar .offcanvas-body .search .search-control {
    background-color: rgb(245, 245, 247);
    font-size: 13px;
    font-weight: 400;
    color: #000;
    width: 100%;
    border-radius: 5px;
    border: none;
    padding-left: 25px;
    height: 45px;
}

.offcanvas.search-bar .offcanvas-body .search .search-btn {
    color: #fff;
    height: 45px;
    width: 45px;
    font-size: 16px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #936710;
    background: #936710;
    transition: all 0.2s ease-in-out;
    border-radius: 50px;
    overflow: hidden;
}

/**************************** offcanvas search-bar close ***************************/
/************************************* header *************************************/
.navbar-toggler {
    background-color: #fea700;
    color: #fff;
    border: none;
    padding: 8px 14px;
    font-size: 18px;
}
.navbar-toggler i {
    font-weight: 600;
}

/* header top */
header {
    transition: all 0.5s ease-in-out;
}

/* header-btm */
header .header-btm {
    width: 100%;
    background: #000000;
    padding: 10px 0px;
}

header .head-bottom {
    box-shadow: 0px 4.9997px 15.999px rgba(0, 0, 0, 0.1);
    padding: 18px 0px;
}

header .header-btm .main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

header .header-btm .main-header .navbar-brand {
    width: 9%;
}

header .header-btm .main-header .navbar-brand img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    text-align: start;
}

header .header-btm .main-header .search-box {
    /* width: 60%; */
    text-align: center;
    justify-content: center;
    display: flex;
}

header .header-btm .main-header .search-box .form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    width: 724px;
    position: relative;
    overflow: hidden;
    height: 48px;
}

header .header-btm .main-header .search-box .form-group .select-box {
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header-btm .main-header .search-box .form-group .select-box .form-select {
    padding: 0;
    border: 0;
    width: 140px;
    color: #444444;
    font-size: 15px;
    font-weight: 500;
}

header .header-btm .main-header .search-box .form-group .search-control {
    border: 1px solid #cccccc;
    border-radius: 6px;
    height: 100%;
}

header .header-btm .main-header .search-box .form-group .btn-box {
    height: 100%;
}

header .header-btm .main-header .search-box .form-group .btn-box .btn-wh {
    background: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
    width: 48px;
    height: 100%;
    border-radius: 0px;
}

header .header-btm .main-header .search-box .form-group .btn-box .btn-wh i {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

header .header-btm .main-header .head-btn .side-ul .sd-li {
    text-align: center;
    width: 70px;
    position: relative;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

header .header-btm .main-header .head-btn .side-ul .sd-li:hover a span,
header .header-btm .main-header .head-btn .side-ul .sd-li:hover a i {
    color: #f7e788;
}

header .header-btm .main-header .head-btn .side-ul .sd-li a {
    color: #fff;
}

header .header-btm .main-header .head-btn .side-ul .sd-li a span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    display: block;
    transition: all .3s ease-in-out;
}

header .header-btm .main-header .head-btn .side-ul .sd-li a i {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    transition: all .3s ease-in-out;
    position: relative;
}

header .header-btm .main-header .head-btn .side-ul .sd-li a .cont {
    position: absolute;
    top: -13%;
    color: #000000;
    background: var(--primary-color);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    right: 15%;
}

header .header-btm .head-btn {
    position: relative;
}

header .header-btm .side-ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

header .header-btm .side-ul .sd-li .btn-started {
    font-size: 16px;
    color: #ffc233;
    text-transform: capitalize;
    background: transparent;
    height: 48px;
    border: 2px solid #ffc233;
    width: 150px;
}

header .header-btm .side-ul .sd-li .search-bar {
    font-size: 16px;
    color: #ffc233;
    text-transform: capitalize;
    background: transparent;
    height: 48px;
    border: 2px solid #ffc233;
    width: 50px;
}

header .head-bottom .navbar .navbar-nav {
    align-items: center;
    gap: 30px;
}

header .head-bottom .navbar .navbar-nav .nav-item {
    position: relative;
}

/* drop-down */
header .head-bottom .navbar .navbar-nav .nav-item:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

header .head-bottom .navbar .navbar-nav .nav-item .dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: 15px 0;
    /* top: 100%; */
    transform: translateY(50px);
    left: 0;
    width: 210px;
    background-color: #fff;
    box-shadow: 0px 10px 10px 3px rgb(0 0 0 / 7%);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    z-index: 111;
    transition: 0.4s all;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    min-height: 400px;
    max-height: 400px;
    overflow-y: scroll;
    gap: 2px;
}

header .head-bottom .navbar .navbar-nav .nav-item .dropdown li .dropdown-item {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    letter-spacing: 0;
    word-spacing: 0;
    border: none;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.5s ease-in-out;
    padding: 12px 12px;
}

header .head-bottom .navbar .navbar-nav .nav-item .dropdown li .dropdown-item:hover {
    color: #000000;
    background: var(--primary-color);
}

/* drop-down */

header .head-bottom .navbar .navbar-nav .nav-item .nav-link {
    color: #999999;
    font-size: 16px;
    line-height: 25px;
    text-transform: capitalize;
    padding: 0;
    margin: 0;
    letter-spacing: 0;
    word-spacing: 0;
    border: none;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.5s ease-in-out;
    font-weight: 400;
}

header .head-bottom .navbar .navbar-nav .nav-item .nav-link.active {
    color: #000000 !important;
}

header .head-bottom .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #000000;
}

header .head-bottom .navbar-collapse {
    justify-content: space-between;
}

header .head-bottom .navbar .side-ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

header .head-bottom .navbar .side-ul #selected {
    border: 0;
    font-size: 14px;
    width: 50px;
}

/***************************** header close *****************************/
/***************************** Footer Start *****************************/
footer {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

footer .footer-top {
    padding: 50px 0;
}

footer .footer-top .footer-logo img {
    min-width: 170px;
    max-width: 170px;
    max-height: 85px;
    min-height: 85px;
    object-fit: contain;
    margin: 0px 0px 20px;
}

footer .footer-top .footer-logo .contect {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

footer .footer-top .footer-logo .contect li {
    display: flex;
    align-items: center;
}

footer .footer-top .footer-logo .contect li a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

footer .footer-top .footer-logo .contect li a i {
    color: #fea700;
    border: 1px solid #fea700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    min-width: 30px;
    max-width: 30px;
    min-height: 30px;
    max-height: 30px;
}

footer .footer-top .footer-logo ul li a i:hover {
    color: #ffc233;
}

footer .footer-top .quik-inks.last ul {
    display: flex !important;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    margin: 30px 0px 0px;
}

/* footer .footer-top .footer-logo .contect li a p {
    width: 200px;
} */

footer .footer-top .quik-inks.last ul li a i {
    background: var(--primary-color);
    color: #000;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    transition: all .5s ease-in-out;
}

footer .footer-top .quik-inks.last ul li a i:hover {
    background: #000;
    color: #fff;
}

footer .footer-top .quik-inks h4 {
    font-size: 24px;
    color: #000000;
    text-transform: capitalize;
    margin: 0 0 16px 0;
    font-weight: 600;
}

footer .footer-top .quik-inks p {
    color: #e8e8e8;
    font-size: 18px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
}

footer .footer-top .quik-inks ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 18px;
}

footer .footer-top .quik-inks ul li a {
    color: #666666;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
    transition: all 0.5s ease-in-out;
}

footer .footer-top .quik-inks ul li a:hover {
    color: #ffc233;
}

footer .footer-bottom {
    padding: 18px 0 18px;
    border-top: 1px solid #f0f7f7;
    background: #f9f9f9;
}

footer .footer-bottom .copyright p {
    color: #000000;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 400;
}

footer .footer-bottom .copyright p a {
    color: #fafbfd;
}

footer .footer-bottom .copyright p a:hover {
    color: #002f8c;
}

footer .footer-bottom .privacy-links ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 16px;
}

footer .footer-bottom .privacy-links ul li {
    color: #fafbfd;
}

footer .footer-bottom .privacy-links ul li a {
    color: #000000;
    font-size: 14px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
    transition: all 0.3s ease-in-out;
}

footer .footer-bottom .privacy-links ul li a:hover {
    color: #ffc233;
}

/* black-sec */
.black-sec {
    background-color: #000;
    padding: 30px;
    margin: 59px 0px 50px;
}

.black-sec .text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.black-sec .text img {
    height: 64px;
    object-fit: contain;
}

.black-sec .text h2 {
    color: #fff;
    font-size: 33px;
    font-weight: 700;
    line-height: 40px;
}

.black-sec .text span {
    display: block;
    font-size: 18px;
    font-weight: 300;
}

.black-sec .input-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.black-sec .input-box .input-form {
    height: 50px;
    border-radius: 8px;
    color: #000;
    font-size: 14px;
}

.black-sec .input-box .input-form::placeholder {
    color: #808080;
    font-size: 14px;
}

/* black-sec */
/*********************** footer close ***********************/
/*********************** Inner Banner Start ***********************/
.inner-banner {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.inner-banner .banner-box {
    position: relative;
    border-radius: 25px;
    background-color: #FDF8DC;
    overflow: hidden;
    padding: 0;
    z-index: 1;
}

.inner-banner .banner-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/inner-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.no-image {
    padding: 300px 0 100px 0;
}

.absolute-banner {
    padding: 250px 0 0 0;
}

.absolute-banner .main-img {
    height: 300px;
}

.absolute-banner .main-img img {
    position: absolute;
    bottom: -1px;
}

.no-image .content h2 {
    text-align: center;
}

.inner-banner .content h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    line-height: 75px;
    text-transform: capitalize;
    color: #000000;
    text-align: center;
}

.inner-banner .main-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.inner-banner .main-img.withBg:before {
    position: absolute;
    content: '';
    bottom: -35%;
    left: auto;
    width: 430px;
    height: 430px;
    background: #FEA700;
    border-radius: 100%;
    z-index: -1;
}

.inner-banner .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 415px;
    max-height: 415px;
    object-fit: contain;
}

/*********************** Inner Banner close ***********************/

/*********************** home-page css Start ***********************/
/* banner */
.home-banner-wrap {
    padding: 30px 100px;
    position: relative;
}

.home-banner-wrap .banner-box {
    background: linear-gradient(90deg, #f0f0f0 0%, #c1c1c1 100%);
    border-radius: 16px;
    overflow: hidden;
}

.home-banner-wrap .banner-box .content {
    padding: 82px 0px 0px 95px;
}

.home-banner-wrap .banner-box h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-transform: capitalize;
    color: #000;
    margin: 0px 0px 20px;
}

.home-banner-wrap .banner-box h3 {
    color: #000;
    font-size: 26px;
    font-weight: 500;
    margin: 0px 0px 25px;
    line-height: 35px;
}

.buy {
    display: flex;
}

.buy .buy-btn {
    justify-content: flex-start;
    border: 1.5px solid #000;
    padding: 16px 40px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
}

.home-banner-wrap .banner-box .main-img img {
    width: 100%;
    height: 570px;
    object-fit: fill;
}

.home-banner-wrap button.owl-prev {
    position: absolute;
    left: 2%;
    top: 41%;
}

.home-banner-wrap button.owl-next {
    position: absolute;
    right: 2%;
    top: 41%;
}

.home-banner-wrap .owl-carousel .owl-nav button.owl-next,
.home-banner-wrap .owl-carousel .owl-nav button.owl-prev {
    background: #fff;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    color: #828282;
}

.home-banner-wrap .owl-theme .owl-nav [class*="owl-"]:hover {
    background: #000;
    color: #fff;
}

/* banner */
/* made-by-sec */
.made-by-sec {
    margin: -200px 0px 0px;
    position: relative;
    z-index: 9999;
}

.food-beverages-sec .main-box,
.made-by-sec .bee-pro {
    border: 1px solid #e6e6e6;
    padding: 28px 25px;
    border-radius: 16px;
    background-color: #fff;
}

.made-by-sec .bee-pro {
    height: 100%;
}

.food-beverages-sec .main-box .head,
.shop-categories-sec .bee-pro .head,
.made-by-sec .bee-pro .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 87%;
    margin: 0px 0px 40px;
}

.food-beverages-sec .main-box .head h2,
.shop-categories-sec .bee-pro .head h2,
.made-by-sec .bee-pro .head h2 {
    font-size: 33px;
    font-weight: 700;
    line-height: 40px;
    color: #000;
}

.food-beverages-sec .main-box .product-box,
.made-by-sec .bee-pro .product-box {
    border: 1px solid #e6e6e6;
    padding: 17px 15px;
    border-radius: 16px;
}

.made-by-sec .bee-pro .product-box .btn-box {
    margin: 10px 0 0 0;
}

.made-by-sec .bee-pro .product-box .btn-box .btn-wh,
.made-by-sec .bee-pro .product-box .btn-box {
    width: 100%;
}

.food-beverages-sec .main-box .product-box .main-img,
.made-by-sec .bee-pro .product-box .main-img {
    position: relative;
    overflow: hidden;
    margin: 0px 0px 15px;
}

.food-beverages-sec .main-box .product-box .main-img img,
.made-by-sec .bee-pro .product-box .main-img img {
    width: 100%;
    height: 232px;
    object-fit: cover;
    border-radius: 8px;
}

.food-beverages-sec .main-box .product-box .main-img p,
.made-by-sec .bee-pro .product-box .main-img p {
    position: absolute;
    top: 0;
    background: #fea700;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    padding: 5px 8px;
    border-radius: 8px 0px 17px 1px;
}

.food-beverages-sec .main-box .product-box .infobox .btn-box {
    margin: 10px 0 0 0;
}

.food-beverages-sec .main-box .product-box .infobox .btn-box .btn-wh {
    width: 100%;
}

.food-beverages-sec .main-box .product-box .star,
.made-by-sec .bee-pro .product-box .star {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    margin: 0px 0px 14px;
}

.food-beverages-sec .main-box .product-box .star li,
.made-by-sec .bee-pro .product-box .star li {
    color: #808080;
    font-size: 12px;
    font-weight: 400;
}

.food-beverages-sec .main-box .product-box .star li i,
.made-by-sec .bee-pro .product-box .star li i {
    color: #f7e788;
}

.food-beverages-sec .main-box .product-box h4,
.made-by-sec .bee-pro .product-box h4 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin: 0px 0px 10px;
    line-height: 30px;
}

.made-by-sec .bee-pro .product-box h4 a {
    color: #000;
}

.made-by-sec .bee-pro .product-box h4:hover,
.made-by-sec .bee-pro .product-box h4 a:hover {
    color: #FEA700;
}

.food-beverages-sec .main-box .product-box p,
.made-by-sec .bee-pro .product-box p {
    color: #808080;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    margin: 0px 0px 9px;
}

.food-beverages-sec .main-box .product-box p i,
.made-by-sec .bee-pro .product-box p i {
    color: var(--primary-color);
    font-size: 13px;
}

.made-by-sec .bee-pro .product-box .line {
    background: #f1f1f1;
    height: 4px;
    border-radius: 20px;
    margin: 0px 0px 8px;
}

.made-by-sec .bee-pro .product-box strong {
    font-weight: 500;
    font-size: 12px;
    color: #000;
    line-height: 22px;
}

.food-beverages-sec .main-box .product-box h6,
.made-by-sec .bee-pro .product-box h6 {
    margin: 28px 0px 0px;
    
    font-size: 16px;
    color: #fea700;
    font-weight: 500;
}

.food-beverages-sec .main-box .product-box h6 span,
.made-by-sec .bee-pro .product-box h6 span {
    color: #808080;
    font-weight: 300;
}

.food-beverages-sec .main-box .product-box h6 del,
.made-by-sec .bee-pro .product-box h6 del {
    color: #999999;
    font-weight: 600;
    text-decoration: line-through;
}

.food-beverages-sec .main-box .product-box .add {
    margin: 19px 0px 0px;
}

.made-by-sec .bee-pro .product-box .card-info .btn-box {
    margin: 19px 0px 0px;
}

.made-by-sec .bee-pro .product-box .card-info .btn-box .btn-wh {
    width: 100%;
}

.food-beverages-sec .main-box .product-box .add .add-btn,
.made-by-sec .bee-pro .product-box .add .add-btn {
    background-color: #f1f1f1;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 100px;
    border: 1.5px solid #f1f1f1;
}

.food-beverages-sec .main-box .product-box .add .add-btn i,
.made-by-sec .bee-pro .product-box .add .add-btn i {
    font-size: 14px;
    font-weight: 400;
}

.food-beverages-sec .gray-box,
.made-by-sec .gray-box {
    background-color: #e4e2db;
    border-radius: 16px;
    padding: 50px 0px 0px;
    overflow: hidden;
    text-align: center;
}

.made-by-sec .gray-box {
    height: 100%;
}

.food-beverages-sec .gray-box .btn-box,
.made-by-sec .gray-box .btn-box {
    justify-content: center;
}

.food-beverages-sec .gray-box .btn-box .btn-wh,
.made-by-sec .gray-box .btn-box .btn-wh {
    border-radius: 100px;
}

.food-beverages-sec .gray-box h4,
.made-by-sec .gray-box h4 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    line-height: 40px;
    margin: 0px 0px 5px;
}

.food-beverages-sec .gray-box h5,
.made-by-sec .gray-box h5 {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    line-height: 34px;
    margin: 0px 0px 6px;
}

.food-beverages-sec .gray-box ul,
.made-by-sec .gray-box ul {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    margin: 0px 0px 11px;
}

.food-beverages-sec .gray-box ul li span,
.made-by-sec .gray-box ul li span {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.food-beverages-sec .gray-box ul li span,
.made-by-sec .gray-box ul li p {
    background: var(--primary-color);
    color: #000;
    font-size: 14px;
    padding: 3px 8px;
    font-weight: 400;
}

.food-beverages-sec .gray-box ul li h6,
.made-by-sec .gray-box ul li h6 {
    color: #000;
    font-size: 30px;
    font-weight: 700;
}

.food-beverages-sec .gray-box .shop {
    display: flex;
    justify-content: center;
}

.food-beverages-sec .gray-box .shop .shop-btn,
.made-by-sec .gray-box .shop .shop-btn {
    background: var(--primary-color);
    color: #000;
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 100px;
    border: 1.5px solid var(--primary-color);
}

.made-by-sec .bee-pro button.owl-prev {
    position: absolute;
    top: -16%;
    right: 55px;
}

.made-by-sec .bee-pro .owl-carousel .owl-nav button.owl-next,
.made-by-sec .bee-pro .owl-carousel .owl-nav button.owl-prev {
    background: #00ffff00;
    border: 1px solid #e6e6e6;
    height: 48px;
    width: 48px;
    color: #828282;
    border-radius: 50%;
}

.made-by-sec .bee-pro button.owl-next {
    position: absolute;
    top: -16%;
    right: 0;
}

.made-by-sec .bee-pro .owl-theme .owl-nav [class*="owl-"]:hover {
    background: #000;
    color: #fff;
}

/* made-by-sec */
/* shop-categories-sec */
.shop-categories-sec {
    padding: 100px 0px 0px;
}

.shop-categories-sec .bee-pro {
    border: 1px solid #e6e6e6;
    padding: 25px 31px;
    border-radius: 16px;
}

.shop-categories-sec .bee-pro .product-box {
    border: 1px solid #e6e6e6;
    padding: 17px;
    border-radius: 16px;
}

.shop-categories-sec .bee-pro .product-box .main-img {
    margin: 0px 0px 10px;
}

.shop-categories-sec .bee-pro .head {
    margin: 0px 0px 18px;
}

.shop-categories-sec .bee-pro .product-box .main-img img {
    width: 100%;
    height: 232px;
    object-fit: contain;
    border-radius: 8px;
}

.shop-categories-sec .bee-pro .product-box h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #000;
}

.shop-categories-sec .bee-pro button.owl-prev {
    position: absolute;
    top: -21%;
    right: 55px;
}

.shop-categories-sec .bee-pro .owl-carousel .owl-nav button.owl-next,
.shop-categories-sec .bee-pro .owl-carousel .owl-nav button.owl-prev {
    background: #00ffff00;
    border: 1px solid #e6e6e6;
    height: 48px;
    width: 48px;
    color: #828282;
    border-radius: 50%;
}

.shop-categories-sec .bee-pro button.owl-next {
    position: absolute;
    top: -21%;
    right: 0;
}

.shop-categories-sec .bee-pro .owl-theme .owl-nav [class*="owl-"]:hover {
    background: #000;
    color: #fff;
}

/* shop-categories-sec */
/* selling-products-sec */
.selling-products-sec {
    margin: 0px;
    padding: 100px 0px 0px;
    background: transparent;
}

.selling-products-sec .gray-box {
    background-color: #fea7004d;
}

.selling-products-sec .gray-box h4 {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    line-height: 49px;
    margin: 0px 0px 23px;
}

.selling-products-sec .buy {
    justify-content: center;
}

.selling-products-sec .gray-box .main-img img {
    width: 100%;
    height: 304px;
    object-fit: cover;
}

.made-by-sec.selling-products-sec .bee-pro .head {
    width: 92%;
}

.made-by-sec .bee-pro .head .viewAll {
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 400;
}

.made-by-sec .bee-pro .head .viewAll:hover {
    color: #000;
}

/* selling-products-sec */
/* six-one */
.six-one {
    padding: 100px 0px 0px;
    position: relative;
}

.six-one .fitness {
    background-color: #f7e788;
    padding: 35px 48px 5px;
    border-radius: 15px;
}

.six-one .fitness p {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    line-height: 18px;
    margin: 30px 0px 20px;
}

.six-one .fitness h4 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    line-height: 30px;
    margin: 0 0 5px 0;
}

.six-one .fitness h6 {
    font-size: 15px;
    font-weight: 500;
    font-family: "Exo", sans-serif;
    margin: 0px 0px 18px;
}

.six-one .fitness .buy-btn {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
}

.six-one .fitness .main-img img {
    width: 100%;
    height: 264px;
    object-fit: cover;
}

.six-one .fitness.personal {
    background-color: #fea700;
    padding: 0px 0px 0px 48px;
}

.six-one .fitness.personal .main-img img {
    height: 300px;
    object-fit: cover;
}

.six-one .fitness.personal p {
    padding: 30px 0px 0px 0px;
}

/* six-one */
/* food-beverages-sec */
.food-beverages-sec {
    padding: 100px 0px 0px;
    overflow: hidden;
}

.food-beverages-sec .main-box {
    padding: 28px 21px 0px;
}

.food-beverages-sec .main-box .head {
    margin: 0px 0px 50px;
}

.food-beverages-sec .main-box .head p {
    font-size: 14px;
    font-weight: 400;
    color: #4d4d4d;
}

.food-beverages-sec .main-box .head .viewAll {
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 400;
}

.food-beverages-sec .main-box .product-box {
    margin: 0px 0px 24px;
    padding: 16px;
}

.food-beverages-sec .main-box .product-box .main-img {
    margin: 0;
}

.food-beverages-sec .main-box .product-box .main-img img {
    height: 256px;
    object-fit: cover;
}

.food-beverages-sec .main-box .product-box h4 a,
.food-beverages-sec .main-box .product-box h4 {
    color: #000;
}

.food-beverages-sec .main-box .product-box h4 a:hover,
.food-beverages-sec .main-box .product-box h4:hover {
    color: var(--primary-color);
}

.food-beverages-sec .main-box .product-box .star {
    margin: 0px 0px 12px;
}

.food-beverages-sec .main-box .product-box p {
    margin: 0px 0px 0px;
}

.food-beverages-sec .main-box .product-box h6 {
    margin: 21px 0px 0px;
    color: #000;
    font-weight: 600;
}

.food-beverages-sec .gray-box {
    background-color: #f6f6f6;
}

.food-beverages-sec .gray-box .main-img img {
    height: 594px;
    margin: -80px 0px 0px;
}

.food-beverages-sec .gray-box ul {
    position: relative;
    z-index: 1;
}

.food-beverages-sec button.owl-prev {
    position: absolute;
    top: -16%;
    right: 55px;
}

.food-beverages-sec .owl-carousel .owl-nav button.owl-next,
.food-beverages-sec .owl-carousel .owl-nav button.owl-prev {
    background: #00ffff00;
    border: 1px solid #e6e6e6;
    height: 48px;
    width: 48px;
    color: #828282;
    border-radius: 50%;
}

.food-beverages-sec button.owl-next {
    position: absolute;
    top: -16%;
    right: 0;
}

.food-beverages-sec .owl-theme .owl-nav [class*="owl-"]:hover {
    background: #000;
    color: #fff;
}

/* food-beverages-sec */
/* baby-sec */
.baby-sec {
    margin: 0;
    padding: 100px 0px 0px;
}

.baby-sec .gray-box {
    background-image: url(../images/img27.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 677px;
}

/* baby-sec */

/* hobby-sec */
.hobby-sec {
    padding: 100px 0px 0px;
}

.hobby-sec .main-box {
    border: 1px solid #e6e6e6;
    padding: 25px;
    border-radius: 16px;
}

.hobby-sec .main-box .exclusive-box {
    background-image: url(../images/offer-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px 0px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.hobby-sec .main-box .exclusive-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    background-image: url(../images/img28.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.hobby-sec .main-box .exclusive-box::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 150px;
    background-image: url(../images/img29.png);
    background-repeat: no-repeat;
    top: 0px;
    right: 0;
    background-size: contain;
    background-position: center;
}

.hobby-sec .main-box .exclusive-box h2 {
    text-align: center;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    margin: 0px 0px 10px;
}

.hobby-sec .main-box .exclusive-box h2 span {
    font-size: 36px;
    font-family: "Exo", sans-serif;
}

.hobby-sec .main-box .exclusive-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hobby-sec .main-box .exclusive-box ul li {
    color: #000;
    font-size: 27px;
    line-height: 19px;
}

.hobby-sec .main-box .exclusive-box ul li p {
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    height: 56px;
    width: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hobby-sec .main-box .exclusive-box ul li p span {
    display: block;
}

.hobby-sec .main-box .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0px 0px;
}

.hobby-sec .main-box .head h2 {
    color: #000;
    font-size: 33px;
    font-weight: 700;
    line-height: 39px;
}

.discounts-sec .main-box .head .viewAll,
.hobby-sec .main-box .head .viewAll {
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.discounts-sec .main-box .head .viewAll:hover,
.hobby-sec .main-box .head .viewAll:hover {
    color: #fea700;
}

.hobby-sec .main-box .product-box {
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 17px 17px;
    margin: 24px 0px 0px;
}

.hobby-sec .main-box .product-box .main-img img {
    width: 100%;
    height: 193px;
    object-fit: cover;
    border-radius: 8px;
}

.hobby-sec .main-box .product-box .content h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #000;
    margin: 0px 0px 17px;
}

.hobby-sec .main-box .product-box .content .two-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    height: 150px;
}

.hobby-sec .main-box .product-box .content .two-line ul {
    display: flex;
    align-items: self-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
}

.hobby-sec .main-box .product-box .content .two-line ul li {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
}

.hobby-sec .main-box .product-box .content .two-line a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.hobby-sec .main-box .product-box .content .two-line a:hover {
    color: #fea700;
}

/* hobby-sec */
/* discounts-sec */
.discounts-sec {
    padding: 100px 0px 0px;
    position: relative;
}

.discounts-sec .main-box {
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 24px 25px;
}

.discounts-sec .main-box .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 24px;
}

.discounts-sec .main-box .head h2 {
    color: #000;
    font-size: 33px;
    font-weight: 700;
    line-height: 43px;
}

.discounts-sec .main-box .head p {
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}
.discounts-sec .main-box .best  .box-free {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 15px;
    margin: 15px auto 0px;
    background: #fff;
    border-radius: 100px;
    width: 95%;
    padding: 10px 10px;
}

.discounts-sec .main-box .best .box-free p {
    display: flex;
    align-items: center;
    gap: 5px;
}

.discounts-sec .main-box .best .box-free p i {
    font-size: 18px;
    color: #fea700;
}
.discounts-sec .main-box .best {
    background-image: url(../images/img38.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 440px;
    margin: 0px 0px 20px;
    position: relative;
    overflow: hidden;
}
.discounts-sec .main-box .best .special-img {
    width: 100%;
}

.discounts-sec .main-box .best .special-img img {
    position: absolute;
    top: 10%;
    margin: 0;
    text-align: end !important;
    width: 18%;
    height: auto;
    right: 0%;
}
.discounts-sec .main-box .best.bg-img-change {
    background-image: url(../images/img39.png);
}

.discounts-sec .main-box .best img {
    height: 50px;
    object-fit: contain;
    width: 100%;
    margin: 15px 0px 15px;
}

.discounts-sec .main-box .best h4 {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;
    color: #000;
    margin: 0px 0px 5px;
}
.discounts-sec .main-box .best h5{
    text-align: center;
    color: #d5952f;
    margin: 0px 0px 5px;
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
}
.discounts-sec .main-box .best h6{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #3e5c37;
    margin: 0px 0px 10px;
}
.discounts-sec .main-box .best ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin: 0px auto 10px;
    flex-direction: column;
    background: #fff;
    border-radius: 15px;
    width: 80%;
    padding: 5px;
    border: 1px solid #c7c7c7;
}

.discounts-sec .main-box .best ul li {
    font-size: 25px;
    font-weight: 700;
    display: flex;
    align-items: start;
    gap: 6px;
    color: #d5952f;
    line-height: 30px;
    font-family: "Exo", sans-serif;
}
.discounts-sec .main-box .best ul li p{
    font-size: 14px;
    font-weight: 600;
    line-height: 13px;
    color: #3e5c37;
}
.discounts-sec .main-box .best ul li i {
    color: #fea700;
}
.discounts-sec .main-box .best ul li span {
    font-size: 15px;
    font-weight: 400;
    color: #777;
    text-decoration: line-through;
}
.discounts-sec .main-box .best button {
    border: 0;
    text-align: center;
    background: #fea700;
    color: #ffffff;
    font-size: 18px;
    padding: 6px 50px;
    border-radius: 100px;
    font-weight: 700;
    line-height: 30px;
    margin: 0px 0px 10px;
    font-family: "Exo", sans-serif;
}
.discounts-sec .main-box .best .multi-img {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.discounts-sec .main-box .best .multi-img .main-img {
    background-color: #fff;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.discounts-sec .main-box .best .multi-img .main-img img {
    margin: 0;
    height: 38px;
    object-fit: contain;
}

/* discounts-sec */
/* home-living-sec */
.home-living-sec {
    padding: 100px 0px 0px;
    overflow: hidden;
    margin: 0;
}

.home-living-sec .main-box {
    border: 1px solid #e6e6e6;
    padding: 24px 25px;
    border-radius: 16px;
}

.home-living-sec .main-box .living-box {
    background-image: url(../images/img44.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 0px;
    border-radius: 16px;
    position: relative;
}

.home-living-sec .main-box .living-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 235px;
    background-image: url(../images/img45.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: -16px 0px 0px;
}

.home-living-sec .main-box .living-box::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 220px;
    background-image: url(../images/img46.png);
    background-repeat: no-repeat;
    top: 0px;
    right: 0;
    background-size: contain;
    background-position: center;
}

.home-living-sec .main-box .living-box h2 {
    text-align: center;
    color: #000;
    font-size: 33px;
    font-weight: 700;
    margin: 0px 0px 10px;
}

.home-living-sec .main-box .living-box p {
    text-align: center;
    color: #000;
    font-size: 22px;
    font-weight: 500;
    margin: 0px 0px 15px;
    line-height: 32px;
}

.home-living-sec .main-box .living-box .btn-box {
    justify-content: center;
}

.home-living-sec .main-box .living-box .shop .shop-btn {
    font-size: 16px;
    font-weight: 500;
    border: 1.5px solid #000;
    padding: 12px 25px;
    border-radius: 100px;
}

.home-living-sec .main-box .bee-pro {
    border: 0;
}

.home-living-sec .main-box .bee-pro .head {
    width: 91%;
    margin: 0px 0px 35px;
}

/* home-living-sec */
/* top-brand-sec */
.top-brand-sec {
    padding: 60px 0px 0px;
    position: relative;
}

.top-brand-sec .main-box {
    border: 1px solid #e6e6e6;
    padding: 24px 25px;
    border-radius: 16px;
    position: relative;
}

.top-brand-sec .main-box .head h2 {
    font-size: 33px;
    font-weight: 700;
    color: #000;
    margin: 0px 0px 28px;
}

.top-brand-sec .main-box .multi-logo .main-img {
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 24px 20px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-brand-sec .main-box .multi-logo .main-img img {
    height: 15px;
    object-fit: contain;
}

.top-brand-sec .main-box .multi-logo .main-img.large-img img {
    height: 28px;
}

.top-brand-sec .owl-carousel .owl-nav button.owl-next,
.top-brand-sec .owl-carousel .owl-nav button.owl-prev {
    background: #00ffff00;
    border: 1px solid #e6e6e6;
    height: 48px;
    width: 48px;
    color: #828282;
    border-radius: 50%;
}

.top-brand-sec button.owl-next {
    position: absolute;
    top: -92%;
    right: 0;
}

.top-brand-sec button.owl-prev {
    position: absolute;
    top: -92%;
    right: 55px;
}

.top-brand-sec .owl-theme .owl-nav [class*="owl-"]:hover {
    background: #000;
    color: #fff;
}

/* top-brand-sec */
/* free-shipping-sec */
.free-shipping-sec {
    padding: 100px 0px 0px;
    overflow: hidden;
}

.free-shipping-sec .main-box {
    background-color: #f7e78857;
    padding: 32px 22px 32px 54px;
    border-radius: 16px;
    height: 145px;
}

.free-shipping-sec .main-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.free-shipping-sec .main-box ul li .main-img {
    background-color: #f7e788;
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.free-shipping-sec .main-box ul li .main-img img {
    height: 17px;
    object-fit: contain;
}

.free-shipping-sec .main-box ul li h2 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    padding: 14px 0 0;
}

.free-shipping-sec .main-box ul li h2 span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    padding: 6px 0;
}

.shopTabs-sec .advertisment-box {
    border-radius: 15px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow: hidden;
}

.shopTabs-sec .advertisment-box.has-bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.shopTabs-sec .advertisment-box .img-left img,
.shopTabs-sec .advertisment-box .img-right img {
    min-width: 300px;
    max-width: 300px;
    min-height: 150px;
    max-height: 150px;
    object-fit: cover;
}

.shopTabs-sec .advertisment-box .content-bx .btn-box {
    justify-content: center;
    margin: 10px 0 0 0;
}

.shopTabs-sec .advertisment-box .content-bx {
    text-align: center;
}

.shopTabs-sec .advertisment-box h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #000000;
}

.shopTabs-sec .advertisment-box h4 strong {
    font-weight: 600;
    font-size: 36.6px;
    line-height: 44px;
}

.shopTabs-sec .advertisment-box h5 {
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    text-transform: capitalize;
    color: #000000;
    
}

.shopTabs-sec .nav {
    justify-content: flex-end;
    gap: 5px;
    flex-wrap: nowrap;
}

.shopTabs-sec .nav .nav-item .nav-link {
    border-radius: 100px;
    background-color: #fff;
    border: 1px solid #E6E6E6;
    color: #000;
    font-size: 16px;
    line-height: 16px;
    height: 50px;
    padding: 0 20px;
    text-transform: capitalize;
    font-weight: 600;
}

.shopTabs-sec .nav .nav-item .nav-link.active {
    background-color: #F7E788;
    color: #000;
}

.shopTabs-sec .tabs-box {
    border: 1px solid #e6e6e6;
    padding: 28px 25px;
    border-radius: 16px;
    background-color: #fff;
    position: relative;
    height: 100%;
}

.shopTabs-sec .tabs-box .noProducts {
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8b8b8b;
}

/*********************** home-page css Close ***********************/
/*********************** Shop-page css Start ***********************/
.shopSec-wrap {
    padding: 100px 0 0 0;
    overflow: hidden;
    position: relative;
}

.shopSec-wrap .pagination-wrapper {
    margin: 40px 0 0 0;
}

.shopSec-wrap .pagination-wrapper nav .pagination {
    justify-content: center;
}

.shopSec-wrap .pagination-wrapper nav .pagination .page-item.active {}

.shopSec-wrap .pagination-wrapper nav .pagination .page-item.disabled {}

.shopSec-wrap .pagination-wrapper nav .pagination .page-item .page-link {
    color: #000;
}

.shopSec-wrap.margin-top {
    margin-top: -200px;
    z-index: 999;
    padding: 0 !important;
}

.sameSec-wrap .brand-card {
    border: 1px solid #e6e6e6;
    padding: 28px 25px;
    border-radius: 16px;
    overflow: hidden;
}

.sameSec-wrap .brand-card img {
    min-width: 100%;
    max-width: 100%;
    min-height: 100px;
    max-height: 100px;
    object-fit: contain;
}

.sameSec-wrap .product-card {
    margin: 0 !important;
}

.sameSec-wrap .slider-arrows.owl-carousel {
    position: unset;
}

.sameSec-wrap .slider-arrows.owl-theme .owl-nav {
    margin: 0;
    position: absolute;
    top: 28px;
    right: 2%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    height: 60px;
}

.homeLivingSec .slider-arrows.owl-theme .owl-nav {
    top: 0 !important;
}

.sameSec-wrap .slider-arrows.owl-carousel .owl-nav button.owl-next,
.sameSec-wrap .slider-arrows.owl-carousel .owl-nav button.owl-prev {
    margin: 0;
    border-radius: 0px;
}

.sameSec-wrap .slider-arrows.owl-carousel .owl-nav button.owl-next:hover,
.sameSec-wrap .slider-arrows.owl-carousel .owl-nav button.owl-prev:hover {
    color: #000;
    text-decoration: none;
    background: transparent;
}

.sameSec-wrap .slider-arrows.owl-carousel .owl-nav button.owl-next i,
.sameSec-wrap .slider-arrows.owl-carousel .owl-nav button.owl-prev i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 18px;
    background-color: #fff;
    color: #828282;
    border: 1px solid #e6e6e6;
    transition: all .5s ease-in-out;
}

.sameSec-wrap .slider-arrows.owl-carousel .owl-nav button.owl-next i:hover,
.sameSec-wrap .slider-arrows.owl-carousel .owl-nav button.owl-prev i:hover {
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
}

.sameSec-wrap .short-baner {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.sameSec-wrap .short-baner img {
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.sameSec-wrap .short-baner .content-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 0 0 0;
}

.sameSec-wrap .short-baner .content-box .info {
    text-align: center;
}

.sameSec-wrap .short-baner .content-box .info h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    color: #000000;
}

.sameSec-wrap .short-baner .content-box .info h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    text-transform: capitalize;
    color: #000000;
}

.sameSec-wrap .short-baner .content-box .info h5 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    color: #000000;
    gap: 15px;
}

.sameSec-wrap .short-baner .content-box .info h5 sub {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    
    color: #000000;
    bottom: 0;
    vertical-align: middle;
}

.sameSec-wrap .short-baner .content-box .info h5 span {
    
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #000000;
    background-color: #F7E788;
    position: relative;
    border-radius: 4px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.sameSec-wrap .short-baner .content-box .info h5 span::before {
    position: absolute;
    content: '';
    top: auto;
    left: -7px;
    width: 12px;
    height: 12px;
    background-color: #F7E788;
    transform: rotate(45deg);
}

.sameSec-wrap .short-baner .content-box .info .btn-box {
    justify-content: center;
    margin: 10px 0 0 0;
}

.sameSec-wrap .short-baner .content-box .info .btn-box .btn-wh {
    border-radius: 100px;
}


.shopSec-wrap .head {
    margin: 0 0 30px 0;
}

.shopTabs-sec .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
    width: 88%;
    height: 60px;
}

.shopTabs-sec .head .btn-box a {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #4D4D4D;
    
}

.shopTabs-sec .head .btn-box a:hover {
    color: #FEA700;
}

.shopTabs-sec .head h2 {
    text-align: left !important;
    font-size: 35px !important;
}

.shopSec-wrap .head h2 {
    text-align: center;
    font-weight: 600;
    font-size: 60px;
    line-height: 60px;
    text-transform: capitalize;
    color: #000000;
}

.shopSec-wrap .products-main {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}

.shopSec-wrap .products-main .left-side {
    min-width: 330px;
    max-width: 330px;
}

.shopSec-wrap .products-main .left-side .filter-box {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 15px;
    padding: 22px 22px;
        margin-top: 30px;

}

.shopSec-wrap .products-main .left-side .filter-box .price-range-block {
    margin: 20px 0 0 0;
}

.shopSec-wrap .products-main .left-side .filter-box .price-range-block .result-head .search-results-block {
    position: relative;
    display: block;
    clear: both;
    margin: 0 0 15px 0;
}

.shopSec-wrap .products-main .left-side .filter-box .price-range-block .result-head .price-range-field {
    width: auto;
    min-width: auto;
    background-color: transparent;
    border: 1px solid #6e6666;
    color: black;
    border-radius: 5px;
    height: 26px;
    padding: 5px;
    /* display: none; */
}

.shopSec-wrap .products-main .left-side .filter-box .price-range-block .ui-slider-horizontal {
    height: 14px;
}

.shopSec-wrap .products-main .left-side .filter-box .price-range-block .ui-widget.ui-widget-content {
    border: 1px solid #E2E2E2;
    border-radius: 100px;
    background-color: #000;
}

.shopSec-wrap .products-main .left-side .filter-box .text-price {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
    
}

.shopSec-wrap .products-main .left-side .filter-box .price-range-block .ui-widget.ui-widget-content .ui-state-default,
.shopSec-wrap .products-main .left-side .filter-box .price-range-block .ui-widget.ui-widget-content .ui-widget-content .ui-state-default,
.shopSec-wrap .products-main .left-side .filter-box .price-range-block .ui-widget.ui-widget-content .ui-widget-header .ui-state-default,
.shopSec-wrap .products-main .left-side .filter-box .price-range-block .ui-widget.ui-widget-content .ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid #FEA700;
    background: #FEA700;
    font-weight: normal;
    color: #454545;
    border-radius: 100px;
    height: 18px;
    width: 18px;
    cursor: pointer;
    display: block;
    top: -0.1em;
}

.shopSec-wrap .products-main .left-side .filter-box .price-range-block .ui-slider-horizontal {
    width: 100%;
    margin: 0 0 15px;
}

.shopSec-wrap .products-main .left-side .filter-box .price-range-block .ui-widget.ui-widget-content .ui-widget-header {
    background: #F0F0F0;
}

.shopSec-wrap .products-main .left-side .filter-box .price-range-block .btn-box {
    margin: 20px 0 0 0;
}

.shopSec-wrap .products-main .left-side .filter-box .price-range-block .btn-wh {
    height: 32px;
}

.shopSec-wrap .products-main .left-side .btn-box-top .clear-all-btn {
    height: 32px;
}

.shopSec-wrap .products-main .left-side .brand-list {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 15px;
    padding: 22px 22px;
    margin: 30px 0 0 0;
}

.shopSec-wrap .products-main .left-side .filter-box h4,
.shopSec-wrap .products-main .left-side .brand-list h4 {
    
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    text-transform: uppercase;
    color: #000000;
    border-bottom: 1px solid #000000;
    padding: 0 0 2px 0;
}

/* Category-dropdown */
.shopSec-wrap .products-main .left-side .brand-list .parent_cat {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0 0 0;
}

.shopSec-wrap .products-main .left-side .brand-list .parent_cat .parentCat_item {
    width: 100%;
    border-bottom: 1px solid #000;
}


.shopSec-wrap .products-main .left-side .brand-list .parent_cat .parentCat_item h6 {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 35px;
    text-transform: capitalize;
    color: #000000;
    padding: 0;
    font-family: "Exo", sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.shopSec-wrap .products-main .left-side .brand-list .parent_cat .parentCat_item h6 i {
    font-size: 18px;
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.shopSec-wrap .products-main .left-side .brand-list .parent_cat .parentCat_item h6 a {
    color: #000000;
    font-family: "Exo", sans-serif;
}

.shopSec-wrap .products-main .left-side .brand-list .parent_cat .parentCat_item .sub_cat {
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 5px;
    width: 95%;
    margin: 0 0 0 auto;
}

.shopSec-wrap .products-main .left-side .brand-list .parent_cat .parentCat_item .sub_cat .subCat_item {
    width: 100%;
    border-bottom: 1px solid #0000005c;
}

.shopSec-wrap .products-main .left-side .brand-list .parent_cat .parentCat_item .sub_cat .subCat_item h6 {
    
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #242424;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.shopSec-wrap .products-main .left-side .brand-list .parent_cat .parentCat_item .sub_cat .subCat_item h6 i {
    font-size: 18px;
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.shopSec-wrap .products-main .left-side .brand-list .parent_cat .parentCat_item .sub_cat .subCat_item h6 a {
    color: #242424;
}

.shopSec-wrap .products-main .left-side .brand-list .parent_cat .parentCat_item .sub_cat .subCat_item .subCat_childs {
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 5px;
    width: 95%;
    margin: 0 0 0 auto;
}

.shopSec-wrap .products-main .left-side .brand-list .parent_cat .parentCat_item .sub_cat .subCat_item .subCat_childs .child_item {
    width: 100%;
    border-bottom: 1px solid #0000005c;
}

.shopSec-wrap .products-main .left-side .brand-list .parent_cat .parentCat_item .sub_cat .subCat_item:last-child,
.shopSec-wrap .products-main .left-side .brand-list .parent_cat .parentCat_item .sub_cat .subCat_item .subCat_childs .child_item:last-child {
    border-bottom: none;
}

.shopSec-wrap .products-main .left-side .brand-list .parent_cat .parentCat_item .sub_cat .subCat_item .subCat_childs .child_item .item-link {
    width: 100%;
    
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

/* Category-dropdown */
.shopSec-wrap .products-main .left-side .brand-list .accordion {
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .leaf-category a:hover {
    color: #FEA700;
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .leaf-category a {
    color: #000000;
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .leaf-category {
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    text-transform: capitalize;
    color: #000000;
    padding: 0;
    font-family: "Exo", sans-serif;
    border-bottom: 1px solid #000;
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .leaf-category .leaf-types .form-check .form-check-label {
    cursor: pointer;
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .leaf-category .leaf-types .form-check .form-check-label:hover {
    color: #FEA700;
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .accordion-item {
    border: none;
    border-radius: 0px;
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .accordion-item .accordion-header {
    border-bottom: 1px solid #000;
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #FEA700 !important;
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    transform: rotate(360deg);
    filter: brightness(0) saturate(100%) invert(72%) sepia(55%) saturate(3544%) hue-rotate(360deg) brightness(103%) contrast(103%);
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .accordion-item .accordion-header .accordion-button::after {
    transform: rotate(270deg);
    background-size: auto;
    background-image: url(../images/down-arrow.png);
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .accordion-item .accordion-header .accordion-button {
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    text-transform: capitalize;
    color: #000000;
    padding: 0;
    font-family: "Exo", sans-serif;
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .accordion-item .accordion-header:hover .accordion-button {
    color: #FEA700;
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .accordion-item .accordion-header:hover .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(72%) sepia(55%) saturate(3544%) hue-rotate(360deg) brightness(103%) contrast(103%);
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .accordion-item .accordion-collapse .accordion-body .link-child {
    
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #000;
    transition: all .3s ease-in-out;
    border-bottom: 1px solid #0000005c;
    width: 100%;
    display: block;
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .accordion-item .accordion-collapse .accordion-body .link-child.active {
    color: #FEA700;
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .accordion-item .accordion-collapse .accordion-body .link-child:hover {
    color: #565656;
}

.shopSec-wrap .products-main .left-side .brand-list .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 0;
    width: 95%;
    margin: 0 0 0 auto;
}

.shopSec-wrap .products-main .left-side .brand-list .brandItems {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 0px;
    margin: 10px 0 0 0;
    min-height: auto;
    max-height: 900px;
    overflow-y: auto;
}

.shopSec-wrap .products-main .left-side .brand-list .brandItems li {
    width: 100%;
    border-bottom: 1px solid #0000005c;
}

.shopSec-wrap .products-main .left-side .brand-list .brandItems li a {
    
    font-style: normal;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    line-height: 38px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
    padding: 0 5px;
}

.shopSec-wrap .products-main .left-side .brand-list .brandItems li:hover a {
    color: #FEA700;
}

.shopSec-wrap .products-main .left-side .brand-list .brandItems li.active a {
    color: #FEA700;
}

/* product */
.shopSec-wrap .products-list {
    width: 100%;
}

.shopSec-wrap .products-list .productItems {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.shopSec-wrap.sidebarShop-sec .product-card {
    flex-basis: calc((100% - 4 * 30px) / 5);
    max-width: calc((100% - 4 * 30px) / 5);
    box-sizing: border-box;
    margin: 0;
}

.shopSec-wrap .product-card {
    border: 1px solid #E6E6E6;
    padding: 15px 15px;
    border-radius: 15px;
    transition: all .5s ease-in-out;
    margin: 0 0 20px 0;
}

.shopSec-wrap .product-card .main-img {
    overflow: hidden;
    border-radius: 8px;
    transition: all .5s ease-in-out;
    position: relative;
}

.shopSec-wrap .product-card:hover .main-img img {
    transform: scale(1.1);
}

.shopSec-wrap .product-card .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 230px;
    max-height: 230px;
    object-fit: fill;
    border-radius: 8px;
    transition: all .5s ease-in-out;
}

.shopSec-wrap .product-card .main-img .tag-box {
    position: absolute;
    top: 0;
    left: 0;
}

.shopSec-wrap .product-card .main-img .tag-box h5 {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    line-height: 14px;
    color: #FFFFFF;
    background-color: #000;
    height: 30px;
    white-space: nowrap;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 20px 0;
}

.shopSec-wrap .product-card .main-img .tag-box .badge-one {
    background-color: #FEA700;
}

.shopSec-wrap .product-card .main-img .tag-box .badge-two {
    background-color: #F7E788;
}

.shopSec-wrap .product-card .main-img .tag-box .badge-three {
    background-color: #DC2626;
}

.shopSec-wrap .product-card .desc {
    padding: 16px 0 0 0;
}

.shopSec-wrap .product-card .desc .review-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 5px;
}

.shopSec-wrap .product-card .desc .review-box h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    
    line-height: 15px;
    color: #808080;
}

.shopSec-wrap .product-card .desc .review-box ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 2px;
}

.shopSec-wrap .product-card .desc .review-box ul li i {
    color: #F7E788;
    font-size: 14px;
}

.shopSec-wrap .product-card .desc .review-box span {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    
    line-height: 15px;
    color: #808080;
}

.shopSec-wrap .product-card .desc h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin: 5px 0;
    text-transform: capitalize;
    min-height: 50px;
    max-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.shopSec-wrap .product-card .desc h3 a {
    color: #000000;
}

.shopSec-wrap .product-card .desc h3:hover,
.shopSec-wrap .product-card .desc h3 a:hover {
    color: #FEA700;
}

.shopSec-wrap .product-card .desc p {
    color: #808080;
}

.shopSec-wrap .product-card .desc p i {
    color: #F7E788;
}

.shopSec-wrap .product-card .desc hr {
    color: #F1F1F1;
    opacity: 1;
    height: 4px;
    background-color: #F1F1F1;
}

.shopSec-wrap .product-card .desc h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    
}

.shopSec-wrap .product-card .desc h5 {
    margin: 20px 0;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FEA700;
    
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 8px;
}

.shopSec-wrap .product-card .desc h5 del {
    text-decoration: line-through;
    color: #999999;
}

.shopSec-wrap .product-card .desc h5 span {
    color: #999999;
}

.shopSec-wrap .product-card .desc .btn-box .btn-wh {
    width: 100%;
}


.foodBeverageSec .product-card {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
}

.foodBeverageSec .product-card .main-img {
    min-width: 40%;
    max-width: 40%;
}

.foodBeverageSec .product-card .desc {
    width: 100%;
}

.foodBeverageSec .gap-items .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hobbyEntertainmentSec .product-card {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
    height: 100%;
}

.hobbyEntertainmentSec .product-card .main-img {
    min-width: 40%;
    max-width: 40%;
}

.hobbyEntertainmentSec .product-card .desc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* product */
/*********************** Shop-page css Close ***********************/
/*********************** contact-us-page css Start ***********************/
.contact-sec {
    padding: 100px 0 0 0;
    overflow: hidden;
    position: relative;
}

.contact-sec .contact-box h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    text-transform: capitalize;
    color: #FEA700;
    
}

.contact-sec .contact-box h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    line-height: 66px;
    text-transform: capitalize;
    color: #000000;
    margin: 0 0 20px 0;
}

.contact-sec .contact-box .form-box .input-main .form-control {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 7px;
    padding: 20px 20px;
}

.contact-sec .contact-box .form-box .input-main textarea.form-control {
    border-radius: 7px;
}

.contact-sec .contact-box .form-box .btn-box .btn-wh {
    height: 56px;
}

.contact-sec .contact-box .info-detail {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 40px 40px;
}

.contact-sec .contact-box .info-detail .top-dt ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 25px;
}

.contact-sec .contact-box .info-detail .top-dt ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 13px;
}

.contact-sec .contact-box .info-detail .top-dt ul li i {
    color: #FEA700;
}

.contact-sec .contact-box .info-detail .top-dt ul li a {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-transform: capitalize;
    color: #000000;
    
}

.contact-sec .contact-box .info-detail .bottom-dt ul li a i:hover,
.contact-sec .contact-box .info-detail .top-dt ul li a:hover {
    color: #FEA700;
}

.contact-sec .contact-box .info-detail .bottom-dt {
    margin: 35px 0 0 0;
}

.contact-sec .contact-box .info-detail .bottom-dt h5 {
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    text-transform: capitalize;
    color: #000000;
}

.contact-sec .contact-box .info-detail .bottom-dt ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
    margin: 10px 0 0 0;
}

.contact-sec .contact-box .info-detail .bottom-dt ul li a i {
    color: #1F1F1F;
    font-size: 22px;
}

/*********************** contact-us-page css Close ***********************/
/*********************** faqs-page css Start ***********************/
.frequently-sec {
    padding: 100px 0 0 0;
    overflow: hidden;
    position: relative;
}

.frequently-sec .head {
    text-align: center;
    margin: 0px 0px 50px 0px;
}

.frequently-sec .head h2 {
    font-weight: 600;
    font-size: 50px;
    line-height: 65px;
    text-transform: uppercase;
    color: #000000;
}

.frequently-sec .faq-box .accordion .accordion-item {
    margin: 0 0 40px;
    background: transparent;
    border: 1px solid #e6e6e6;
    padding: 25px 25px;
    border-radius: 16px;
    background-color: #fff;
}

.frequently-sec .faq-box .accordion-item .accordion-header button.accordion-button {
    box-shadow: none;
    border-radius: 10px;
    padding: 23px 23px;
    display: flex;
    align-items: center;
    margin: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 28px;
    text-transform: capitalize;
    color: #fff;
    font-family: "Exo", sans-serif;
    background-color: #000;
}

.frequently-sec .faq-box .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: #f7e788;
    color: #000;
}

.frequently-sec .faq-box .accordion-item .accordion-header .accordion-button::after {
    content: "\f107";
    font-family: "Font Awesome 6 pro";
    background: transparent;
    color: #ffffff;
    font-size: 22px;
    border-radius: 0px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.frequently-sec .faq-box .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f106";
    font-family: "Font Awesome 6 Pro";
    transform: rotate(0deg);
    color: #000000;
}

.frequently-sec .faq-box .accordion-item .accordion-collapse .accordion-body {
    
    background: #f1f1f161;
    color: #e8e8e8;
    font-size: 20px;
    line-height: 27px;
    margin: 0;
    padding: 10px 25px;
    border: none !important;
    text-align: justify;
    border-radius: 10px;
}

.frequently-sec .faq-box .accordion .accordion-item .accordion-body p a {
    
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: #5d5d5d;
}

/*********************** faqs-page css Close ***********************/
/*********************** About-us-page css Start ***********************/
.about-sec {
    padding: 100px 0px 0px;
    position: relative;
    overflow: hidden;
}

.about-sec .main-img {
    transition: all .5s ease-in-out;
    overflow: hidden;
    border-radius: 15px;
}

.about-sec .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 690px;
    max-height: 690px;
    object-fit: cover;
    transition: all .5s ease-in-out;
}

.about-sec .main-img:hover img {
    transform: scale(1.1);
}

.about-sec .about-contect-box {
    padding: 50px 55px;
    margin: 2px 0px -48px -105px;
    z-index: 1;
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
}

.about-sec .about-contect-box h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 72px;
    align-items: center;
    text-transform: capitalize;
    color: #000000;
}

.about-sec .about-contect-box p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 38px;
    color: #333333;
    margin: 0 0 20px 0;
}

/*********************** About-us-page css Close ***********************/
/*********************** Reviews-page css Close ***********************/
.sectionNine-wrap {
    padding: 100px 0 0;
    position: relative;
}

.sectionNine-wrap .head {
    margin: 0 0 40px 0;
    text-align: center;
}

.sectionNine-wrap .head h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 52px;
    text-align: center;
    color: #000000;
}

.sectionNine-wrap .review-box {
    margin: 0 0 100px 0;
}

.sectionNine-wrap .review-box .btn-box {
    margin: 30px 0 0 0;
    justify-content: center;
}

.sectionNine-wrap .review-box .btn-box .btn-wh {
    box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.3);
    border-radius: 7px;
}

.sectionNine-wrap .review-box .review-card {
    padding: 25px 25px;
    margin: 0 0 30px 0;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    transition: all .5s ease-in-out;
}

.sectionNine-wrap .review-box .review-card:hover {
    transform: scale(1.03);
    box-shadow: 0px 0px 45px rgba(225, 225, 225, 0.5);
}

.sectionNine-wrap .review-box .review-card .main-img {
    margin: 0 0 15px 0;
}

.sectionNine-wrap .review-box .review-card .main-img img {
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    object-fit: contain;
}

.sectionNine-wrap .review-box .review-card .desc p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #5E5E5E;
}

.sectionNine-wrap .review-box .review-card .desc .star-list {
    margin: 10px 0;
}

.sectionNine-wrap .review-box .review-card .desc .star-list ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 5px;
}

.sectionNine-wrap .review-box .review-card .desc .star-list ul li i {
    color: #FF8F00;
}

.sectionNine-wrap .review-box .review-card .desc .review-foot h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 21px;
    color: #000000;
    
    margin: 0 0 5px 0;
}

.sectionNine-wrap .review-box .review-card .desc .review-foot h6 {
    
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    color: #5E5E5E;
}

/*********************** Reviews-page css Close ***********************/
/*********************** Product-Detail-page css Close ***********************/
.product-detail-sec {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.product-detail-sec .main-slider-box {
    border-radius: 20px;
    background-color: #F9F9F9;
    padding: 20px 20px;
}

.product-detail-sec .main-slider-box .product-slider .owl-nav {
    display: none;
}

/* zoom img csss strat */
.product-detail-sec .product-slider .img_producto_container {
    width: 100%;
    height: 670px;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.product-detail-sec .product-slider .img_producto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: transform 0.5s ease-out;
}

/* zoom img csss end */
.product-detail-sec .product-thumb {
    margin: 10px 0 0 0;
}

.product-detail-sec .product-thumb img {
    min-width: 100%;
    max-width: 100%;
    min-height: 120px;
    max-height: 120px;
    object-fit: contain;
    border: 1px solid #A0A0A0;
    border-radius: 10px;
    opacity: 0.5;
}

.product-thumb.owl-carousel .owl-item.current img {
    border: 1px solid #FEA700;
    opacity: inherit;
}

.product-detail-sec .product-thumb .owl-nav .owl-prev,
.product-detail-sec .product-thumb .owl-nav .owl-next {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-size: 25px;
    color: #000;
    transition: all 0.2s ease-in-out;
    position: absolute;
    top: 40%;
    left: -8%;
    opacity: 0;
}

.product-detail-sec .product-thumb .owl-nav .owl-next {
    left: auto;
    right: -8%;
}

.product-detail-sec .product-thumb:hover .owl-nav .owl-prev,
.product-detail-sec .product-thumb:hover .owl-nav .owl-next {
    opacity: 1;
    left: -4%;
}

.product-detail-sec .product-thumb:hover .owl-nav .owl-next {
    left: auto;
    right: -4%;
}

.product-detail-sec .product-thumb .owl-nav .owl-prev:hover,
.product-detail-sec .product-thumb .owl-nav .owl-next:hover {
    color: #000;
}

.product-detail-sec .product-info .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px 0;
}

.product-detail-sec .product-info .head ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

.product-detail-sec .product-info .head ul li i {
    color: #777;
    font-size: 12px;
}

.product-detail-sec .product-info .head ul li a {
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FEA700;
    
}

.product-detail-sec .product-info .head .btn-box .btn-icon i {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #E9E9E9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all .5s ease-in-out;
}

.product-detail-sec .product-info .head .btn-box .btn-icon i:hover {
    color: #FEA700;
    border: 1px solid #FEA700;
    font-weight: 900;
}

.product-detail-sec .product-info .desc-main {
    margin: 0;
    padding: 0 0 40px 0;
    border-bottom: 1px solid #efefef;
}

.product-detail-sec .product-info .desc-main h2 {
    width: 80%;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    text-transform: capitalize;
    color: #1F1F1F;
}

.product-detail-sec .product-info .desc-main .reviews-count {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.product-detail-sec .product-info .desc-main .reviews-count ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.product-detail-sec .product-info .desc-main .reviews-count ul li i {
    color: #ECB018;
}

.product-detail-sec .product-info .desc-main .reviews-count p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #696C70;
}

.product-detail-sec .product-info .desc-main .discount-box ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.product-detail-sec .product-info .desc-main .discount-box ul li p {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    text-transform: capitalize;
    color: #FEA700;
}

.product-detail-sec .product-info .desc-main .discount-box ul li i {
    color: #A0A0A0;
}

.product-detail-sec .product-info .desc-main .discount-box ul li span {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-decoration-line: line-through;
    color: #A0A0A0;
}

.product-detail-sec .product-info .desc-main .content-dtl {
    margin: 20px 0;
}

.product-detail-sec .product-info .desc-main .content-dtl p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #696C70;
}

.product-detail-sec .product-info .desc-main .range-cart {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
}

.product-detail-sec .product-info .desc-main .range-cart .input-group {
    align-items: center;
    width: 250px;
    height: 50px;
    border: none;
    border-radius: 6px;
    padding: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid #f1f1f1;
}

.product-detail-sec .product-info .desc-main .range-cart .input-group .input-group-btn {
    height: 100%;
}

.product-detail-sec .product-info .desc-main .range-cart .input-group .input-group-btn .btn-quant {
    background-color: transparent;
    border-radius: 0;
    color: #000;
    padding: 0;
    height: 100%;
    width: 40px;
    border-radius: 0%;
    border: 1px solid transparent;
    background: #f1f1f1;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-sec .product-info .desc-main .range-cart .input-group .input-group-btn .btn-quant:focus {
    outline: none;
    box-shadow: none;
}

.product-detail-sec .product-info .desc-main .range-cart .input-group .input-number {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: #1f1f1d;
    text-align: center;
    opacity: 100%;
    border: none;
    background: #f5f5f730;
    height: 100%;
    border-radius: 10px !important;
    width: 100%;
    flex: inherit;
    border-radius: 0px !important;
}

.product-detail-sec .product-info .desc-main .range-cart .btn-box,
.product-detail-sec .product-info .desc-main .range-cart .btn-box .btn-wh {
    width: 100%;
}

.product-info .desc-main .range-cart .btn-box .btn-disable {
    height: 50px;
    background-color: #dddddd63;
    border-radius: 5px;
    color: #000;
    pointer-events: none;
    cursor: no-drop;
}

.product-detail-sec .product-info .desc-main .compare-whish {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
}

.product-detail-sec .product-info .desc-main .compare-whish .btn-compare {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: unset;
    margin: 0;
    padding: 0;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

.product-detail-sec .product-info .desc-main .compare-whish .btn-compare i {
    color: #333;
    margin: 0 8px 0 0;
}

.product-detail-sec .product-info .desc-main .compare-whish .btn-compare:hover {
    color: #777;
}

.product-detail-sec .product-info .desc-main .variations-box {
    border-top: 1px solid #efefef;
    padding: 25px 0 0 0;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box {
    margin: 0 0 20px 0;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 15px;
    flex-direction: row;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box ul li h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-transform: capitalize;
    
    color: #1F1F1F;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box ul li span {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    
    color: #1F1F1F;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box ul li .chartGuide {
    
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-decoration-line: underline;
    color: #FEA700;

}

.product-detail-sec .product-info .desc-main .variations-box .item-box ul li .chartGuide:hover {
    color: #FEA700;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 2px;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card {
    cursor: pointer;
    width: auto;
    padding: 0 5px;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card.img-card .card-content-wrapper {
    padding: 0;
    overflow: hidden;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value.size-chart .radio-card .card-content-wrapper {
    border-radius: 100% !important;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card .card-content-wrapper {
    background: #fff;
    border-radius: 12px;
    max-width: max-content;
    min-width: auto;
    padding: 2px;
    display: flex;
    box-shadow: none;
    transition: 200ms linear;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    transition: all .3s ease-in-out;
    border: 1px solid rgba(175, 175, 175, 0.2);
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card .card-content-wrapper:hover {
    background-color: transparent;
    border: 1px solid #ffacac;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card input[type="radio"]:checked~.card-content-wrapper:hover .check-icon {
    background: red;
    border-color: red;
    display: none;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card input[type="radio"]:checked~.card-content-wrapper {
    box-shadow: none;
    background-color: #000000;
    border: 1px solid #fea700;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card input[type="radio"]:checked~.card-content-wrapper .card-content h6 {
    color: #fff;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card .card-content-wrapper .check-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    border: solid 2px #e3e3e3;
    border-radius: 50%;
    transition: 200ms linear;
    position: relative;
    margin: 0 0 0 auto;
    display: none;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card .card-content-wrapper .check-icon:before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.93552 4.58423C0.890286 4.53718 0.854262 4.48209 0.829309 4.42179C0.779553 4.28741 0.779553 4.13965 0.829309 4.00527C0.853759 3.94471 0.889842 3.88952 0.93552 3.84283L1.68941 3.12018C1.73378 3.06821 1.7893 3.02692 1.85185 2.99939C1.91206 2.97215 1.97736 2.95796 2.04345 2.95774C2.11507 2.95635 2.18613 2.97056 2.2517 2.99939C2.31652 3.02822 2.3752 3.06922 2.42456 3.12018L4.69872 5.39851L9.58026 0.516971C9.62828 0.466328 9.68554 0.42533 9.74895 0.396182C9.81468 0.367844 9.88563 0.353653 9.95721 0.354531C10.0244 0.354903 10.0907 0.369582 10.1517 0.397592C10.2128 0.425602 10.2672 0.466298 10.3112 0.516971L11.0651 1.25003C11.1108 1.29672 11.1469 1.35191 11.1713 1.41247C11.2211 1.54686 11.2211 1.69461 11.1713 1.82899C11.1464 1.88929 11.1104 1.94439 11.0651 1.99143L5.06525 7.96007C5.02054 8.0122 4.96514 8.0541 4.90281 8.08294C4.76944 8.13802 4.61967 8.13802 4.4863 8.08294C4.42397 8.0541 4.36857 8.0122 4.32386 7.96007L0.93552 4.58423Z' fill='white'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center center;
    transform: scale(1.6);
    transition: 200ms linear;
    opacity: 0;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card input[type='radio'] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    visibility: hidden;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card input:checked {
    box-shadow: 0 2px 4px 0 rgba(219, 215, 215, 0.5), 0 0 0 2px #ff0000;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card input[type="radio"]:checked~.card-content-wrapper .check-icon {
    background: #ff0000;
    border-color: #ff0000;
    transform: scale(1.2);
    transition: all .3s ease-in-out;
    display: none;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card input[type="radio"]:checked~.card-content-wrapper .check-icon:before {
    transform: scale(1);
    opacity: 1;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card input:focus .card-content-wrapper {
    box-shadow: 0 0 0 4px rgba(48, 86, 213, 0.2);
    border-color: #3056d5;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card input:focus .check-icon {
    box-shadow: 0 0 0 4px rgba(48, 86, 213, 0.2);
    border-color: #3056d5;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value.sticker-select .radio-card .card-content-wrapper {
    border-radius: 6px;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value.sticker-select {
    flex-wrap: wrap;
    min-height: auto;
    max-height: 400px;
    overflow-y: scroll;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card .card-content-wrapper .card-content .main-img .color-bx {
    min-width: 48px;
    max-width: 48px;
    min-height: 48px;
    max-height: 48px;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card .card-content-wrapper .card-content .main-img img {
    min-width: 150px;
    max-width: 150px;
    min-height: 150px;
    max-height: 150px;
    object-fit: contain;
}

.product-detail-sec .product-info .desc-main .variations-box .item-box .selec-value .radio-card .card-content-wrapper .card-content h6 {
    font-size: 18px;
    letter-spacing: 0;
    text-align: center;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    line-height: normal;
    transition: all .3s ease-in-out;
    font-weight: 400;
    min-width: 48px;
    max-width: 48px;
    min-height: 48px;
    max-height: 48px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    
    justify-content: center;
}

.product-detail-sec .product-info .desc-main .compare-box {
    margin: 30px 0 0 0;
}

.product-detail-sec .product-info .desc-main .compare-box ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 80px;
}

.product-detail-sec .product-info .desc-main .compare-box ul li {}

.product-detail-sec .product-info .desc-main .compare-box ul li a:hover i {
    background: #FEA700;
    border: 1px solid #FEA700;
}

.product-detail-sec .product-info .desc-main .compare-box ul li a:hover h4 {
    color: #FEA700;
}

.product-detail-sec .product-info .desc-main .compare-box ul li a {
    transition: all .5s ease-in-out;
}

.product-detail-sec .product-info .desc-main .compare-box ul li .item-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

.product-detail-sec .product-info .desc-main .compare-box ul li .item-card i {
    min-width: 48px;
    max-width: 48px;
    min-height: 48px;
    max-height: 48px;
    background: #FFFFFF;
    border: 1px solid #E9E9E9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F1F1F;
    transition: all .5s ease-in-out;
}

.product-detail-sec .product-info .desc-main .compare-box ul li .item-card h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    transition: all .5s ease-in-out;
    color: #1F1F1F;
}

.product-detail-sec .product-info .url-list ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 10px;
}

.product-detail-sec .product-info .url-list ul li {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: unset;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

.product-detail-sec .product-info .url-list ul li span {
    color: #303030;
    font-weight: 400;
    display: block;
    margin: 0;
}

.product-detail-sec .product-info .url-list ul li .sub-child {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

.product-detail-sec .product-info .url-list ul li .sub-child li a i {
    font-size: 14px;
    color: #00000099;
    transition: all .3s ease-in-out;
}

.product-detail-sec .product-info .url-list ul li .sub-child li a i:hover {
    color: #333;
}

.product-detail-sec .product-info .bottomDesc {
    border-bottom: 1px solid #efefef;
    padding: 25px 0;
}

.product-detail-sec .product-info .bottomDesc .spec-box {
    background-color: #f2f2f2;
    border-radius: 20px;
    padding: 20px;
    margin: 0 0 15px 0;
}

.product-detail-sec .product-info .bottomDesc .spec-box h6 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-transform: capitalize;
    color: #1F1F1F;
    margin: 0 0 10px 0;
}

.product-detail-sec .product-info .bottomDesc .spec-box ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 0px;
}

.product-detail-sec .product-info .bottomDesc .spec-box ul li:nth-child(odd) {
    background-color: #fff;
}

.product-detail-sec .product-info .bottomDesc .spec-box ul li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 10px;
}

.product-detail-sec .product-info .bottomDesc .spec-box ul li p {
    flex-basis: calc((100% - 2 * 30px) / 2);
    max-width: calc((100% - 2 * 30px) / 2);
    box-sizing: border-box;
}

.product-detail-sec .product-info .bottomDesc .spec-box ul li span {
    
    color: #2d2d2d;
    font-size: 15px;
    line-height: 25px;
    text-transform: unset;
    font-weight: 400;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
}

.product-detail-sec .product-info .bottomDesc h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    text-transform: capitalize;
    color: #1F1F1F;
    margin: 0 0 12px 0;
}

.product-detail-sec .product-info .bottomDesc ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 12px;
}

.product-detail-sec .product-info .bottomDesc ul li .desc-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 15px;
}

.product-detail-sec .product-info .bottomDesc ul li .desc-info .main-img i {
    font-size: 30px;
}

.product-detail-sec .product-info .bottomDesc ul li .desc-info .info-bx h5 {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    
    color: #1F1F1F;
}

.product-detail-sec .product-info .bottomDesc ul li .desc-info .info-bx p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #696C70;
}

.product-detail-sec .long-desc {
    margin: 40px 0 0 0;
}

.product-detail-sec .long-desc .tabs-list .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 30px;
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item {
    position: relative;
    overflow: hidden;
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item .nav-link {
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    font-family: "Exo", sans-serif;
    line-height: 30px;
    text-transform: uppercase;
    color: #A0A0A0;
    margin: 0;
    padding: 10px 0;
    width: 100%;
    transition: all .3s ease-in-out;
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    right: 0;
    height: 3px;
    width: 100%;
    background-color: #f7e788;
    transition: all .5s ease-in-out;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item:hover::before {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item .nav-link:hover {
    color: #333;
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item .nav-link.active {
    color: #333;
    background: transparent;
    position: relative;
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item .nav-link.active::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    right: 0;
    height: 3px;
    width: 100%;
    background-color: #f7e788;
}

.product-detail-sec .long-desc .tabs-list .tab-content {
    margin: 30px 0 0 0;
}

.product-detail-sec .long-desc .tabs-list .tab-content .desc ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 10px 0;
    padding: 0 0 0 30px;
    list-style: disc;
}

.product-detail-sec .long-desc .tabs-list .tab-content .desc ul li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #696C70;
}

.product-detail-sec .long-desc .tabs-list .tab-content .desc h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    text-transform: capitalize;
    color: #1F1F1F;
}

.product-detail-sec .long-desc .tabs-list .tab-content .desc p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #696C70;
    margin: 10px 0 0 0;
}

.product-detail-sec .long-desc .tabs-list .tab-content .desc-card .main-img {
    margin: 0 0 15px 0;
}

.product-detail-sec .long-desc .tabs-list .tab-content .desc-card .main-img img {
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    object-fit: contain;
}

.product-detail-sec .long-desc .tabs-list .tab-content .desc-card .info h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    color: #1F1F1F;
    font-family: "Exo", sans-serif;
}

.product-detail-sec .long-desc .tabs-list .tab-content .desc-card .info p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #696C70;
}

.product-detail-sec .long-desc .specificatin-box h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 28px;
    text-transform: capitalize;
    color: #1F1F1F;
}

.product-detail-sec .long-desc .specificatin-box .table-responsive {
    margin: 30px 0 0 0;
}

/* #example th:nth-child(1) {
    width: 20%;
}

#example th:nth-child(2) {
    width: 80%;
} */

.active>.page-link,
.page-link.active {
    background-color: #FEA700;
    border-color: #FEA700;
}

.product-detail-sec .long-desc .specificatin-box .main-table thead {
    border-bottom: 1px solid #fff;
    background: #fff;
}

.product-detail-sec .long-desc .specificatin-box .main-table thead tr {
    border-bottom: 1px solid #f7e788;
    background: #f7e788;
}

.product-detail-sec .long-desc .specificatin-box .main-table thead tr th {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    color: #000;
    
}

.product-detail-sec .long-desc .specificatin-box .main-table tbody tr {
    border-bottom: 1px solid #EEEEEE;
}

.product-detail-sec .long-desc .specificatin-box .main-table tbody tr:last-child {
    border-bottom: 1px solid #111;
}

.product-detail-sec .long-desc .specificatin-box .main-table tbody tr td .main-img .table-img {
    min-width: 100px;
    max-width: 100px;
    object-fit: contain;
    min-height: 80px;
    max-height: 80px;
    border-radius: 10px;
}

.product-detail-sec .long-desc .specificatin-box .main-table tbody tr td h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    color: #1F1F1F;
    
}

.product-detail-sec .long-desc .specificatin-box .main-table tbody tr td p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #696C70;
}

/* coment-sec */
.comments-sec {
    background-color: #F9F9F9;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.comments-sec .main-box .top-content .review-bar {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
}

.comments-sec .main-box .top-content .review-bar .progress-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
}

.comments-sec .main-box .top-content .review-bar .progress-card .head-progress {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.comments-sec .main-box .top-content .review-bar .progress-card .head-progress h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    color: #1F1F1F;
    
}

.comments-sec .main-box .top-content .review-bar .progress-card .head-progress i {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
}

.comments-sec .main-box .top-content .review-bar .progress-card .progress {
    width: 100%;
}

.comments-sec .main-box .top-content .review-bar .progress-card .progress .progress-bar {
    background-color: #ECB018;
}

.comments-sec .main-box .top-content .review-bar .progress-card .progress-bottom p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #1F1F1F;
}

.comments-sec .main-box .top-content .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
    margin: 0 0 30px 0;
}

.comments-sec .main-box .top-content .head h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 42px;
    text-transform: capitalize;
    color: #1F1F1F;
}

.comments-sec .main-box .top-content .head .btn-box .btn-wh {
    height: 50px;
    padding: 0 50px;
}

.comments-sec .main-box .top-content .rating-box .rating-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 15px;
    flex-direction: row;
}

.comments-sec .main-box .top-content .rating-box .rating-card .main-text h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 80px;
    line-height: 88px;
    text-align: center;
    text-transform: capitalize;
    color: #1F1F1F;
    
}

.comments-sec .main-box .top-content .rating-box .rating-card .info-txt ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 5px;
    flex-direction: row;
}

.comments-sec .main-box .top-content .rating-box .rating-card .info-txt ul li i {
    color: #ECB018;
    font-size: 16px;
}

.comments-sec .main-box .top-content .rating-box .rating-card .info-txt p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #696C70;
}

.comments-sec .main-box .top-content .rating-box .rating-bar {
    margin: 20px 0 0 0;
}

.comments-sec .main-box .clients-riview-list {
    margin: 0 0 30px 0;
    min-height: auto;
    max-height: 900px;
    overflow-y: scroll;
}

.comments-sec .main-box .clients-riview-list .client-card {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 50px;
    flex-direction: row;
    padding: 20px 20px;
    border-bottom: 1px solid #E9E9E9;
    border-top: 1px solid #E9E9E9;
    margin: 40px 0 0 0;
}

.comments-sec .main-box .clients-riview-list .client-card .imgs-box {
    margin: 0;
    min-width: 200px;
    max-width: 200px;
    text-align: center;
}

.comments-sec .main-box .clients-riview-list .client-card .imgs-box .main-img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 5px;
    flex-direction: row;
}

.comments-sec .main-box .clients-riview-list .client-card .imgs-box .main-img img {
    min-width: 55px;
    max-width: 55px;
    min-height: 55px;
    max-height: 55px;
    border-radius: 10px;
    object-fit: cover;
}

.comments-sec .main-box .clients-riview-list .client-card .imgs-box .info {
    margin: 15px 0 0 0;
}

.comments-sec .main-box .clients-riview-list .client-card .imgs-box .info h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: #1F1F1F;
    
}

.comments-sec .main-box .clients-riview-list .client-card .coment-box ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 5px;
    flex-direction: row;
}

.comments-sec .main-box .clients-riview-list .client-card .coment-box ul li i {
    color: #ECB018;
    font-size: 16px;
}

.comments-sec .main-box .clients-riview-list .client-card .coment-box h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    text-transform: capitalize;
    color: #1F1F1F;
    margin: 10px 0;
}

.comments-sec .main-box .clients-riview-list .client-card .coment-box p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #1F1F1F;
}

.comments-sec .main-box .clients-riview-list .client-card .coment-box .coment-bottom .btn-box {
    margin: 20px 0;
    justify-content: flex-end;
}

.comments-sec .main-box .clients-riview-list .client-card .coment-box .coment-bottom .btn-box .btn-wh {
    height: 40px;
    padding: 0 20px;
}

.comments-sec .main-box .clients-riview-list .client-card .coment-box .coment-bottom .rply-card {
    background: #FFFFFF;
    border-bottom: 1px solid #E9E9E9;
    border-radius: 16px;
    padding: 20px 20px;
}

.comments-sec .main-box .clients-riview-list .client-card .coment-box .coment-bottom .rply-card .user-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 5px;
    flex-direction: row;
}

.comments-sec .main-box .clients-riview-list .client-card .coment-box .coment-bottom .rply-card .user-info .main-img img {
    min-width: 55px;
    max-width: 55px;
    min-height: 55px;
    max-height: 55px;
    border-radius: 100%;
    object-fit: cover;
    object-position: top;
}

.comments-sec .main-box .clients-riview-list .client-card .coment-box .coment-bottom .rply-card .user-info .user-name h5 {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    
    color: #1F1F1F;
}

.comments-sec .main-box .clients-riview-list .client-card .coment-box .coment-bottom .rply-card .desc {
    margin: 10px 0 0 0;
}

.comments-sec .main-box .clients-riview-list .client-card .coment-box .coment-bottom .rply-card .desc p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #1F1F1F;
}

.comments-sec .main-box .review-form h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 42px;
    text-transform: capitalize;
    color: #1F1F1F;
}

.comments-sec .main-box .review-form .input-main {
    margin: 0 0 20px 0;
}

.comments-sec .main-box .review-form .input-main .form-control {
    background: #FFFFFF;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    padding: 10px 20px;
}

.comments-sec .main-box .review-form .btn-box {
    margin: 30px 0 0 0;
}

.comments-sec .main-box .review-form .btn-box .btn-wh {
    height: 50px;
    padding: 0 40px;
}

.comments-sec .main-box .review-form .rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
    margin: 20px 0;
}

.comments-sec .main-box .review-form .rating h5 {
    font-size: 22px;
    line-height: 30px;
    color: #ECB018;
}

.comments-sec .main-box .review-form .rating .rating-new>input {
    display: none;
}

.comments-sec .main-box .review-form .rating .rating-new>label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.comments-sec .main-box .review-form .rating .rating-new>.half:before {
    content: "\f089";
    position: absolute;
}

.comments-sec .main-box .review-form .rating .rating-new>label {
    color: #ddd;
    float: right;
}

.comments-sec .main-box .review-form .rating .rating-new>input:checked~label,
.comments-sec .main-box .review-form .rating .rating-new:not(:checked)>label:hover,
.comments-sec .main-box .review-form .rating .rating-new:not(:checked)>label:hover~label {
    color: #FFD700;
}

.comments-sec .main-box .review-form .rating .rating-new>input:checked+label:hover,
.comments-sec .main-box .review-form .rating .rating-new>input:checked~label:hover,
.comments-sec .main-box .review-form .rating .rating-new>label:hover~input:checked~label,
.comments-sec .main-box .review-form .rating .rating-new>input:checked~label:hover~label {
    color: #FFED85;
}

.shopSec-wrap .relatedProductSlide.owl-theme .owl-nav {
    display: none;
}

/*********************** Product-Detail-page css Close ***********************/
/*********************** login-&-register Start ***********************/
.register-sec {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.register-sec:before {
    position: absolute;
    content: '';
    top: auto;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #E9E9E9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-sec.no-before::before {
    display: none;
}

.register-sec .form-main.add-border {
    padding: 40px 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 4px 0.5px #000;
}

.register-sec .form-main .head {
    margin: 0 0 30px 0;
}

.register-sec .form-main .head h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    text-transform: capitalize;
    color: #1F1F1F;
}

.register-sec .form-main .head h6 {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #1F1F1F;
    margin: 10px 0 0 0;
    
}

.register-sec .form-main .head p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #696C70;
}

.register-sec .form-main .form-box .check-forgot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

.register-sec .form-main .form-box .check-forgot .forgot-pass .forgot {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    text-decoration-line: underline;
    text-transform: capitalize;
    color: #1F1F1F;
    
}

.register-sec .form-main .form-box .check-forgot .forgot-pass .forgot:hover {
    color: #FEA700;
}

.register-sec .form-main .form-box .btn-box {
    margin: 30px 0 0 0;
}

.register-sec .form-main .btn-box .btn-wh,
.register-sec .form-main .form-box .btn-box .btn-wh {
    height: 52px;
    padding: 0 40px;
}

.register-sec .form-main .form-box .check-forgot .form-check .form-check-label p a {
    color: #000;
}

.register-sec .form-main .form-box .check-forgot .form-check .form-check-label p a:hover {
    color: #FEA700;
}

/*********************** login-&-register Close ***********************/
/* return-policy-page */
.infoContent-sec {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.infoContent-sec .content-box h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 72px;
    /*text-transform: uppercase;*/
    color: #000000;
}

.infoContent-sec .content-box h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 60px;
    /*text-transform: uppercase;*/
    color: #000000;
}

.infoContent-sec .content-box h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    /*text-transform: uppercase;*/
    color: #000000;
}

.infoContent-sec .content-box h5 {
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    /*text-transform: uppercase;*/
    color: #000000;
}

.infoContent-sec .content-box h6 {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;
}

.infoContent-sec .content-box ul li p,
.infoContent-sec .content-box ul li,
.infoContent-sec .content-box ul li a,
.infoContent-sec .content-box p a,
.infoContent-sec .content-box a {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 38px;
    color: #333333;
}

.infoContent-sec .content-box p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 38px;
    color: #333333;
    margin: 0 0 20px 0;
}

/* return-policy-page */

/*********************** Cart Start ***********************/
.section-cart {
    position: relative;
    padding: 75px 0 0;
    overflow: hidden;
}

.section-cart .checkout-box {
    border: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
}

.section-cart .checkout-box .details {
    border: 1px solid rgba(31, 31, 31, 0.1);
    border-bottom: none;
}

.section-cart .checkout-box .details .summary {
    padding: 18px 26px 0 20px;
}

.section-cart .checkout-box .details h6 {
    font-weight: 700;
    font-size: 24px;
    color: #000;
    text-transform: capitalize;
    margin: 0 0 6px 0;
    padding: 0;
    
}

.section-cart .checkout-box .details p {
    font-size: 14px;
}

.section-cart .checkout-box .total-ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.section-cart .checkout-box .total-ul li {
    font-weight: 700;
    font-size: large;
    color: #000;
    
    text-transform: capitalize;
    margin: 5px 0 5px 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.section-cart .checkout-box .total-ul li span {
    width: 50%;
    font-weight: 400;
}

.section-cart .checkout-box .sub-total {
    background: rgb(41 41 41 / 5%);
    padding: 7px 30px;
    margin: 21px 0 0 0;
    border-top: 1px solid #292929;
}

.section-cart .checkout-box .btn-box .btn-wh {
    height: 55px;
    width: 100%;
    border-radius: 0px;
}

.section-cart .cart-head-main {
    border-bottom: 1px solid #d7d7d770;
    padding: 0 0 20px 0;
}

.section-cart .cart-table thead tr th {
    text-transform: uppercase;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    margin: 0;
    padding: 10px;
    text-align: center;
    
}

.section-cart .cart-table thead tr th.price {
    text-align: left;
}

.section-cart .cart-table tbody tr td {
    vertical-align: middle;
    padding: 17px 10px;
}

.section-cart .cart-table tbody tr:nth-child(odd)>td {
    background-color: #ebebeb75;
}

.section-cart .cart-table tbody tr td .cart-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

.section-cart .cart-table tbody tr td .cart-wrapper .desc h4 {
    font-size: 18px;
    line-height: 20px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: .4px;
}

.section-cart .cart-table tbody tr td .cart-wrapper .desc h4 a {
    color: #000;
}

.section-cart .cart-table tbody tr td .cart-wrapper .desc h4:hover,
.section-cart .cart-table tbody tr td .cart-wrapper .desc h4 a:hover {
    color: #9b9b9b;
}

.section-cart .cart-table tbody tr td .cart-wrapper .desc ul {
    margin: 10px 0 0 0;
}

.section-cart .cart-table tbody tr td .cart-wrapper .desc ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
}

.section-cart .cart-table tbody tr td .cart-wrapper .desc ul li span {}

.section-cart .cart-table tbody tr td .cart-wrapper .desc ul li p {
    width: 50px;
    height: 20px;
    text-transform: uppercase;
    font-size: 16px;
}

.section-cart .cart-table tbody tr td .cart-wrapper .img-main {
    background: transparent;
    position: relative;
    border-radius: 10px;
    min-width: 104px;
    max-width: 100px;
}

.section-cart .cart-table tbody tr td .cart-wrapper .img-main i {
    position: absolute;
    right: -15px;
    top: -10px;
    width: 25px;
    font-size: 13px;
    height: 25px;
    line-height: 28px;
    color: #fff;
    background-color: #000000;
    text-align: center;
    border-radius: 100%;
    cursor: pointer;
}

.section-cart .cart-table tbody tr td .cart-wrapper .img-main .cart-img {
    width: 102px;
    
    -
    height: 90px;
    height: 99px;
    object-fit: cover;
    box-shadow: 2px 2px 24px #46404000;
    border-radius: 9px;
}

.section-cart .cart-table tbody tr {
    border-bottom: 1px solid #0000001c;
    background: #ebebeb75;
}

.section-cart .cart-table thead {
    border-bottom: 1px solid #000;
    background: #000;
}

.section-cart .cart-table thead tr {
    border-bottom: 1px solid #000;
}

.section-cart .cart-table tbody tr td .cart-desc .pro-name {
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0;
    padding: 0;
    
}

.section-cart .cart-table tbody tr td .btn-box .btn-wh {
    height: 42px;
    background: #ffffff;
    border: none;
}

.section-cart .cart-table tbody tr td .input-group {
    align-items: center;
    width: 173px;
    margin: 0 auto;
    border: none;
    border-radius: 0;
    padding: 0 15px;
    justify-content: space-between;
}

.section-cart .cart-table tbody tr td .input-group .input-group-btn .btn-quant {
    background-color: transparent;
    border-radius: 0;
    color: #fff;
    padding: 0;
    height: 27px;
    width: 27px;
    border-radius: 50%;
    border: 2px solid #1c1b19;
    background: #1c1b19;
    transition: all 0.3s ease-in-out;
    font-size: 12px;
    align-items: center;
    justify-content: center;
}

.section-cart .cart-table tbody tr td .input-group .input-group-btn .btn-quant:hover {
    background: #000000;
    color: #FEA700;
}

.section-cart .cart-table tbody tr td .input-group .input-group-btn .btn-quant:focus {
    outline: none;
    box-shadow: none;
}

.section-cart .cart-table tbody tr td .input-group .input-number {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: #1f1f1d;
    text-align: center;
    opacity: 100%;
    border: 1px solid #9d9d9d99;
    background: #F5F5F7;
    height: 34px;
    border-radius: 6px !important;
    width: 70px;
    flex: inherit;
}

.section-cart .cart-table tbody tr td .price {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #020202;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0;
    padding: 0;
}

.section-cart .checkout-btn-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    flex-direction: row;
}

/*********************** Cart Close ***********************/
/*********************** Checkout Start ***********************/
.section-checkout {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.section-checkout .checkout-form {
    background: #F0F0F0;
    padding: 30px 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 6px 1px hsl(0deg 0% 50.2% / 25%);
}

.section-checkout .checkout-form .form-h {
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 42px;
    text-transform: capitalize;
    color: #1F1F1F;
}

.section-checkout .checkout-form .form-p {
    font-size: 16px;
    color: #696C70;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    line-height: 16px;
    padding: 0;
    text-align: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
}

.section-checkout .checkout-form .form-p .signup-a {
    color: #FEA700;
}

.section-checkout .checkout-form .form-head {
    border-bottom: 1px solid #aaaaaa;
    margin: 0 0 30px 0;
    padding: 0 0 30px 0;
}

.section-checkout .checkout-form .order-details ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.section-checkout .checkout-form .order-details ul li {
    font-weight: 700;
    font-size: large;
    color: #000;
    
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
}

.section-checkout .checkout-form .order-details ul li strong {
    float: right;
    width: 50%;
    text-align: right;
    color: #000;
}

.section-checkout .checkout-form .order-details ul li .item-list {
    min-height: auto;
    max-height: 300px;
    overflow-y: scroll;
    padding: 5px 10px;
}

.section-checkout .checkout-form .order-details ul li .item-list::-webkit-scrollbar {
    width: 5px;
}

.section-checkout .checkout-form .order-details ul li .item-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.section-checkout .checkout-form .order-details ul li .item-list::-webkit-scrollbar-thumb {
    background: #FEA700;
    border-radius: 10px;
}

.section-checkout .checkout-form .order-details ul li .item-list::-webkit-scrollbar-thumb:hover {

    background: #555;
}

.section-checkout .checkout-form .order-details ul li .main-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin: 0 0 10px 0;
    padding: 10px;
    box-shadow: 0px 0px 0px 2px hsl(0deg 0% 50.2% / 25%);
    border-radius: 5px;
    flex-wrap: nowrap;
    background-color: hsl(0deg 0% 50.2% / 25%);
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card .desc {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
    flex-wrap: nowrap;
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card .main-img img {
    min-width: 90px;
    max-width: 90px;
    min-height: 80px;
    max-height: 80px;
    object-fit: cover;
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card .desc ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card .desc ul li {
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    word-spacing: 0px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card .desc ul li i {
    margin: 0 2px 0 0;
    font-size: 11px;
    color: #FEA700;
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card .desc ul li .color-box {
    width: 70px;
    height: 25px;
    border: 1px solid #000;
}

.section-checkout .checkout-form .order-details ul li .main-box .pd-total {
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    word-spacing: 0px;
    letter-spacing: 1px;
}

.section-checkout .checkout-form .btn-box {
    margin: 20px 0 0 0;
}

.section-checkout .checkout-form .btn-box .btn-wh {
    height: 52px;
    width: 100%;
}

.section-checkout .checkout-form .input-main {
    margin: 0 0 30px 0;
}

.section-checkout .checkout-form .payment-btn {
    /* background: linear-gradient( 
      360deg, rgba(93, 0, 1, 1) 0%, rgba(230, 0, 3, 1) 50%, rgba(93, 0, 1, 1) 100%); */
    background: #000;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
    color: #BABABA;
    margin: 0 0 50px 0;
    padding: 0;
    line-height: inherit;
    width: 100%;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: all 0.5s ease-in-out;
}

.section-checkout .checkout-form .payment-btn:hover {
    background: linear-gradient(360deg, rgba(93, 0, 1, 1) 0%, rgba(230, 0, 3, 1) 50%, rgba(93, 0, 1, 1) 100%);
    color: #000;
    font-size: 14px;
}

.section-checkout .checkout-form .payment-btn .payment-card {
    width: 20%;
    display: block;
    margin: 0 10px 0 0;
    transition: all 0.5s ease-in-out;
}

.section-checkout .checkout-form .payment-btn:hover .payment-card {
    filter: brightness(5.5);
}

.section-checkout .checkout-form .payment-btn .payment-trans {
    width: 11%;
    display: block;
    margin: 0 10px 0 0;
    transition: all 0.5s ease-in-out;
}

.section-checkout .checkout-form .payment-btn:hover .payment-trans {
    filter: brightness(5.5);
}

.section-checkout .checkout-form .payment-btn .payment-paypal {
    width: 14%;
    display: block;
    margin: 0 10px 0 0;
    transition: all 0.5s ease-in-out;
}

.section-checkout .checkout-form .payment-btn:hover .payment-paypal {
    filter: brightness(5.5);
}

.section-checkout .checkout-form .check-select {
    border: 1px solid #000;
    height: 55px;
    background-color: transparent;
    border-radius: 0;
    margin: 8px 0 30px 0;
    padding: 0px 25px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.section-checkout .checkout-form .check-select:focus {
    box-shadow: none;
}

/*********************** Checkout Close ***********************/
/*********************** Sidebar Start ***********************/
.sidebar {
    background-color: #F6F6F6;
    border-radius: 20px;
    padding: 30px 30px;
    height: 100%;
}

.sidebar .head {
    margin: 0 0 40px 0;
}

.sidebar .head .main-img {
    text-align: center;
}

.sidebar .head .main-img img {
    min-height: 150px;
    max-height: 150px;
    min-width: 150px;
    max-width: 150px;
    border-radius: 100%;
}

.sidebar .head .info {
    padding: 10px 0 0 0;
}

.sidebar .head .info h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    text-transform: capitalize;
    color: #1F1F1F;
}

.sidebar .head .info h5 {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    
    color: #1F1F1F;
}

.sidebar .side-links ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 10px;
    min-height: auto;
    max-height: 500px;
    overflow-y: scroll;
}

.sidebar .side-links ul li {
    width: 100%;
    border-radius: 10px;
    transition: all .5s ease-in-out;
}

.sidebar .side-links ul li.active {
    background-color: #fff;
}

.sidebar .side-links ul li:hover {
    background-color: #fff;
}

.sidebar .side-links ul li a {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    text-transform: capitalize;
    
    color: #1F1F1F;
    padding: 15px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

/*********************** Sidebar Close ***********************/
/*********************** Dashboard Start ***********************/
.dashoardSec-wrap {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.dashoardSec-wrap .main-box .table thead {
    background: #000;
}

.dashoardSec-wrap .main-box .table thead tr th {
    white-space: nowrap;
    color: #fff;
    
    font-size: 18px;
    padding: 15px 10px;
    font-weight: 600;
    text-align: center;
}

.badge {
    font-size: 14px !important;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    width: auto;
    height: 50px;
    padding: 0 10px;
    font-weight: 700 !important;
}

.badge-danger {
    background-color: #ff0000;
}

.badge-success {
    background-color: #68cf29;
}

.dashoardSec-wrap .main-box .table tbody tr td {
    border: 1px solid #a9a9a9;
    vertical-align: middle;
    padding: 15px 10px;
}

.dashoardSec-wrap .main-box .table tbody tr td ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    flex-wrap: nowrap;
}

.dashoardSec-wrap .main-box .table tbody tr td ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    flex-wrap: nowrap;
}

.dashoardSec-wrap .main-box .table tbody tr td ul li span {
    width: 110px;
}

.dashoardSec-wrap .main-box .table tbody tr td h5 {
    white-space: nowrap;
    font-size: 16px;
    line-height: 17px;
    font-weight: 500;
    color: #000;
    
    text-align: center;
}

.dashoardSec-wrap .main-box .table tbody tr td h6 {
    white-space: nowrap;
    font-size: 16px;
    line-height: 17px;
    font-weight: 400;
    color: #000;
    
    text-align: center;
}

/* upload-image preview start */
.avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 0 auto 30px;
}

.avatar-upload .image-name {
    font-weight: 400;
    font-size: 20px;
    text-transform: capitalize;
    margin: 0 0 15px 0;
    padding: 0;
    color: #313747;
    line-height: 24px;
    text-align: center;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 22px;
    z-index: 1;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 45px;
    height: 45px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #f7e788;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #000;
    border-color: #000;
}

.avatar-upload .avatar-edit input+label:hover:after {
    color: #fff;
}

.avatar-upload .avatar-edit input+label:after {
    content: "\f303";
    font-family: "Font Awesome 6 pro";
    color: #313747;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 900;
    height: 100%;
}

.avatar-upload .avatar-preview {
    display: block;
    min-width: 180px;
    max-width: 180px;
    min-height: 180px;
    max-height: 180px;
    position: relative;
    border-radius: 100%;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    overflow: hidden;
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.avatar-upload .avatar-preview #imagePreview img {
    min-width: 120px;
    max-width: 120px;
    min-height: 120px;
    max-height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-upload .avatar-preview .imagePreview img {
    min-width: 100%;
    max-width: 100%;
    min-height: 180px;
    max-height: 180px;
    object-fit: cover;
    border-radius: 100px;
    border: 6px solid #000;
}

/* upload-image preview end */
/*********************** Dashboard Close ***********************/
/*********************** Order Detail Css Start ***********************/
.orderDetail-sec .head {
    background-color: #f7e788;
    padding: 20px 20px;
    border-radius: 5px;
}

.orderDetail-sec .head h2 {
    color: #000000;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 25px;
    line-height: 25px;
    font-weight: 700;
}

.orderDetail-sec .billing-box {
    margin: 15px 0 0 0;
}

.orderDetail-sec .billing-card {
    border: 1px solid #ebebeb;
    height: 100%;
    background-color: #ebebeb;
    border-radius: 20px;
    padding: 10px 15px;
    box-shadow: 0rem 0.3125rem 0.3125rem 0rem rgb(82 63 105 / 5%);
}

.orderDetail-sec .billing-card .main-img {
    min-width: 100px;
    max-width: 100px;
    min-height: 100px;
    max-height: 100px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
    background-color: #fff;
    border: 1px solid #fff;
}

.orderDetail-sec .billing-card .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 70px;
    max-height: 70px;
    object-fit: contain;
}

.orderDetail-sec .billing-card .info {
    margin: 10px 0;
}

.orderDetail-sec .billing-card .info h4 {
    font-weight: 600;
    color: #242738;
    font-size: 30px;
    line-height: 30px;
    text-transform: uppercase;
    text-align: center;
}

.orderDetail-sec .billing-card .info ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0 0 0;
}

.orderDetail-sec .billing-card .info ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

.orderDetail-sec .billing-card .info ul li h5 {
    font-weight: 600;
    color: #000;
    font-size: 20px;
    letter-spacing: .5px;
    white-space: nowrap;
    text-transform: uppercase;
}

.orderDetail-sec .billing-card .info ul li p {
    letter-spacing: 1px;
    font-size: 18px;
    line-height: 18px;
}

.orderDetail-sec .billing-card .info ul li p a {
    color: #000000;
    font-weight: 700;
}

.orderDetail-sec .note-box {
    margin: 20px 0 0 0;
}

.orderDetail-sec .note-box h5 {
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 700;
    color: #242738;
    margin: 0 0 10px 0;
}

.orderDetail-sec .note-box p {
    padding: 0 0 0 30px;
    text-align: justify;
    font-size: 22px;
    color: #302f2f;
}

.orderDetail-sec .products-box {
    margin: 20px 0 0 0;
}

.orderDetail-sec .product-list {
    min-height: auto;
    max-height: 600px;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.orderDetail-sec .product-list .product-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 30px;
    height: 250px;
    padding: 10px 0;
    border-radius: 20px;
    box-shadow: 0rem 0.3125rem 0.3125rem 0rem rgb(82 63 105 / 5%);
    background-color: #ebebeb82;
}

.orderDetail-sec .product-list .product-card .main-img {
    min-width: 35%;
    max-width: 35%;
    position: relative;
    height: 100%;
}

.orderDetail-sec .product-list .product-card .main-img .typeImge {
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: contain;
}

.orderDetail-sec .product-list .product-card .info {
    width: 100%;
}

.orderDetail-sec .product-list .product-card .info h2 {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    color: #242738;
}

.orderDetail-sec .product-list .product-card .info ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 5px;
    margin: 5px 0 0 0;
}

.orderDetail-sec .product-list .product-card .info ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

.orderDetail-sec .product-list .product-card .info ul li h6 {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: .5px;
}

.orderDetail-sec .product-list .product-card .info ul li p {
    text-transform: uppercase;
    letter-spacing: .5px;
    font-style: italic;
    font-weight: 400;
}

.earingin-box .main-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px 0;
}

.earingin-box .main-img img {
    min-width: 100px;
    max-width: 100px;
    min-height: 100px;
    max-height: 100px;
    object-fit: contain;
}

.earingin-box .info h2 {
    font-size: 40px;
    text-align: center;
    font-weight: 700;
    line-height: 40px;
    color: #585858;
}

/*********************** Order Detail Css End ***********************/
/*********************** Compare Product Css Start ***********************/
.compareSec-wrap {
    padding: 100px 0 0 0;
    overflow: hidden;
    position: relative;
}

.compareSec-wrap .head {
    margin: 0 0 30px 0;
}

.compareSec-wrap .head h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    text-transform: capitalize;
    color: #000000;
    text-align: left;
}

.compareSec-wrap .head ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 15px;
}

.compareSec-wrap .head ul li {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    text-transform: capitalize;
    color: #0e0e0e;
    text-align: center;
    
}

.compareSec-wrap .main-box .comparetable .search-box .product-card {
    text-align: center;
    padding: 20px 0;
}

.compareSec-wrap .main-box .comparetable .search-box .product-card h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    text-transform: capitalize;
    color: #000000;
}

.compareSec-wrap .main-box .comparetable .search-box .product-card .main-img {
    margin: 20px 0;
}

.compareSec-wrap .main-box .comparetable .search-box .product-card .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 300px;
    max-height: 300px;
    object-fit: contain;
}

.compareSec-wrap .main-box .comparetable .search-box .product-card h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000000;
    
}

.compareSec-wrap .categories-list {}

.compareSec-wrap .top-head ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
}

.compareSec-wrap .top-head ul li {
    border-radius: 10px;
    padding: 10px 10px;
    box-shadow: 0px 0px 5px .1px #686868bd;
    flex-basis: calc((100% - 4 * 30px) / 5);
    max-width: calc((100% - 4 * 30px) / 5);
    transition: all .5s ease-in-out;
    box-sizing: border-box;
}

.compareSec-wrap .top-head ul li.active {
    background-color: #fef7d4;
}

.compareSec-wrap .top-head ul li a {
    transition: all .5s ease-in-out;
    overflow: hidden;
}

.compareSec-wrap .top-head ul li:hover .item-card h4 {
    color: #000;
}

.compareSec-wrap .top-head ul li:hover {
    background-color: #fef7d4;
}

.compareSec-wrap .top-head ul li .item-card {
    text-align: center;
    transition: all .5s ease-in-out;
}

.compareSec-wrap .top-head ul li .item-card .main-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.compareSec-wrap .top-head ul li .item-card h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-transform: capitalize;
    color: #686868;
    margin: 20px 0 0 0;
    transition: all .5s ease-in-out;
    letter-spacing: 1px;
}

.compareSec-wrap .form-box {
    margin: 50px 0 0 0;
}

.compareSec-wrap .main-box .comparetable .search-box .form-group .input-main {
    margin: 0;
    position: relative;
    overflow: visible;
}

.compareSec-wrap .main-box .comparetable .search-box .form-group .input-main .search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
    min-height: auto;
    max-height: 400px;
    overflow-y: scroll;
    background-color: #f7f7f5f5;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 5px;
    transform: translateY(5px);
    border-radius: 5px;
    padding: 10px 10px;
    display: none;
}

.compareSec-wrap .main-box .comparetable .search-box .form-group .input-main .search-results li {
    width: 100%;
    background-color: #ffffff;
    padding: 5px 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.compareSec-wrap .main-box .comparetable .search-box .form-group .input-main .search-results li:hover {
    background-color: #cfcfcf;
}

.compareSec-wrap .main-box .comparetable .search-box .form-group .input-main .search-results li img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.compareSec-wrap .main-box .comparetable .search-box .form-group .input-main .search-results li span {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    color: #0e0e0e;
    text-align: center;
    
    letter-spacing: .4px;
}
/*********************** Compare Product Css End ***********************/

/*arabic*/
header .header-btm.arabic-header .main-header .search-box .form-group .select-box .form-select {
    width: 190px;
    background-position: right 9.75rem center;
}
.shopTabs-sec.arabic-shop .head {
    width: 88%;
    margin-left: 12%;
}

section.shopSec-wrap.shopTabs-sec.sameSec-wrap.arabic-shop .slider-arrows.owl-theme .owl-nav {
    left: 2% !important;
    top: 27px !important;
}

section.shopSec-wrap.shopTabs-sec.sameSec-wrap.homeLivingSec.arabic-shop .slider-arrows.owl-theme .owl-nav {
    right: 0% !important;
    top: 30px !important;
}

section.shopSec-wrap.shopTabs-sec.sameSec-wrap.homeLivingSec.arabic-shop .head {
    width: 92%;
    margin-left: 8%;
}
.six-one.arabic-six .fitness.personal {
    padding: 0px 40px 0px 0px;
}
.free-shipping-sec.arabic-free-shipping-sec .main-box ul {
    justify-content: start;
}
.six-one.arabic-six .fitness.personal {
    padding: 13px 25px 7px 0px;
}
section.six-one.arabic-six .btn-box a.btn.btn-ordinary.hvr-bounce-to-top.btn-wh i {
    transform: rotate(180deg);
}
footer .footer-bottom.arabic-footer .privacy-links ul {
    flex-direction: row-reverse;
    justify-content: end;
}
/*arabic*/