@import url("https://fonts.googleapis.com/css2?family=Hepta+Slab:wght@1..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Karla", sans-serif;
}

body {
    overflow-x: hidden;
    color: #ffffff;
    background-color: #222222;
}

main {
    overflow: hidden;
}

a {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

:root {
    --main-color: linear-gradient(90deg, #a9da4c 0%, #449120 100%);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #449120;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #151c22;
}

figure {
    margin: 0;
}

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: "Hepta Slab", serif;
    font-weight: 600;
}

span {
    font-family: "Hepta Slab", serif;
}

p {
    color: #acacac;
    font-size: 16px;
    line-height: 26px;
    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: #fff;
    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 #fff;
    background: var(--main-color);
}

/* go to top close */

/* go to top */
.scroll-to-top {
    width: 50px;
    height: 50px;
    background: #449120;
    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: 20px;
    transition: all 0.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 {
    position: relative;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    color: #fff;
    background: var(--main-color);
    border-radius: 0px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    padding: 10px 14px;
    border-radius: 100px;
}

.btn-box .btn-primary:hover {
    color: #191414;
    background: var(--main-color);
}

.btn-box .btn-secondary {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    text-transform: capitalize;
    color: #191414;
    background: #ffffff;
    border-radius: 100px;
    border: 1px solid #191414;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.btn-box .btn-secondary:hover {
    background: #191414;
    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: #191414 !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: #191414;
    -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: #fff !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 */
/**************************** 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: #fff;
    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: #fff;
    margin: 10px 0 0 0;
    font-size: 15px;
    line-height: 18px;
    text-transform: unset;
    font-weight: 400;
    display: block;
}

.input-main .forgot:hover {
    color: #449120;
}

.form-check {
    margin: 0;
}

.form-check .form-check-input:checked {
    background-color: #4e9925;
    border-color: #4e9925;
}

.form-check .form-check-input:focus {
    border-color: #4e9925;
    box-shadow: none;
}

.form-check .form-check-label {
    letter-spacing: 1.5px;
    text-transform: capitalize;
    margin: 0;
    color: #fff;
    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: var(--main-color);
    color: #fff;
    border: none;
}

/* header top */
header {
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

/* header-btm */
header .header-btm {
    position: absolute;
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    width: 100%;
    z-index: 1000;
}

header .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #151c22;
}

header .header-btm .navbar>.container-fluid {
    align-items: center;
}

header .header-btm .navbar {
    transition: all 0.3s ease-in-out;
    background: transparent;
    position: relative;
    gap: 5%;
}

header .header-btm.sticky .navbar {
    border-bottom: none !important;
}

header .header-btm .navbar .navbar-nav {
    align-items: center;
    gap: 20px;
    margin: 0px 40px 0px 0px;
}

header .header-btm .navbar .navbar-nav .nav-item {
    position: relative;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link {
    color: #f0f7f7;
    font-size: 15px;
    line-height: 25px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    letter-spacing: 0;
    word-spacing: 0;
    border: none;
    position: relative;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link.active {
    background: var(--main-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #a9da4c;
}

header .header-btm .navbar .navbar-brand {
    margin: 0;
    padding: 0;
}

header .header-btm .navbar .navbar-brand .logo {
    width: 100%;
    height: 113px;
    object-fit: contain;
}

header.sticky .header-btm .navbar .navbar-brand .logo {
    height: 70px;
}

header .header-btm .side-ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

header .header-btm .side-ul .sd-li .shoping-cart {
    font-size: 20px;
    color: #f5f5f5;
    position: relative;
}

header .header-btm .side-ul .sd-li .shoping-cart span {
    position: absolute;
    top: -6px;
    right: -7px;
    background: #4e9925;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 500;
    line-height: 9px;
}

header .header-btm .side-ul .sd-li .shoping-cart h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    position: absolute;
    top: 0;
    left: 100%;
    white-space: nowrap;
    transform: translateX(15px);
}

header .header-btm .side-ul .sd-li .search-bar {
    font-size: 20px;
    color: #ffffff;
}

/***************************** header close *****************************/
/***************************** Footer Start *****************************/
footer {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #191414;
}

footer .footer-top {
    padding: 80px 0;
}

footer .footer-top .footer-logo img {
    width: 100%;
    height: 141px;
    object-fit: contain;
}

footer .footer-top .quik-inks h4 {
    font-size: 24px;
    color: #e8e8e8;
    text-transform: capitalize;
    margin: 0 0 20px 0px;
}

footer .footer-top .quik-inks h5 {
    font-size: 20px;
    color: #e8e8e8;
    text-transform: uppercase;
    margin: 0 0 30px 0;
}

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: 15px;
}

footer .footer-top .quik-inks ul li a {
    color: #a5a5a5;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
    transition: all 0.3s ease-in-out;
}

footer .footer-top .quik-inks ul li a:hover {
    color: #a9da4c;
}

footer .footer-bottom {
    padding: 15px 0;
    background: #222222;
}

footer .footer-bottom .copyright p {
    color: #ffffff;
    font-size: 16px;
    text-transform: capitalize;
}

footer .footer-bottom .copyright p a {
    color: #fafbfd;
}

footer .footer-bottom .privacy-links ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

footer .footer-bottom .privacy-links ul li {
    color: #fafbfd;
}

footer .footer-bottom .privacy-links ul li a {
    color: #fafbfd;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

footer .footer-bottom .privacy-links ul li a:hover {
    background: var(--main-color);
}

footer .footer-top .quik-inks .contact-info li {
    display: flex;
    align-items: center;
    gap: 5px;
}

footer .footer-top .quik-inks .contact-info li span {
    color: #a5a5a5;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
    transition: all 0.5s ease;
}

/*********************** footer close ***********************/
/*********************** Cart Start ***********************/
.section-cart {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #191414;
}

.section-cart .checkout-box {
    border: none;
    margin: 0;
    padding: 0;
    background: #222222;
    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: 30px 30px 0 30px;
}

.section-cart .checkout-box .details h6 {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    text-transform: capitalize;
    margin: 0 0 20px 0;
    padding: 0;
    font-family: "Karla", sans-serif;
}

.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: #fff;
    font-family: "Karla", sans-serif;
    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: 15px 30px;
    margin: 20px 0 0 0;
    border-top: 1px solid #fff;
}

.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: 22px;
    font-weight: 500;
    margin: 0;
    padding: 10px;
    text-align: center;
    font-family: "Karla", sans-serif;
}

.section-cart .cart-table thead tr th.price {
    text-align: left;
}

.section-cart .cart-table tbody tr td {
    vertical-align: middle;
    padding: 20px 10px;
}

.section-cart .cart-table tbody tr:nth-child(odd)>td {
    background-color: hsl(51deg 95.24% 91.76% / 51%);
}

.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: 20px;
    line-height: 20px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: .4px;
}

.section-cart .cart-table tbody tr td .cart-wrapper .desc h4 a {
    color: #fff;
}

.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: #ffffff;
    padding: 15px 0;
    position: relative;
    border-radius: 10px;
    min-width: 150px;
    max-width: 150px;
}

.section-cart .cart-table tbody tr td .cart-wrapper .img-main i {
    position: absolute;
    right: -15px;
    top: -10px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    color: #fff;
    background-color: #4e9925;
    text-align: center;
    border-radius: 100%;
    cursor: pointer;
}

.section-cart .cart-table tbody tr td .cart-wrapper .img-main .cart-img {
    min-width: 100%;
    max-width: 100%;
    min-height: 90px;
    max-height: 90px;
    object-fit: contain;
}

.section-cart .cart-table tbody tr {
    border-bottom: 1px solid #fff;
}

.section-cart .cart-table thead {
    border-bottom: 1px solid #000;
    background: #222222;
}

.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;
    font-family: "Karla", sans-serif;
}

