@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;
}

main {
    overflow: hidden;
}

a {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

:root {
    --main-color: linear-gradient(90deg, #A9DA4C 0%, #449120 100%);
}

.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: .4s;
    transition: .4s;
    display: none;
    border-radius: 50%;
    cursor: pointer;
}

.scroll-to-top i {
    color: #fff;
    font-size: 18px;
    line-height: 50px;
    -webkit-transition: .4s;
    transition: .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 .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 double var(--main-color);
    overflow: hidden;
    transition: all .3s ease-in-out;
    padding: 10px 14px;
    border-radius: 100px;
}

.btn-box .btn-primary:hover {
    background-color: #ff5722;
}

.btn-box .btn-secondary {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    text-transform: capitalize;
    color: #fff;
    background-color: #7c65ff;
    border-radius: 0px;
    border: 1px double #7c65ff;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.btn-box .btn-secondary:hover {
    background-color: #7c65ff;
}

.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: #ff5722 !important;
}

.hvr-bounce-to-right:hover:after,
.hvr-bounce-to-right:focus:after,
.hvr-bounce-to-right:active:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Right */
/* Bounce To left */
.hvr-bounce-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-left::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
    color: #7c65ff !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: #313747;
    line-height: 24px;
}

.input-main p span,
.input-main label span {
    color: #FF6B6B;
}

.input-main .form-group {
    position: relative;
}

.input-main .form-group .card-imgs {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 20px;
    color: #74769E;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 3px;
}

.input-main .form-group .card-imgs li img {
    min-width: 26px;
    max-width: 26px;
    min-height: 26px;
    max-height: 26px;
    object-fit: contain;
}

.input-main .form-control.img-bx {
    padding: 12px 20px 12px 60px;
}

.input-main.rightOne .form-control.img-bx {
    padding: 12px 60px 12px 12px;
}

.input-main.rightOne .form-group .card-imgs {
    right: 20px;
    left: inherit;
}