.section-cart .cart-table tbody tr td .btn-box .btn-wh {
    height: 50px;
}

.section-cart .cart-table tbody tr td .input-group {
    align-items: center;
    width: 200px;
    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: 35px;
    width: 35px;
    border-radius: 50%;
    border: 2px solid #4e9925;
    background: #4e9925;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-cart .cart-table tbody tr td .input-group .input-group-btn .btn-quant:hover {
    background: #fff;
    color: #4e9925;
}

.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: none;
    background: #F5F5F7;
    height: 35px;
    border-radius: 10px !important;
    width: 70px;
    flex: inherit;
}

.section-cart .cart-table tbody tr td .price {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0px;
    white-space: nowrap;
    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;
    background-color: #222222;
}

.section-checkout .checkout-form {
    padding: 30px 30px;
    border-radius: 20px;
    background-color: #222222;
    box-shadow: 0px 0px 10px 2px #191414;
}

.section-checkout .checkout-form .form-h {
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    text-transform: capitalize;
    color: #fff;
}

.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: #4e9925;
}

.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: #fff;
    font-family: "Karla", sans-serif;
    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: #ddd;
}

.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: #4e9925;
    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: 20px;
    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: contain;
}

.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: 14px;
    line-height: 14px;
    font-weight: 500;
    color: #ddd;
    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: #4e9925;
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card .desc ul li .color-box {
    width: 50px;
    height: 25px;
    border: 1px solid #333;
}

.section-checkout .checkout-form .order-details ul li .main-box .pd-total {
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    color: #fff;
    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 ***********************/
/*********************** Login & Register CSS Start ***********************/
.register-sec-wrap {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 50px 0;
}

.register-sec-wrap .form-main {
    padding: 20px 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 4px 0.5px #ccc;
}

.register-sec-wrap .form-main .heads {
    margin: 0 0 50px 0;
}

.register-sec-wrap .form-main .heads h6 {
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
    margin: 0 0 10px 0;
    padding: 0;
    text-align: center;
    font-size: 30px;
}

.register-sec-wrap .form-main .heads p {
    font-size: 18px;
    line-height: 21px;
    font-weight: 400;
    text-align: center;
    text-transform: unset;
    margin: 0;
    padding: 0;
    color: rgba(31, 31, 31, 0.5);
}

.register-sec-wrap .form-main .btn-grp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 40px 0 40px 0;
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn {
    color: #1f1f1f;
    height: 55px;
    width: 48%;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0;
    padding: 0 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(31, 31, 31, 0.5);
    background: #fff;
    transition: all 0.2s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 20%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    height: 25px;
    width: 25px;
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn:nth-child(1)::before {
    background-image: url(../images/google.png);
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn:nth-child(2)::before {
    background-image: url(../images/facebook.png);
    left: 18%;
}

.register-sec-wrap .form-main .input-main label {
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    color: #000;
}

.register-sec-wrap .form-main .input-main .fm-ctl {
    border: none;
    height: 45px;
    background-color: #f5f5f7;
    border-radius: 0;
    margin: 10px 0 20px 0;
    padding: 12px 20px;
    color: rgba(31, 31, 31, 0.85);
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

.register-sec-wrap .form-main .input-main {
    position: relative;
}

.field-icon1 {
    /* float: right;
  margin-left: -25px;
  margin-top: -25px;
  position: relative; */
    z-index: 2;
    position: absolute;
    top: 66%;
    right: 20px;
    color: #cb9274;
}

.register-sec-wrap .form-main .submit-btn {
    color: #fff;
    height: 45px;
    width: 99%;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #cb9274;
    background: #cb9274;
    transition: all 0.2s ease-in-out;
    border-radius: 0;
    overflow: hidden;
    box-sizing: content-box;
}

.register-sec-wrap .form-main p {
    color: #1f1f1f;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    margin: 35px 0 0 0;
}

.register-sec-wrap .form-main p .link {
    color: #cb9274;
    text-decoration: underline;
    background: #fff;
    border: none;
}

.register-sec-wrap .form-main .extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.register-sec-wrap .form-main .extra {
    margin: 30px 0;
}

.register-sec-wrap .form-main .extra .form-check .form-check-input:checked {
    background-color: #cb9274;
    border: #cb9274;
}

.register-sec-wrap .form-main .extra .form-check .form-check-label {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0;
}

.register-sec-wrap .form-main .extra .anchor {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #cb9274;
    text-decoration: underline;
}

/*********************** Login & Register CSS Close ***********************/
/*********************** home-page css Start ***********************/
/* banner */
.home-banner-wrap {
    padding: 300px 0;
    overflow: hidden;
    position: relative;
    background: url("../images/banner-bg.png") center center/cover no-repeat;
    height: 85vh;
}

.home-banner-wrap .content h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    margin: 0px 0px 20px;
}

.home-banner-wrap .content p {
    color: #fff;
    text-transform: capitalize;
    font-size: 24px;
}

.home-slider.owl-carousel .owl-nav button.owl-next,
.home-slider.owl-carousel .owl-nav button.owl-prev,
.home-slider.owl-carousel button.owl-dot {
    position: absolute;
    font-size: 30px;
    color: #fff;
}

.home-slider.owl-carousel .owl-nav button.owl-prev {
    top: 50%;
    left: 1%;
}

.home-slider.owl-carousel .owl-nav button.owl-next {
    top: 50%;
    right: 1%;
}

.home-slider.owl-theme .owl-nav [class*="owl-"]:hover {
    background: transparent;
}

.home-slider.owl-theme .owl-nav {
    margin: 0;
}

/* banner */
/*Motorcycle css */
.motorcycle-sec {
    position: relative;
    background-color: #222222;
    padding: 200px 0px 50px;
}

.motorcycle-sec .brand-list {
    margin: 40px 0 0 0;
}

.motorcycle-sec .brand-list .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 120px;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(100);
}

.motorcycle-sec .brand-list .main-img:hover {
    transform: none !important;
    box-shadow: none !important;
}

.motorcycle-sec .brand-list .main-img:hover img {
    filter: brightness(1);
}

.motorcycle-sec .choose-box {
    background-color: #191414;
    padding: 20px 25px 30px;
    border-radius: 20px;
    z-index: 999;
    margin: -300px 0px 0px;
    position: relative;
}

.motorcycle-sec .choose-box h2 {
    margin: 0px 0px 10px;
    font-size: 30px;
    line-height: 40px;
}

.motorcycle-sec .choose-box .para {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 20px;
}

.motorcycle-sec .choose-box .para a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
}

.motorcycle-sec .choose-box .select-broder {
    background: transparent;
    border: 2px solid #acacac;
    border-radius: 100px;
    height: 50px;
    color: #acacac;
    text-transform: uppercase;
    padding: 5px 20px;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 25px;
    cursor: pointer;
}

.filter-btn {
    font-weight: 600;
    height: 50px;
    color: #fff;
    background: var(--main-color);
    border-radius: 100px;
    font-size: 16px;
    text-transform: uppercase;
    padding: 0px 33px;
    border: 0;
}

.motorcycle-sec .main-img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin: 0px 0px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.motorcycle-sec .main-img:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.motorcycle-sec .main-img img {
    width: 100%;
    height: 275px;
    object-fit: cover;
}

.motorcycle-sec .main-img h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.motorcycle-sec .main-img:hover h3 {
    color: #000;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
}

.motorcycle-sec .main-img.big-img img {
    height: 570px;
}

.motorcycle-sec .logo-group {
    margin: 30px 0px 0px;
}

.motorcycle-sec .logo-group img {
    width: 100%;
    height: 85px;
    object-fit: cover;
}

/*Motorcycle css */

/* motorcycle-part-sec */
.motorcycle-part-sec {
    background-color: #191414;
    padding: 100px 0px;
    position: relative;
}

.head {
    text-align: center;
    margin: 0px 0px 40px;
}

.head h6 {
    color: #4e9925;
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
    margin: 0px 0px 10px;
    font-family: "Karla", sans-serif;
}

.head h2 {
    font-size: 40px;
    margin: 0px 0px 10px;
}

.motorcycle-part-sec .main-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.motorcycle-part-sec .main-box .part-box .part-img {
    background-color: #222222;
    height: 248px;
    border-radius: 10px;
    margin: 0px 0px 10px;
    position: relative;
    overflow: hidden;
}

.motorcycle-part-sec .main-box .part-box .part-img img {
    width: 100%;
    height: 247px;
    object-fit: contain;
}

.motorcycle-part-sec .main-box .part-box .part-img .new {
    position: absolute;
    color: #fff;
    top: 13px;
    left: 13px;
    height: 50px;
    width: 50px;
    background: #4e9925;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    text-align: center;
}

.motorcycle-part-sec .main-box .part-box .part-content {
    text-align: center;
}

.motorcycle-part-sec .main-box .part-box .part-content h3 {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    color: #fff;
    margin: 0px 0px 8px;
}

.motorcycle-part-sec .main-box .part-box .part-content h3 a:hover {
    color: #4e9925;
}

.motorcycle-part-sec .main-box .part-box .part-content h3 a {
    color: #fff;
}

.motorcycle-part-sec .main-box .part-box .part-content p {
    margin: 0px 0px 8px;
}

.motorcycle-part-sec .main-box .part-box .part-content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0px 0px 8px;
}

.motorcycle-part-sec .main-box .part-box .part-content ul li i {
    color: #eabe12;
    font-size: 13px;
}

.motorcycle-part-sec .main-box .part-box .part-content h6 {
    color: #4e9925;
    font-size: 15px;
    font-family: "Karla", sans-serif;
}

.motorcycle-part-sec .pagination-wrapper {
    margin: 30px 0 0 0;
}

.motorcycle-part-sec .pagination-wrapper .pagination {
    justify-content: center;
}

.motorcycle-part-sec .pagination-wrapper .pagination .page-item .page-link:focus {
    box-shadow: none;
}

.motorcycle-part-sec .pagination-wrapper .pagination .page-item.active .page-link {
    background: var(--main-color);
    border: 1px solid #78b737;
    color: #fff;
}

.motorcycle-part-sec .pagination-wrapper .pagination .page-link {
    color: #83be3b;
}

.tab-ul {
    justify-content: center;
    margin: 0px 0px 40px !important;
    gap: 30px;
}

.tab-ul .nav-item .tab-btn {
    background: transparent;
    color: rgba(172, 172, 172, 1);
    font-size: 16px;
    font-weight: 500;
    font-family: "Hepta Slab", serif;
    text-transform: uppercase;
    padding: 0;
}

.tab-ul .nav-item .tab-btn.active {
    color: #4e9925;
    border-bottom: 2px solid #4e9925;
    border-radius: 0;
    padding: 0;
}

/* motorcycle-part-sec */