.input-main .form-select,
.input-main .form-control {
    border: none;
    height: auto;
    background-color: #fff;
    border: 1px solid var(--Light-Grey, #D2D2D2);
    border-radius: 5px;
    padding: 8px 30px 8px 17px;
    color: #232F3F;
    font-size: 17px;
    font-weight: 400;
    position: relative;
}

.input-main .form-group .field-icon1 {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 10px;
    color: #313747;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.input-main .form-group .field-icon1.fa-eye:before,
.input-main .form-group .field-icon1.fa-eye-slash:before {
    font-family: "Font Awesome 6 pro";
}

.input-main .forgot {
    text-align: right;
    color: #313747;
    margin: 10px 0 0 0;
    font-size: 15px;
    line-height: 18px;
    text-transform: unset;
    font-weight: 400;
    display: block;
}


.form-check {
    margin: 0;
}

.form-check .form-check-input:checked {
    background-color: #ff5722;
    border-color: #ff5722;
}

.form-check .form-check-input:focus {
    border-color: #ff5722;
    box-shadow: none;
}

.form-check .form-check-label {
    letter-spacing: 1.5px;
    text-transform: capitalize;
    margin: 0;
    color: #313747;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/**************************** Form css End ***************************/
/**************************** offcanvas search-bar Start ***************************/
.offcanvas.search-bar {
    background: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.offcanvas.search-bar .offcanvas-body .search-h {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 30px 0;
    display: block;
    text-align: center;
}

.offcanvas.search-bar .offcanvas-body .search .search-control {
    background-color: rgb(245, 245, 247);
    font-size: 13px;
    font-weight: 400;
    color: #000;
    width: 100%;
    border-radius: 5px;
    border: none;
    padding-left: 25px;
    height: 45px;
}

.offcanvas.search-bar .offcanvas-body .search .search-btn {
    color: #fff;
    height: 45px;
    width: 45px;
    font-size: 16px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #936710;
    background: #936710;
    transition: all 0.2s ease-in-out;
    border-radius: 50px;
    overflow: hidden;
}

/**************************** offcanvas search-bar close ***************************/
/************************************* header *************************************/
.navbar-toggler {
    background: 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: 13%;
}

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: 25px;
    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 i {}

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: 13px;
    font-weight: 500;
    position: absolute;
    top: 0px;
    right: -55px;
    line-height: 16px;
}

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;
}

.section-cart .checkout-box {
    border: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
}

.section-cart .checkout-box .details {
    border: 1px solid rgba(31, 31, 31, 0.1);
    border-bottom: none;
}

.section-cart .checkout-box .details .summary {
    padding: 30px 30px 0 30px;
}

.section-cart .checkout-box .details h6 {
    font-weight: 700;
    font-size: 18px;
    color: #000;
    text-transform: capitalize;
    margin: 0 0 10px 0;
    padding: 0;
    letter-spacing: -0.5px;
}

.section-cart .checkout-box .details p {
    font-weight: 400;
    font-size: 14px;
    line-height: 16.71px;
    color: rgba(31, 31, 31, 0.5);
    text-transform: unset;
    margin: 0;
    padding: 0;
    letter-spacing: -0.2px;
}

.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: 14px;
    color: #000;
    text-transform: capitalize;
    margin: 5px 0 5px 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.section-cart .checkout-box .total-ul li span {
    width: 50%;
    font-weight: 400;
}

.section-cart .checkout-box .sub-total {
    background: rgba(245, 245, 247, 0.5);
    padding: 15px 30px;
    margin: 20px 0 0 0;
}

.section-cart .checkout-box .checkout-btn {
    height: 45px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 3px solid #CC9224;
    background: #CC9224;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.section-cart .checkout-box .checkout-btn:hover {
    background: #fff;
    color: #CC9224;
}

.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: #020202;
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    text-align: center;
}

.section-cart .cart-table thead tr th.price {
    text-align: left;
}

.section-cart .cart-table tbody tr td {
    vertical-align: middle;
    padding: 20px 10px;
}

.section-cart .cart-table tbody tr:nth-child(odd)>td {
    background-color: hsl(0deg 0% 50.2% / 25%);
}

.section-cart .cart-table tbody tr td .img-main {
    background: #F5F5F7;
    padding: 15px 0;
    position: relative;
}

.section-cart .cart-table tbody tr td .img-main i {
    position: absolute;
    right: -8px;
    top: -16px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    color: #fff;
    background-color: #CC9224;
    text-align: center;
    border-radius: 100%;
    cursor: pointer;
}

.section-cart .cart-table tbody tr td .img-main .cart-img {
    min-width: 100px;
    max-width: 100px;
    display: block;
    margin: 0 auto;
}

.section-cart .cart-table tbody tr {
    border-bottom: 1px solid #000;
}

.section-cart .cart-table thead {
    border-bottom: 1px solid #000;
}

.section-cart .cart-table thead tr {
    border-bottom: 1px solid #000;
}

.section-cart .cart-table tbody tr td .cart-desc .pro-name {
    font-size: 28px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0;
    padding: 0;
}

.section-cart .cart-table tbody tr td .dsc-rt {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.section-cart .cart-table tbody tr td .dsc-rt .btn-cart {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    color: #CC9224;
    text-transform: capitalize;
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 20px;
    height: 40px;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}

.section-cart .cart-table tbody tr td .dsc-rt .btn-cart:hover {
    background-color: #CC9224;
    color: #fff;
}

.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 #CC9224;
    background: #CC9224;
    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: #CC9224;
}

.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: 22px;
    line-height: 22px;
    font-weight: 500;
    color: #020202;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0;
    padding: 0;
}

.section-cart .checkout-btn-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    flex-direction: row;
}

/*********************** Cart Close ***********************/
/*********************** Checkout Start ***********************/
.section-checkout {
    position: relative;
    padding: 80px 0 80px 0;
}

.section-checkout .checkout-form .form-h {
    font-size: 25px;
    color: #000;
    font-weight: 700;
    text-transform: capitalize;
    text-align: left;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
}

.section-checkout .checkout-form .form-p {
    font-size: 15px;
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    line-height: 27px;
    padding: 0;
    text-align: end;
}

.section-checkout .checkout-form .form-p .signup-a {
    color: #CC9224;
}

.section-checkout .checkout-form .form-head {
    border-bottom: 1px solid #aaaaaa99;
    margin: 0 0 30px 0;
    padding: 0 0 30px 0;
}