/* together-sec */
.together-sec {
    background-image: url("../images/background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
}

.together-sec .main-img {
    position: relative;
}

.together-sec .main-img img {
    width: 100%;
    height: 485px;
    object-fit: contain;
    position: relative;
}

.together-sec .main-img .circle-box .para {
    background: #000;
    width: 300px;
    padding: 20px;
    text-align: center;
    border-radius: 7px;
    position: absolute;
    top: 0%;
    right: 6%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    visibility: hidden;
}

.together-sec .main-img .circle-box.circle-box-2 .para {
    right: 33%;
    top: 23%;
}

.together-sec .main-img .circle-box.circle-box-3 .para {
    left: -12%;
    top: 22%;
}

.together-sec .main-img .circle-box .para::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    border-style: solid;
    border-width: 20px 0px 0px 20px;
    border-top-color: rgb(0 0 0);
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.together-sec .main-img .circle-box .para p {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
}

.together-sec .main-img .circle-box .cir1 {
    height: 36px;
    width: 36px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 31%;
    right: 21%;
    cursor: pointer;
    z-index: 1;
}

.together-sec .main-img .circle-box.circle-box-2 .cir1 {
    right: 48%;
    top: 54%;
}

.together-sec .main-img .circle-box.circle-box-3 .cir1 {
    left: 9%;
    top: 54%;
}

.together-sec .main-img .cir2 {
    background-color: rgba(0, 131, 40, 1);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.together-sec .main-img .cir3 {
    height: 6px;
    width: 6px;
    background-color: #fff;
    border-radius: 50%;
}

.together-sec .txt h2 {
    font-size: 45px;
    line-height: 60px;
    margin: 0px 0px 6px;
}

.together-sec .txt h2 span {
    background: var(--main-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.together-sec .txt p {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    margin: 0px 0px 20px;
}

.together-sec .txt .filter {
    display: flex;
}

.together-sec .txt .filter .filter-btn {
    padding: 13px 28px;
    border-radius: 30px;
    border: 0;
}

/* together-sec */

/* our-blog-sec */
.our-blog-sec {
    background-color: #222222;
    position: relative;
    padding: 100px 0px;
}

.our-blog-sec .blog-box {
    margin: 10px;
}

.our-blog-sec .blog-box .main-img {
    margin: 0px 0px 14px;
}

.our-blog-sec .blog-box .main-img img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 10px;
}

.our-blog-sec .blog-box .text h6 {
    font-size: 14px;
    color: #4e9925;
    line-height: 24px;
    font-family: "Karla", sans-serif;
}

.our-blog-sec .blog-box .text h2 {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}

.our-blog-sec .slick-prev:before,
.our-blog-sec .slick-next:before {
    background: var(--main-color);
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 24px;
    color: #ffffff !important;
    opacity: 1;
}

.our-blog-sec .slick-next:before {
    content: "\f105";
    font-family: "Font Awesome 6 pro";
    font-weight: 300;
}

.our-blog-sec .slick-prev:before {
    content: "\f104";
    font-family: "Font Awesome 6 pro";
    font-weight: 300;
}

.our-blog-sec .slick-prev {
    left: -60px;
}

.our-blog-sec .slick-next {
    right: -40px;
}

.our-blog-sec .slick-prev,
.slick-next {
    top: 38%;
}

/* our-blog-sec */

/* triumph-sec */

.triumph-sec .main-img img {
    width: 100%;
    height: 709px;
    object-fit: cover;
}

.triumph-sec .triumph-box {
    background-color: #191414;
    /* width: 100%; */
    text-align: center;
    padding: 45px 90px 60px;
}

.triumph-sec .triumph-box h2 {
    font-size: 36px;
    line-height: 56px;
    margin: 0px 0px 39px;
}

.triumph-sec .triumph-box h2 span {
    color: #4e9925;
}

.triumph-sec .triumph-box .main-img img {
    height: 453px;
    object-fit: contain;
    width: 100%;
}

.triumph-sec .owl-theme .owl-nav {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 00px 0px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.triumph-sec .owl-carousel .owl-nav button.owl-next,
.triumph-sec .owl-carousel .owl-nav button.owl-prev,
.triumph-sec .owl-carousel button.owl-dot {
    background: #222222;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 0;
    font-size: 20px;
    color: #777;
}

/* triumph-sec */
/*********************** home-page css Close ***********************/
/*********************** inner-page css Start ***********************/

/* about-us page */
.about-page-sec {
    background-image: url(../images/about-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 300px 0px 210px;
}

.about-page-sec .content h1 {
    font-size: 50px;
}

/* about-us page */
/* about-koss */
.about-koss {
    padding: 100px 0px;
    background-color: #191414;
}

.service-sec .row:nth-child(even) {
    flex-direction: row-reverse;
}

.about-koss .content h2 {
    font-size: 45px;
    line-height: 55px;
    margin: 0px 0px 20px;
}

.about-koss .content p {
    font-size: 18px;
    line-height: 28px;
    margin: 0px 0px 25px;
    width: 84%;
}

.about-koss.service-sec .content p {
    width: 100%;
}

.about-koss .content .filter {
    display: flex;
}

.about-koss .main-img {
    position: relative;
    overflow: hidden;
}

.about-koss .main-img img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.about-koss .main-img:hover img {
    transform: scale(1.1);
}

section.about-koss.service-sec .content.service-content {
    padding: 0px 0px 0px 48px;
}

.about-koss.service-sec .content .para {
    width: 75%;
}

section.about-koss.vehicle .main-img img {
    border-radius: 50%;
    height: 568px;
    width: 568px;
}

section.about-koss.vehicle .main-img {
    border-radius: 50%;
    overflow: hidden;
    height: 568px;
    width: 568px;
}

/* about-koss */

/* contact-sec */
.contact-sec {
    background-color: #222222;
    padding: 100px 0px;
}

.contact-sec .call-box {
    background-color: #191414;
    text-align: center;
    padding: 33px 33px;
    border-radius: 15px;
    margin: 0px 0px 100px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-sec .call-box h6 {
    font-size: 30px;
    font-weight: 400;
    margin: 0px 0px 10px;
}

.contact-sec .call-box a {
    color: #fff;
    font-size: 22px;
    margin: 0px 0px 15px;
}

.contact-sec .call-box img {
    margin: 0px 0px 25px;
    width: 100%;
    height: 61px;
    object-fit: contain;
}

.contact-sec .mian-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.contact-sec .form-box h2 {
    font-size: 45px;
    line-height: 55px;
    margin: 0px 0px 13px;
}

.contact-sec .form-box p {
    font-size: 18px;
    line-height: 28px;
    margin: 0px 0px 20px;
}

.contact-sec .form-box .contact-form .form-control {
    background: #191414;
    color: #fff;
    height: 54px;
    border: 2px solid #3c3c3c;
    border-radius: 5px;
    margin: 0px 0px 20px;
    padding: 17px 21px;
    font-size: 15px;
    justify-content: space-around;
}

.contact-sec .form-box .contact-form .form-control::placeholder,
.contact-sec .form-box .contact-form .form-control.message-input::placeholder {
    color: #b3b3b3;
    font-size: 15px;
}

.contact-sec .form-box .contact-form .form-control.message-input {
    height: auto;
}

/* contact-sec */

/*======================
    404 page
=======================*/
.page_404 {
    padding: 40px 0;
    background: #fff;
}

.page_404 img {
    width: 100%;
}

.four_zero_four_bg {
    background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
    height: 400px;
    background-position: center;
}

.four_zero_four_bg h1 {
    font-size: 80px;
}

.four_zero_four_bg h3 {
    font-size: 80px;
}

.link_404 {
    color: #fff !important;
    padding: 10px 20px;
    background: #39ac31;
    margin: 20px 0;
    display: inline-block;
}

.contant_box_404 {
    margin-top: -50px;
}

.showroom-sec .showroom-box {
    grid-template-columns: repeat(4, 1fr);
}

.showroom-sec .select-brand {
    background: #222222;
    border-radius: 10px;
    padding: 24px 20px 24px;
    margin: 0px 0px 20px;
}

.showroom-sec .select-brand .form-check.check {
    margin: 0px 0px 7px 0px;
}

.showroom-sec .select-brand h2 {
    font-size: 18px;
    line-height: 28px;
    border-bottom: 1px solid #e4e4e45c;
    padding: 0px 0px 14px;
    margin: 0px 0px 15px;
}

.showroom-sec .select-brand .check .form-check-input {
    background-color: #3b3b3b;
    border: 1px solid #4c4c4c;
    border-radius: 3px;
    height: 15px;
    width: 15px;
}

.showroom-sec .select-brand .check .form-check-label {
    color: #fff;
    font-size: 15px;
}

.showroom-sec .show-bike {
    background: #222222;
    border-radius: 10px;
    padding: 24px 20px 24px;
    margin: 0px 0px 20px;
}

.showroom-sec .show-bike h2 {
    font-size: 18px;
    line-height: 28px;
    border-bottom: 1px solid #e4e4e45c;
    padding: 0px 0px 14px;
    margin: 0px 0px 15px;
}

.showroom-sec .show-bike .modal-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 10px;
}

.showroom-sec .show-bike .modal-name.active a,
.showroom-sec .show-bike .modal-name.active p {
    color: #4e9925;
}

.showroom-sec .show-bike .modal-name a {
    font-size: 15px;
    color: #fff;
    text-decoration: underline;
}

.showroom-sec .show-bike .modal-name p {
    color: #fff;
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.showroom-sec .show-bike .modal-name:hover p {
    color: #4e9925;
}

.showroom-sec .show-bike .modal-name:hover a {
    color: #4e9925;
}

.showroom-sec .filter-box {
    background: #222222;
    border-radius: 10px;
    padding: 24px 20px 42px;
    margin: 0px 0px 20px;
}

.showroom-sec .filter-box .price-range-block {
    margin: 20px 0 0 0;
}

.showroom-sec .filter-box .price-range-block .result-head .search-results-block {
    position: relative;
    display: block;
    clear: both;
    margin: 0 0 15px 0;
}

.showroom-sec .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;
}

.showroom-sec .filter-box .price-range-block .ui-slider-horizontal {
    height: 8px;
}

.showroom-sec .filter-box .price-range-block .ui-widget.ui-widget-content {
    border: 1px solid #e2e2e2;
    border-radius: 100px;
    background-color: #000;
}

.showroom-sec .filter-box .text-price {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #fff;
}

.showroom-sec .filter-box .price-range-block .ui-widget.ui-widget-content .ui-state-default,
.filter-box .price-range-block .ui-widget.ui-widget-content .ui-widget-content.showroom-sec .ui-state-default,
.filter-box .price-range-block .ui-widget.ui-widget-content .ui-widget-header .ui-state-default,
.showroom-sec .filter-box .price-range-block .ui-widget.ui-widget-content .ui-button,
.showroom-sec html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid #4e9925;
    background: #4e9925;
    font-weight: normal;
    color: #4e9925;
    border-radius: 100px;
    height: 16px;
    width: 16px;
    cursor: pointer;
    display: block;
    top: -5px;
}

.showroom-sec .filter-box .price-range-block .ui-slider-horizontal {
    width: 100%;
    margin: 0 0 15px;
}

.showroom-sec .filter-box .price-range-block .ui-widget.ui-widget-content .ui-widget-header {
    background: #ffffff;
}

.showroom-sec .filter-box .price-range-block .btn-box {
    margin: 20px 0 0 0;
}

.showroom-sec .filter-box .price-range-block .btn-wh {
    height: 28px;
}

.showroom-sec .brand-list {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 15px;
    padding: 22px 22px;
    margin: 30px 0 0 0;
}

.showroom-sec .filter-box h4,
.brand-list h4 .showroom-sec {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    padding: 0 0 2px 0;
}

section.about-page-sec.details-page {
    padding: 200px 0px 120px;
}

.product-details-tab-sec {
    background: #191414;
    padding: 0px 0px 40px;
    border-top: 1px solid #a5a5a573;
    border-bottom: 1px solid #a5a5a573;
}

.product-details-tab-sec .product-details-tab-ul {
    justify-content: center;
    gap: 30px;
}

.product-details-tab-sec .product-details-tab-ul .nav-item .nav-link {
    color: #ffffffb8;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    padding: 40px 0px;
}

.product-details-tab-sec .product-details-tab-ul .nav-item .nav-link.active {
    background: transparent;
    color: #fff;
    border-top: 3px solid #4e9925;
    border-radius: 0;
    padding: 0px 0px 0px 0px;
    padding: 40px 0px;
    position: relative;
}

.head.text-left {
    text-align: left;
}

.product-details-tab-sec .desc-box .bx h4 {
    border-left: 2px solid #4e9925;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    padding: 0 0 0 35px;
    margin: 20px 0;
    color: #a5a5a5;
}

.product-details-tab-sec .desc-box .bx h3 {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 10px 0;
    color: #fff;
}

.product-details-tab-sec .desc-box .bx ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 5px;
    margin: 30px 0 0 0;
    list-style: disc;
    padding: 0 0 0 30px;
}

.product-details-tab-sec .desc-box .bx ul li {
    color: #a5a5a5;
}

.product-details-tab-sec .desc-box .bx .cd-crd {
    margin: 0 0 20px 0;
}

.product-details-tab-sec .desc-box .bx .cd-crd h5 {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 10px 0;
    color: #fff;
}

.product-details-tab-sec .review-box h4 {
    font-size: 20px;
    line-height: 30px;
    margin: 0px 0px 17px;
}

.product-details-tab-sec .review-box p {
    margin: 0px 0px 20px;
}

.product-details-tab-sec .review-box .line {
    margin: 0px 0px 20px;
}

.product-details-tab-sec .review-box .review-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 20px;
}

.product-details-tab-sec .review-box .review-detail p {
    margin: 0;
    color: #fff;
}

.product-details-tab-sec .review-box .review-detail span {
    font-family: "Karla", sans-serif;
    color: #777;
}

/*********************** login-&-register Start ***********************/
.register-sec {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    background-color: #222222;
}

.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: #fff;
}

.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;
    font-family: "Hepta Slab", serif;
}

.register-sec .form-main .head p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
}

.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;
    font-family: "Hepta Slab", serif;
}

.register-sec .form-main .form-box .check-forgot .forgot-pass .forgot:hover {
    color: #449120;
}

.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: #449120;
}

.register-sec .form-main {
    border-radius: 20px;
    padding: 30px 30px;
    box-shadow: 0px 0px 10px 5px #191414;
}

.register-sec .form-main .footer-acc {
    margin: 10px 0 0 0;
}

.register-sec .form-main .footer-acc p a {
    color: #fff;
}

.register-sec .form-main .footer-acc p a:hover {
    color: #449120;
}

/*********************** login-&-register Close ***********************/
/*********************** Product-Detail-page css Start ***********************/
.product-detail-sec {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
    background-color: #191414;
}

/* swiper slider start */
.product-detail-sec .slider-main {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row-reverse;
    height: 530px;
}

.product-detail-sec .slider-main .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-detail-sec .slider-main .discount {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #d08771;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Karla', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
}

.product-detail-sec .slider-main .gallery-thumbs .swiper-slide {
    width: 100%;
    height: 100%;
    opacity: 0.4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
    background-color: #222222;
}

.product-detail-sec .slider-main .gallery-thumbs .swiper-slide-active {
    opacity: 1;
}