.section-checkout .checkout-form .order-details ul {
    margin: 10px 0;
}

.section-checkout .checkout-form .order-details ul li {
    text-transform: unset;
    font-style: normal;
    font-size: 16px;
    font-weight: 300;
    line-height: 23.2px;
    color: #000;
    margin: 0 0 20px 0;
    padding: 10px 0;
    position: relative;
    border-bottom: 2px solid #f4f4f4;
}

.section-checkout .checkout-form .order-details ul li strong {
    float: right;
    width: 50%;
    text-align: right;
    color: #000;
}

.section-checkout .checkout-form .order-details ul li .item-list {
    min-height: auto;
    max-height: 300px;
    overflow-y: scroll;
    padding: 5px 10px;
}

.section-checkout .checkout-form .order-details ul li .item-list::-webkit-scrollbar {
    width: 5px;
}

.section-checkout .checkout-form .order-details ul li .item-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.section-checkout .checkout-form .order-details ul li .item-list::-webkit-scrollbar-thumb {
    background: #CC9224;
    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 .main-img img {
    min-width: 90px;
    max-width: 90px;
    min-height: 80px;
    max-height: 80px;
    object-fit: cover;
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card .desc ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.section-checkout .checkout-form .order-details ul li .main-box .product-card .desc ul li {
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    word-spacing: 0px;
    letter-spacing: 1px;
    border: none;
}

.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: #CC9224;
}

.section-checkout .checkout-form .order-details ul li .main-box .pd-total {
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    word-spacing: 0px;
    letter-spacing: 1px;
}

.section-checkout .checkout-form .form-head .pay-now .btn-pay {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 0 auto;
    padding: 0;
    height: 52px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: 1px solid #CC9224;
    background: #CC9224;
    line-height: normal;
    transition: all 0.2s ease-in-out;
}

.section-checkout .checkout-form .form-group {
    margin: 0 0 30px 0;
}

.section-checkout .checkout-form .form-group .custom-label {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-checkout .checkout-form .form-group .custom-control {
    height: 57px;
    width: 100%;
    padding: 17px 25px 17px 25px;
    margin: 0;
    border: 1px solid #000;
    background: transparent;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    text-transform: unset;
    text-align: left;
    color: #000;
}

.section-checkout .checkout-form .form-group .textarea-control {
    border: 1px solid #000;
    background-color: transparent;
    border-radius: 0;
    margin: 0;
    padding: 18px 25px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.section-checkout .checkout-form .login-btn {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    background-color: #CC9224;
    border: 2px solid #CC9224;
    border-radius: 3px;
    padding: 0;
    margin: 0 15px 0 0;
    width: 200px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    letter-spacing: 0.6px;
}

.section-checkout .checkout-form .login-btn:hover {
    background-color: #000;
    color: #CC9224;
}

.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: 100vh;
}

.home-banner-wrap .content {}

.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 .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 p {}

.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;
}

.motorcycle-sec .choose-box .select-broder option {}

.filter {}

.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 {}

.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;
}

.head p {}

.motorcycle-part-sec .main-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.motorcycle-part-sec .main-box .part-box {}

.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: 14px;
    font-weight: 500;
}

.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;
    margin: 0px 0px 8px;
}

.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;
    font-weight: 600;
}

.motorcycle-part-sec .main-box .part-box .part-content h6 {
    color: #4E9925;
    font-size: 15px;
    font-family: "Karla", sans-serif;
}


.tab-ul {
    justify-content: center;
    margin: 0px 0px 40px !important;
    gap: 30px;
}

.tab-ul .nav-item {}

.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 {}

.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 {}

.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 {}

.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;
}

.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 {}

.triumph-sec .main-img {}

.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 {}

.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 {
    /* text-align: end; */
    /* width: 73%; */
}

.about-page-sec .content h1 {
    font-size: 50px;
}

/* about-us page */
/* about-koss */
.about-koss {
    background: #222222;
    padding: 100px 0px;
}

.about-koss .content {}

.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 .content .filter .filter-btn {}

.about-koss .main-img {
    position: relative;
    overflow: hidden;
}

.about-koss .main-img img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    transition: all .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;
}

.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 {}