.product-detail-sec .slider-main .gallery-thumbs {
    width: calc(25% - 25px);
    height: 100%;
    box-sizing: border-box;
    padding: 0 0;
    position: unset;
    margin: 0;
    position: relative;
}

.product-detail-sec .slider-main .gallery-thumbs .swiper-slide-active {}

.product-detail-sec .slider-main .gallery-thumbs .swiper-slide:hover {}

.product-detail-sec .slider-main .gallery-thumbs .swiper-slide .main-img {}

.product-detail-sec .slider-main .gallery-thumbs .swiper-slide .main-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-sec .slider-main .gallery-top {
    width: 75%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
}

.product-detail-sec .slider-main .gallery-top .swiper-slide img {
    display: block;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    border: none;
    background-color: #222222;
}

.product-detail-sec .slider-main .gallery-top .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.product-detail-sec .slider-main .gallery-top .swiper-slide a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-sec .slider-main .navs {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: row;
    z-index: 999;
    bottom: 0;
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    gap: 5px;
}

.product-detail-sec .slider-main .navs .swiper-button-next,
.product-detail-sec .slider-main .navs .swiper-button-prev {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    height: 30px;
    width: 100%;
    background: #3A3A3A;
}

.product-detail-sec .slider-main .navs .swiper-button-next::after,
.product-detail-sec .slider-main .navs .swiper-button-prev::after {
    content: '\f106';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

.product-detail-sec .slider-main .navs .swiper-button-prev::after {
    content: '\f107';
}

/* swiper slider close */

.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: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: #A5A5A5;
    font-family: "Karla", sans-serif;
}

.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: #4e9925;
    border: 1px solid #4e9925;
    font-weight: 900;
}

.product-detail-sec .product-info .desc-main {
    margin: 0;
    padding: 0 0 40px 0;
    border-bottom: 1px solid #7777777d;
}

.product-detail-sec .product-info .desc-main h2 {
    width: 80%;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 36px;
    text-transform: capitalize;
    color: #ffffff;
}

.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: 15px 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: #4E9925;
}

.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 {
    margin: 10px 0 0 0;
}

.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: #4E9925;
}

.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: #A5A5A5;
}

.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: 210px;
    height: 50px;
    border: none;
    border-radius: 6px;
    padding: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid #777;
}

.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 .quantity-left-minus {
    border-right: 1px solid #777;
}

.product-detail-sec .product-info .desc-main .range-cart .input-group .input-group-btn .quantity-right-plus {
    border-left: 1px solid #777;
}

.product-detail-sec .product-info .desc-main .range-cart .input-group .input-group-btn .btn-quant {
    background-color: transparent;
    border-radius: 0;
    color: #FFF;
    padding: 0;
    height: 100%;
    width: 40px;
    border-radius: 0%;
    background: transparent;
    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: #fff;
    text-align: center;
    opacity: 100%;
    border: none;
    background: transparent;
    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%;
    height: 50px;
}

.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 .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: #FFF;
    font-family: "Karla", sans-serif;
}

.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: #ffffff;
    font-family: "Karla", sans-serif;
}

.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: #4e9925;

}

.product-detail-sec .product-info .desc-main .variations-box .item-box ul li .chartGuide:hover {
    color: #4e9925;
}

.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: 100%;
    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 transparent;
}

.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: 3px solid #68ab30;
}

.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 #7cb938;
}

.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: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
}

.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 button.btn-tag {
    background: transparent;
    border: none;
}

.product-detail-sec .product-info .desc-main .compare-box ul li .btn-tag:hover i {
    background: #4E9925;
    border: 1px solid #4E9925;
}

.product-detail-sec .product-info .desc-main .compare-box ul li .btn-tag:hover h4 {
    color: #4E9925;
}

.product-detail-sec .product-info .desc-main .compare-box ul li .btn-tag {
    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: #fff;
}

.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 {
    padding: 25px 0 0 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: #fff;
    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 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

.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: uppercase;
    color: #fff;
    font-family: "Karla", sans-serif;
}

.product-detail-sec .product-info .bottomDesc ul li .desc-info .info-bx p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #696C70;
}

.product-detail-sec .product-info .bottomDesc ul li .desc-info .info-bx ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

.product-detail-sec .product-info .bottomDesc ul li .desc-info .info-bx ul li {}

.product-detail-sec .product-info .bottomDesc ul li .desc-info .info-bx ul li a {}

.product-detail-sec .product-info .bottomDesc ul li .desc-info .info-bx ul li a i:hover {
    color: #4E9925;
}

.product-detail-sec .product-info .bottomDesc ul li .desc-info .info-bx ul li a i {
    color: #696C70;
}

.product-detail-sec .long-desc {
    margin: 70px 0 0 0;
    border-top: 1px solid #a5a5a573;
    border-bottom: 1px solid #a5a5a573;
    padding: 0 0 50px;
}

.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: 20px;
    font-family: "Karla", sans-serif;
    line-height: 25px;
    text-transform: uppercase;
    color: #A0A0A0;
    margin: 0;
    padding: 20px 0 0 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;
    top: 0;
    right: 0;
    height: 3px;
    width: 100%;
    background-color: #4e9925;
    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: #fff;
    background: transparent;
    position: relative;
}

.product-detail-sec .long-desc .tabs-list .nav .nav-item .nav-link.active::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    height: 3px;
    width: 100%;
    background-color: #4e9925;
}

.product-detail-sec .long-desc .tabs-list .tab-content {
    margin: 30px 0 0 0;
}

.product-detail-sec .long-desc .tabs-list .tab-content .product-detailBox h4 {
    text-transform: capitalize;
    font-size: 30px;
    line-height: 40px;
    color: #fff;
}

.product-detail-sec .long-desc .tabs-list .tab-content .spec-box {
    margin: 20px 0 0 0;
}

.product-detail-sec .long-desc .tabs-list .tab-content .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 .long-desc .tabs-list .tab-content .spec-box ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    row-gap: 0;
    column-gap: 40px;
}

.product-detail-sec .long-desc .tabs-list .tab-content .spec-box ul li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    padding: 20px 10px;
    font-size: 14px;
    border-radius: 0px;
    flex-basis: calc((100% - 2 * 30px) / 2);
    max-width: calc((100% - 2 * 30px) / 2);
    box-sizing: border-box;
    border-top: 1px solid #7777777d;
}

.product-detail-sec .long-desc .tabs-list .tab-content .spec-box ul li p {
    flex-basis: calc((100% - 2 * 30px) / 2);
    max-width: calc((100% - 2 * 30px) / 2);
    box-sizing: border-box;
    color: #fff;
    font-weight: 600;
}

.product-detail-sec .long-desc .tabs-list .tab-content .spec-box ul li span {
    font-size: 15px;
    line-height: 25px;
    text-transform: unset;
    font-weight: 600;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-family: "Karla", sans-serif;
    color: #777;
}

.product-detail-sec .long-desc .bx-dtl .row .col-12{
    margin: 0 0 20px 0;
}

.product-detail-sec .long-desc .bx-dtl h4 {
    border-left: 2px solid #4E9925;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    padding: 0 0 0 35px;
    margin: 20px 0;
    color: #A5A5A5;
}

.product-detail-sec .long-desc .bx-dtl h3 {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 10px 0;
    color: #fff;
}

.product-detail-sec .long-desc .bx-dtl ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 5px;
    margin: 30px 0 0 0;
    list-style: disc;
    padding: 0 0 0 30px;
}

.product-detail-sec .long-desc .bx-dtl ul li {
    color: #A5A5A5;
}

.product-detail-sec .long-desc .bx-dtl .cd-crd {
    margin: 0 0 20px 0;
}

.product-detail-sec .long-desc .bx-dtl .cd-crd h5 {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 10px 0;
    color: #fff;
}

.product-detail-sec .long-desc .bx-dtl .cd-crd p {}

/* coment-sec */
.comments-sec {
    background-color: transparent;
    position: relative;
    overflow: hidden;
    padding: 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: #777;
}

.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: #4E9925;
}

.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: #777;
}

.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;
    text-transform: capitalize;
    font-size: 30px;
    line-height: 40px;
    color: #fff;
}

.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: #fff;
}

.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: #eabe12;
    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: #ddd;
}

.comments-sec .main-box .top-content .rating-box .rating-bar {
    margin: 20px 0 0 0;
}

.comments-sec .main-box .clients-riview-list {
    margin: 30px 0;
    min-height: auto;
    max-height: 900px;
    overflow-y: scroll;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 40px;
    padding: 0 20px;
}

.comments-sec .main-box .clients-riview-list .client-card {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    flex-direction: row;
    padding: 20px 20px;
    margin: 0;
    background-color: #222222;
    border-radius: 20px;
    flex-basis: calc((100% - 3 * 30px) / 3);
    max-width: calc((100% - 3 * 30px) / 3);
    box-sizing: border-box;
}

.comments-sec .main-box .clients-riview-list .client-card .imgs-box {
    margin: 0;
    min-width: 120px;
    max-width: 120px;
    text-align: left;
}

.comments-sec .main-box .clients-riview-list .client-card .imgs-box .main-img {
    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 .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 .coment-box {
    width: 100%;
}

.comments-sec .main-box .clients-riview-list .client-card .imgs-box .info {
    margin: 10px 0 0 0;
}

.comments-sec .main-box .clients-riview-list .client-card .imgs-box .info h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    text-transform: capitalize;
    color: #fff;
}

.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: #eabe12;
    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: 16px;
    line-height: 22px;
    color: #fff;
    min-height: auto;
    max-height: 180px;
    overflow-y: scroll;
}


.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;
    text-transform: capitalize;
    font-size: 30px;
    line-height: 40px;
    color: #fff;
}

.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: #4E9925;
}

.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;
}

.shopSec-wrap {
    padding: 0 0 100px 0;
    overflow: hidden;
    background-color: #191414;
}

.shopSec-wrap .head {
    text-align: left;
}

.shopSec-wrap .head h2 {
    color: #4E9925;
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
    font-family: "Karla", sans-serif;
}

.shopSec-wrap .head h3 {
    font-size: 40px;
}

.shopSec-wrap .part-box .part-img {
    background-color: #222222;
    height: 248px;
    border-radius: 10px;
    margin: 0px 0px 10px;
    position: relative;
    overflow: hidden;
}

.shopSec-wrap .part-box .part-img img {
    width: 100%;
    height: 247px;
    object-fit: contain;
}

.shopSec-wrap .part-box .part-img .new {
    position: absolute;
    color: #fff;
    top: 13px;
    left: 13px;
    height: 50px;
    width: 50px;
    background: #4e9925;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    text-align: center;
}

.shopSec-wrap .part-box .part-content {
    text-align: center;
}

.shopSec-wrap .part-box .part-content h3 {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    color: #fff;
    margin: 0px 0px 8px;
}

.shopSec-wrap .part-box .part-content h3 a:hover {
    color: #4e9925;
}

.shopSec-wrap .part-box .part-content h3 a {
    color: #fff;
}

.shopSec-wrap .part-box .part-content p {
    margin: 0px 0px 8px;
}