.contact-sec .mian-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.contact-sec .form-box {}

.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 {}

.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-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 a {
    font-size: 15px;
    color: #fff;
    text-decoration: underline;
}

.showroom-sec .show-bike .modal-name p {
    color: #fff;
    text-decoration: underline;
    transition: all .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-detail-sec {
    background: #191414;
    position: relative;
    overflow: hidden;
    padding: 100px 0px;
}

.product-detail-sec .content {}

.product-detail-sec .content .page-name {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 0px 0px 20px;
}

.product-detail-sec .content .page-name a {
    color: #A5A5A5;
}

.product-detail-sec .content .page-name span {}

.product-detail-sec .content h2 {
    font-size: 32px;
    line-height: 42px;
    margin: 0px 0px 10px;
}

.product-detail-sec .content h6 {
    color: #4E9925;
    font-family: "Karla", sans-serif;
    font-size: 21px;
    line-height: 31px;
    margin: 0px 0px 10px;
}

.product-detail-sec .content p {
    margin: 0px 0px 20px;
}

.product-detail-sec .content .btn-box {
    margin: 0px 0px 40px;
}

.product-detail-sec .content .btn-box .add-cart-btn {
    padding: 14px 48px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    border: 0;
}

.product-detail-sec .content .btn-box .buy-now-btn {
    padding: 14px 48px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    background-color: #3F3F3F;
    border: 0;
}

.product-detail-sec .content .wishlist {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin: 0px 0px 30px;
}

.product-detail-sec .content .wishlist a {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.product-detail-sec .content .wishlist a i {}

.line {
    height: 1px;
    width: 100%;
    background: #7777777d;
    margin: 0px 0px 30px;
}

.product-detail-sec .content .Categories {}

.product-detail-sec .content .Categories p {
    color: #fff;
}

.product-detail-sec .content .Categories p span {
    font-family: "Karla", sans-serif;
    color: #777;
}

.product-detail-sec .content .Categories .share {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.product-detail-sec .content .Categories .share p {}

.product-detail-sec .content .Categories .share .links-icon {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.product-detail-sec .content .Categories .share .links-icon a {
    color: #777;
    font-size: 15px;
}

.product-detail-sec .content .Categories .share .links-icon a i {}

.product-detail-sec .ratio-btn {
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0px 0px 20px;
}

.product-detail-sec .ratio-btn p {
    color: #fff;
    margin: 0;
    font-weight: 600;
}

.product-detail-sec .color-options {
    display: flex;
    gap: 10px;
}

.product-detail-sec .color-radio-wrapper {
    position: relative;
    width: 30px;
    height: 30px;
}

.product-detail-sec .color-radio {
    appearance: none;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ccc;
    outline: none;
    transition: 0.2s ease-in-out;
}

.product-detail-sec .color-radio:checked {
    border: 2px solid #000;
}

/* Color classes */
.blue {
    background-color: blue;
}

.red {
    background-color: red;
}

.orange {
    background-color: orange;
}

.black {
    background-color: black;
}

/* Check icon */
.product-detail-sec .check-icon {
    content: 'Ã¢Å¾Â¤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: white;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.product-detail-sec .color-radio:checked+.check-icon {
    opacity: 1;
}


.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 {}

.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 .review-box {}

.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;
}


.product-detail-sec .btn-box .frame-box {
    display: flex;
    align-items: center;
    height: 50px;
}

.product-detail-sec .btn-box .frame-box .button {
    background: transparent;
}

.product-detail-sec .btn-box .frame-box .button button {
    background: transparent;
    border: 0;
    color: #A5A5A5;
    font-size: 20px;
    border: 2px solid #777;
    padding: 0px 13px;
    border-radius: 7px 0px 0px 7px;
    height: 50px;
}

.product-detail-sec .btn-box .frame-box .button #plus-btn {
    border-radius: 0px 7px 7px 0px;
}

.product-detail-sec .btn-box .frame-box .number {
}

.product-detail-sec .btn-box .frame-box .number h1 {
    color: #A5A5A5;
    font-size: 14px;
    border-top: 2px solid #777;
    border-bottom: 2px solid #777;
    padding: 16px 13px;
    border-radius: 0px;
    height: 50px;
}