.shopSec-wrap .part-box .part-content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0px 0px 8px;
}

.shopSec-wrap .part-box .part-content ul li i {
    color: #eabe12;
    font-size: 13px;
}

.shopSec-wrap .part-box .part-content h6 {
    color: #4e9925;
    font-size: 15px;
    font-family: "Karla", sans-serif;
}

/*********************** Product-Detail-page css Close ***********************/
/*********************** Faqs-page css START ***********************/
.frequently-sec {
    padding: 100px 0px;
    overflow: hidden;
    position: relative;
    background-color: #191414;
}

.frequently-sec .head {
    text-align: center;
    margin: 0px 0px 50px 0px;
}

.frequently-sec .head h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    color: #fff;
}

.frequently-sec .faq-box .accordion .accordion-item {
    margin: 0 0 40px;
    background: #222222;
    border: none;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 5px #191414;
}

.frequently-sec .faq-box .accordion-item .accordion-header button.accordion-button {
    box-shadow: none;
    border-radius: 0px;
    padding: 23px 23px;
    display: flex;
    align-items: center;
    margin: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 25px;
    text-transform: capitalize;
    color: #333;
    background: #ffffff;
}

.frequently-sec .faq-box .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background: var(--main-color);
    color: #ffffff;
}

.frequently-sec .faq-box .accordion-item .accordion-header .accordion-button::after {
    content: "\f107";
    font-family: "Font Awesome 6 pro";
    background: transparent;
    color: #000000;
    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: #fff;
}

.frequently-sec .faq-box .accordion-item .accordion-collapse .accordion-body {
    background: transparent;
    color: #e8e8e8;
    font-size: 20px;
    line-height: 27px;
    margin: 0;
    padding: 15px 15px;
    border-radius: 0px;
    border: none !important;
}

.frequently-sec .faq-box .accordion .accordion-item .accordion-body p {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: justify;
    color: #cbcbcb;
}

.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 ***********************/
/*********************** content-manage-page css Start ***********************/
.contentManage-sec {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.contentManage-sec .content-box h1,
.contentManage-sec .content-box h2,
.contentManage-sec .content-box h3,
.contentManage-sec .content-box h4,
.contentManage-sec .content-box h5,
.contentManage-sec .content-box h6,
.contentManage-sec .content-box p {
    margin: 0 0 20px 0;
}

/*********************** content-manage-page css Close ***********************/
/*********************** Modal css Start ***********************/
.customModal .modal-content {
    background-color: #222222;
    box-shadow: 0px 0px 6px 1px #191414;
    border-radius: 20px;
}

.customModal .modal-content .modal-header {
    border: none;
    padding: 0;
    position: relative;
    justify-content: flex-end;
}

.customModal .modal-content .modal-header .btn-close {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 0px;
    opacity: inherit;
    width: auto;
    height: auto;
}

.customModal .modal-content .modal-header .btn-close i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a9da4c;
    color: #fff;
    background-color: #a9da4c;
    border-radius: 100px;
    font-size: 25px;
}

.customModal .modal-content .modal-header .btn-close i:hover {
    border: 1px solid #449120;
    background-color: #449120;
}

.customModal .modal-content .main-box .btn-box {
    margin: 20px 0 0 0;
    justify-content: space-between;
}

.customModal .modal-content .main-box .btn-box .btn-wh {
    width: 200px;
    height: 50px;
}

.customModal .modal-content .main-box .head {
    margin: 0 0 20px 0;
}

.customModal .modal-content .main-box .head h2 {
    font-size: 26px;
    line-height: 30px;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    color: #fff;
    letter-spacing: .5px;
}

.customModal .modal-content .main-box .head h4 {
    font-size: 22px;
    line-height: 25px;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    color: #fff;
    background: var(--main-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: .5px;
    margin: 5px 0 0 0;
}

.customModal .modal-content .main-box .calender-select .sub-heading {
    font-size: 19px;
    line-height: 23px;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    color: #fff;
    text-align: center;
    margin: 0 0 10px 0;
    letter-spacing: .5px;
}

.customModal .modal-content .main-box .calender-select .guest-time-box {
    height: auto;
    padding: 65px 20px 20px 20px;
}

.customModal .modal-content .main-box .calender-select .guest-time-box .timeHead {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
}

.customModal .modal-content .main-box .calender-select .guest-time-box .timeHead .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100px;
    height: 40px;
    overflow: hidden;
    border-radius: 5px;
}

.customModal .modal-content .main-box .calender-select .guest-time-box .timeHead .form-check .form-check-input {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-radius: 0px;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    background-color: #191414;
}

.customModal .modal-content .main-box .calender-select .guest-time-box .timeHead .form-check .form-check-label {
    padding: 0;
    margin: 0;
    color: #fff;
    z-index: 1;
    font-weight: 700;
}

.customModal .modal-content .main-box .calender-select .guest-time-box .timeHead .form-check .form-check-input:checked[type="radio"] {
    --bs-form-check-bg-image: none;
    background: var(--main-color) !important;
}

.customModal .modal-content .main-box .calender-select .guest-time-box .timeHead .form-check .form-check-input:checked[type="radio"]~.form-check-label {
    color: #fff !important;
}

.customModal .modal-content .main-box .calender-select .fc .fc-view-harness {
    height: 520px !important;
    overflow-y: auto;
}

.customModal .app-fullcalendar.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 0.5em;
}

.customModal .app-fullcalendar .fc-scrollgrid thead .fc-scrollgrid-section .fc-col-header-cell {
    padding: 10px 10px;
    background-color: #191414;
}

.customModal .app-fullcalendar .fc-scrollgrid thead .fc-scrollgrid-section .fc-col-header-cell .fc-scrollgrid-sync-inner .fc-col-header-cell-cushion {
    padding: 0;
    color: #fff;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.customModal .app-fullcalendar .fc-scrollgrid tbody .fc-scrollgrid-section .fc-daygrid-day {
    padding: 10px 0px;
}

.customModal .app-fullcalendar .fc-scrollgrid tbody .fc-scrollgrid-section .fc-daygrid-day .fc-daygrid-day-frame .fc-daygrid-day-top {
    justify-content: center;
}

.customModal .app-fullcalendar .fc-scrollgrid tbody .fc-scrollgrid-section .fc-daygrid-day .fc-daygrid-day-frame .fc-daygrid-day-top .fc-daygrid-day-number {
    padding: 0;
    color: #fff;
}

/*********************** Modal css Close ***********************/