@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

/*----------  Genral CSS  ----------*/
* {
    padding: 0;
    margin: 0;
    border: none;
    vertical-align: baseline;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 1rem;
    scroll-behavior: smooth !important;
}

body {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--black);
    background-color: var(--white);
    position: relative;
}

:root {
    --white: #fff;
    --off-white: #FAFAFA;
    --grey-white: #FFFFFFB2;
    --black: #1f2546;
    --light-black: #3a4168;
    --grey: #1f2546;
    --orange: #e74547;
    --light-blue: #F7F7F7;
    --grey-border: #D9D9D9;
    --grey-secondary-border: #949494;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

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

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

em,
i {
    font-style: italic;
}

u {
    text-decoration: underline;
}

p {
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0;
}

b,
strong {
    font-weight: 700 !important;
}

a {
    text-decoration: none;
    color: var(--black);
    transition: color 0.4s ease-in-out;
    -webkit-transition: color 0.4s ease-in-out;
    -moz-transition: color 0.4s ease-in-out;
    -ms-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
}

a:hover {
    color: var(--orange);
    text-decoration: none;
    outline: none !important;
}

a:focus {
    text-decoration: none;
    outline: none !important;
}

*:focus {
    outline: none;
}

p {
    color: var(--grey);
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    line-height: 1.4;
    display: block;
}

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.hidden {
    width: 0;
    height: 0;
    display: none
}

.back-to-top {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: all .3s ease-in-out;
    position: fixed;
    bottom: -50px;
    right: 20px;
    width: 2.75rem;
    height: 2.75rem;
    background: var(--orange);
    border-radius: 4.375rem;
    text-align: center;
    border: 2px solid var(--white);
    opacity: 0;
    overflow: hidden;
    color: var(--white);
}

.back-to-top.active {
    bottom: 85px;
    opacity: 1;
    z-index: 9
}

.back-to-top>div {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: all .3s ease-in-out
}

.back-to-top>.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center
}

.back-to-top>.arrow svg {
    fill: var(--white);
    height: 20px;
    width: 100%
}

.back-to-top>.text {
    font-size: .5rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0;
    margin-top: 1px
}

.back-to-top:hover {
    transform: scale(1.1);
    bottom: 85px;
    cursor: pointer
}

.back-to-top:hover>.arrow {
    transform: translateY(-150%) translateX(-50%);
    opacity: 0
}

.back-to-top:hover>.text {
    transform: translateY(-50%) translateX(-50%);
    opacity: 1
}

:-webkit-autofill,
:-webkit-autofill:hover,
:-webkit-autofill:focus,
:-webkit-autofill:active {
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000000s ease-in-out 0s !important;
}

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

/*----------  Common CSS  ----------*/
.wrapper {
    display: block;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
}

.body-fixed {
    overflow: hidden;
}

.container {
    max-width: 1436px;
    padding: 0 30px;
}

.container-md {
    max-width: 1460px;
    padding: 0 30px;
}

.container-lg {
    max-width: 1820px;
    padding: 0 30px;
}

.common-sec {
    padding-top: 100px;
    padding-bottom: 100px;
}

.sec-head {
    display: block;
    margin-bottom: 40px;
}

.sec-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    color: var(--light-black);
    margin-bottom: 8px;
}

.sec-small-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    display: block;
    color: var(--light-black);
    margin-bottom: 8px;
}

.sec-sub-title {
    display: block;
    color: var(--orange);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 5px;
}

.sec-head p {
    color: var(--grey);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 10px;
    display: block;
}

.form-control {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 52%);
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    padding: 14px 24px;
    border-radius: 8px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 52%);
    font-size: 13px;
    font-weight: 400;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--white);
    background-color: transparent;
}

/*----------  Common CSS  ----------*/

.btn {
    border-radius: 30px;
    padding: 11px 30px;
    font-weight: 500;
    font-size: 20px;
    border: 1px solid transparent;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 180px;
    transition: all .4s ease-in-out;
}

.btn.btn-orange {
    background-color: var(--orange);
    color: var(--white);
}

.icon {
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    width: 20px;
    min-width: 20px;
    aspect-ratio: 1/1;
    display: block;
    position: relative;
    background-color: currentColor;
    transition: all .4s ease-in-out;
}

.icon.icon-right-arrow {
    mask-image: url(../img/right-arrow.png);
    background-color: #fff;
    width: 14px;
    min-width: 14px;
}

.icon.icon-search {
    mask-image: url(../img/svg/search.svg);
    background-color: #000;
}

.icon.icon-user {
    mask-image: url(../img/user.png);
    background-color: #000;
}

.icon.icon-cart {
    mask-image: url(../img/cart.png);
    background-color: #000;
}

.icon.icon-heart {
    mask-image: url(../img/svg/heart.svg);
    background-color: rgb(255 255 255 / 60%);
    width: 22px;
    min-width: 22px;
}

.icon.icon-facebook {
    mask-image: url(../img/facebook.png);
}

.icon.icon-twitter {
    mask-image: url(../img/svg/twitter.svg);
}

.icon.icon-instagram {
    mask-image: url(../img/svg/instagram.svg);
}

.icon.icon-youtube {
    mask-image: url(../img/svg/youtube.svg);
}

.icon.icon-whatapp {
    mask-image: url(../img/whatapp.png);
}

.icon.icon-categories {
    mask-image: url(../img/svg/cat-icon.svg);
    width: 18px;
    min-width: 18px;
    background-color: var(--orange);
}

.icon.icon-date {
    mask-image: url(../img/svg/date.svg);
    width: 22px;
    min-width: 22px;
    background-color: var(--orange);
}

.icon.icon-view-more {
    mask-image: url(../img/svg/right-arrow.svg);
    background-color: var(--orange);
    width: 15px;
    min-width: 15px;
}

.side-bar .icon.icon-search {
    mask-image: url(../img/search.png);
    width: 20px;
    min-width: 20px;
    background-color: #1f2546;
}

.icon.icon-author {
    mask-image: url(../img/svg/user.svg);
    background-color: var(--orange);
    width: 20px;
    min-width: 20px;
}

/* header */
.home .header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}

.header .header-main.has_sticky {
    position: fixed;
    z-index: 9;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .09);
    background: #fff;
    backdrop-filter: blur(50px);
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 999;
    border-radius: 0;
    padding: 12px 40px;
}

.header-main.has_sticky .site-logo {
    width: 110px;
}

.home .header .header-top {
    background-color: var(--light-black);
    font-size: 15px;
}

.header .header-top {
    padding: 15px;
    background-color: var(--light-black);
}

.header-details {
    display: flex;
    align-items: center;
}

.header-top-con {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-details span, .header-details p  {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    display: block;
    padding: 0 5px;
}

.header-top-con p{
     color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    display: block;
    padding: 0 5px;
}

.header-top-con .header-details:first-child {
    border-right: 1px solid #fff;
    padding-right: 5px;
    margin-right: 5px;
}

.header-top-con .shop-now {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration-line: underline;
    display: block;
    margin-left: 15px;
    transition: all .4s ease-in-out;
}

.navbar-main .nav-menu-main ul li:hover .arrow {
    border-color: var(--orange);
    transform: rotate(-135deg);
    top: 31px;
}

.home .header .container-fluid {
    padding: 0 42px;
}

.home .header-main {
    background-color: var(--white);
    border-radius: 80px;
    padding: 18px 40px;
    display: block;
    width: 100%;
}

.home .header-main-wrapper {
    background-color: transparent;
}

.header-main-wrapper {
    background-color: #F7F7F7;
}

.header-main {
    padding: 7px 70px;
    position: relative;
}

.site-logo {
    display: block;
    width: 156px;
}

.site-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-btn a {
    display: inline-block;
    vertical-align: middle;
    margin-right: 25px;
    line-height: 0;
}

.header-btn a:last-child {
    margin-right: 0;
}

.header-btn a .icon {
    width: 28px;
    min-width: 28px;
}

.mb-menu-logo {
    display: none;
}

.sidebar-overlay {
    visibility: hidden;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: var(--black);
    z-index: 998;
}

.nav-menu-main ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-main .nav-menu-main>ul>li {
    padding: 0 22px;
    position: relative;
}

.navbar-main .nav-menu-main>ul>li>a {
    color: var(--light-black);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    display: block;
    position: relative;
    padding: 20px 0;
    transition: all .4s ease-in-out;
}

.navbar-main .nav-menu-main>ul>li>a::before {
    content: '';
    position: absolute;
    background-color: var(--orange);
    width: 0;
    height: 1px;
    bottom: 18px;
    left: 0;
    transition: all .4s ease-in-out;
}

.navbar-main .nav-menu-main ul li .arrow {
    position: absolute;
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    border: none;
    border-bottom: 2px solid var(--light-black);
    border-right: 2px solid var(--light-black);
    transform: rotate(45deg);
    right: 5px;
    top: 27px;
    transition: all .4s ease-in-out;
    padding-right: 0;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu {
    position: absolute;
    left: 0;
    top: 95%;
    right: 0;
    margin: auto;
    background: var(--white);
    z-index: 9;
    display: flex;
    flex-wrap: wrap;
    -webkit-transform: translateY(36px);
    transform: translateY(36px);
    visibility: hidden;
    opacity: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border-top: 3px solid var(--orange);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all .4s ease-in-out;
}

.navbar-main .nav-menu-main>ul>li:hover>.sub-menu {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    opacity: 1;
    visibility: visible;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu li {
    width: 16.66%;
    border-right: 1px solid #E7E7E7;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu li:last-child {
    border-right: none;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu .menu-item-title{
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--black);
    transition: all .4s ease-in-out;
    display: block;
    margin-top: 12px;
    width: 100%;
    text-align: center;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu li a:hover .menu-item-title{
    color: var(--orange);
}

.navbar-main .nav-menu-main>ul>li>.sub-menu li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #1f2546;
    display: block;
    background-color: var(--white);
    transition: all .4s ease-in-out;
    padding: 12px 24px;
}

/* header */

.hero-banner-sec {
    height: 100vh;
    max-height: 1080px;
    position: relative;
}

.hero-slider,
.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slider .slick-slide,
.hero-slider .slick-slide>div,
.hero-slider .hero-slider-col {
    height: 100%;
    position: relative;
}

.hero-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.hero-banner-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-banner-img.mobile-image img {
    width: 100%;
}

.hero-banner-img.desktop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slider .container-fluid {
    padding: 0 80px;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 100px;
}

.hero-banner-sec .slick-dots {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateX(-50%);
}

.hero-sub-title {
    color: var(--white);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    display: block;
    margin-bottom: 12px;
}

.hero-title {
    color: var(--white);
    font-size: 100px;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 50px;
}

.slick-dots li {
    border: 2px solid transparent;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease-in-out;
}

.slick-dots li.slick-active {
    border-color: var(--orange);
}

.slick-dots li button {
    font-size: 0;
    background-color: var(--white);
    width: 6px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.slick-arrow {
    background-color: #F5F3F4;
    font-size: 0;
    width: 60px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: relative;
    transition: all .4s ease-in-out;
}

.slick-arrow::before {
    content: '';
    border-bottom: 2px solid rgb(91 91 91 / 70%);
    border-right: 2px solid rgb(91 91 91 / 70%);
    width: 14px;
    height: 14px;
    display: block;
    top: 23px;
    left: 27px;
    position: absolute;
    transform: rotate(135deg);
    transition: all .4s ease-in-out;
}

.slick-arrow~.slick-arrow {
    margin-left: 16px;
}

.slick-arrow.slick-next::before {
    transform: rotate(-45deg);
    left: 21px;
}

.slick-arrow:hover {
    background-color: var(--orange);
}

.slick-arrow:hover::before {
    border-color: var(--white);
}

.home-product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.home-product-silder {
    margin: 0 -12px;
}

.home-product-silde {
    padding: 0 12px;
}

.home-product-top .sec-head {
    margin-bottom: 0;
}

.home-product-box .img-box {
    background-color: #D9D9D9;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    height: 386px;
    margin-bottom: 25px;
    position: relative;
}

.home-product-box .img-box::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255 255 255 / 4%) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.home-product-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .4s ease-in-out;
}

.home-product-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--light-black);
    display: block;
    margin-bottom: 8px;
}

.product-price {
    color: var(--grey);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    display: inline-block;
}

.home-product-img-wrap {
    position: relative;
}

.home-product-img-wrap .wishlist-box {
    background-color: rgba(241, 83, 83, 90%);
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease-in-out;
}

.home-product-img-wrap .wishlist-box.wishlist-add {
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.wishlist-add .icon.icon-heart {
    mask-image: url(../img/heart-wishlist.png);
    background-color: #F15353;
    top: 2px;
}

.skin-device-sec {
    background-color: #F7F7F7;
}

.skin-device-details .row {
    --bs-guuter-x: 24px;
}

.skin-device-box {
    position: relative;
    background-color: rgba(20, 20, 20, 0.4);
    border-radius: 16px;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.skin-device-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 40%);
    transition: all .4s ease-in-out;
}

.skin-device-box .img-box {
    width: 100%;
    height: 100%;
}

.skin-device-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.skin-device-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: var(--white);
    width: 100%;
    text-align: center;
    text-shadow: 1px 3px 8px rgba(0, 0, 0, 0.8);
    transition: all .4s ease-in-out;
}

.compare-sec .row {
    --bs-gutter-x: 40px;
}

.compare-gallery-boxes .row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-box .img-box {
    width: 100%;
    height: 100%;
}

.gallery-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out;
}

.gallery-box:hover .img-box img {
    transform: scale(1.03);
}

.gallery-box-label {
    backdrop-filter: blur(25px);
    box-shadow: 0px 4px 24px -1px #EFF4FD33;
    border: 1px solid rgba(255, 255, 255, 0.56);
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    color: var(--light-black);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    padding: 11px 22px;
    position: absolute;
    top: 24px;
    left: 24px;
}

.compare-box {
    background-color: var(--light-black);
    border-radius: 16px;
    width: 100%;
    height: 100%;
    display: block;
    padding: 60px;
}

.compare-box-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    display: block;
    margin-bottom: 40px;
    max-width: 80%;
}

.compare-box .cms-con {
    margin-bottom: 70px;
}

.compare-box .cms-con p {
    color: var(--white);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 0;
}

.compare-box-table-row-head {
    width: 100%;
    display: flex;
    padding-bottom: 20px;
    margin-bottom: 20px;
    column-gap: 60px;
}

.compare-box-table-row-head:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.compare-box-heading {
    color: #F15353;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    display: block;
}

.compare-box-heading.inner-head {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
}

.compare-box-table-row-head .our-skin,
.compare-box-heading {
    width: 220px;
    flex: 0 0 220px;
}

.compare-box-table .compare-box-table-row-head:first-child .compare-box-head-value {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    display: block;
}

.compare-box-head-value {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    display: block;
}

.footer {
    background-color: var(--light-black);
    padding-top: 100px;
}

.footer-main {
    padding-bottom: 80px;
}

.foot-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    display: block;
    margin-bottom: 20px;
}

.foot-box ul li {
    display: block;
    margin-bottom: 8px;
}

.foot-box ul li.current-menu-item a {
    color: var(--orange);
}

.foot-box ul li a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    transition: all .4s ease-in-out;
}

.foot-box.quick-link {
    padding-left: 60px;
}

.newsletter-box .cms-con {
    max-width: 330px;
    margin-bottom: 24px;
}

.newsletter-box .cms-con p {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.newsletter-box .form-group {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin: 0;
}

.newsletter-box .form-group .form-control {
    width: 280px;
    flex: 0 0 280px;
    border-radius: 200px;
    line-height: 1;
}

.newsletter-box .btn {
    text-transform: capitalize;
    min-width: 105px;
    font-size: 13px;
    min-height: 45px;
}

.social-media {
    padding-left: 30px;
}

.social-media a {
    display: inline-block;
    vertical-align: middle;
    margin-right: 18px;
}

.social-media a:last-child {
    margin-right: 0;
}

.social-media .icon {
    background-color: var(--white);
    width: 28px;
    min-width: 28px;
    transition: all .4s ease-in-out;
}

.copy-right {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 35px 10px;
    text-align: center;
}

.copy-right p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
}

.copy-right p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    transition: all .4s ease-in-out;
}

.copy-right p a:hover {
    color: var(--orange);
}

.feature-highlight-sec {
    background-color: #F7F7F7;
}

.feature-highlight-sec.common-sec {
    padding-top: 72px;
    padding-bottom: 72px;
}

.feature-highlight-box {
    display: flex;
    align-items: center;
}

.feature-highlight-box .img-box {
    width: 50px;
    flex: 0 0 50px;
    margin-right: 10px;
}

.feature-highlight-box .img-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.feature-highlight-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #484848;
    display: block;
    margin-bottom: 8px;
}

.feature-highlight-box .content-box span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #484848;
    display: block;
}

.testimonial-sec .sec-head {
    text-align: center;
}

.testimonial-sec .sec-head img {
    margin: 0 auto 12px;
    width: 63px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.testimonial-box {
    max-width: 1050px;
    margin: auto;
}

.testimonial-box .img-box {
    width: 70px;
    margin: 0 auto 40px;
}

.testimonial-box .img-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.testimonial-box .cms-con {
    margin-bottom: 40px;
}

.testimonial-box .cms-con p {
    font-size: 24px;
    line-height: 1.6;
    text-align: center;
}

.cilent-details {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cilent-details .cilent-img-box {
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}

.cilent-details .cilent-img-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.cilent-name {
    color: var(--light-black);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    display: block;
}

.cilent-name span {
    margin-top: 6px;
    display: block;
    color: var(--grey);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.testimonial-sec .testimonial-silder {
    max-width: 1047px;
    margin: auto;
}

.testimonial-sec .slick-arrow {
    top: 43%;
    transform: translateX(-50%);
    position: absolute;
    left: -115px;
}

.testimonial-sec .slick-arrow.slick-next {
    right: -185px;
    left: inherit;
}

.menu-icon {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
    padding: 0;
    margin-top: 0;
    margin-right: 5px;
    color: var(--light-black);
}

.menu-icon span {
    display: block;
    width: 25px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--light-black);
    margin: auto
}

.menu-icon span:before {
    content: "";
    width: 20px;
    position: absolute;
    top: -.5rem;
    left: 0;
    height: .125rem;
    background: currentColor
}

.menu-icon span:after {
    content: "";
    width: 20px;
    position: absolute;
    bottom: -.5rem;
    left: 0;
    height: .125rem;
    background: currentColor
}

.image-slider-wrapper {
    display: grid;
    place-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    --position: 50%;
}

.image-container {
    max-width: 100%;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.image-before {
    position: absolute;
    inset: 0;
    width: var(--position);
}

.slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.slider-line {
    position: absolute;
    inset: 0;
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;
}

.slider-button {
    position: absolute;
    background-image: url(../img/before-after-cricle.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.before-title {
    position: absolute;
    background-color: var(--white);
    border-radius: 0px 12px 12px 0px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 12px 10px;
    min-width: 40px;
}

.before-title span,
.after-title span {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 3px;
    color: var(--black);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.after-title span {
    transform: rotate(0);
    writing-mode: vertical-lr;
}

.after-title {
    position: absolute;
    background-color: var(--white);
    border-radius: 12px 0px 0px 12px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 12px 10px;
    min-width: 40px;
}

/* Blog Listing */

.blog-listing-sec .row {
    --bs-gutter-x: 40px;
}

.blog-list-img {
    width: 100%;
    height: 500px;
}

.blog-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: all .4s ease-in-out;
}

.blog-list-box {
    margin-bottom: 200px;
}

.blog-list-box-inner {
    position: relative;
}

.blog-list-content-box {
    background-color: #fff;
    box-shadow: 0px 0px 9px 0px #00000040;
    border-radius: 40px 0px 40px 0px;
    padding: 40px;
    position: absolute;
    bottom: -130px;
    left: 0;
    right: 0;
    width: 760px;
    margin: auto;
}

.cate-details {
    display: flex;
    align-items: center;
    column-gap: 40px;
    margin-bottom: 35px;
}

.cate-name,
.latest-blog-date,
.author-name {
    display: flex;
    align-items: center;
    color: #878787;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.cate-name .icon,
.latest-blog-date .icon,
.author-name .icon {
    margin-right: 10px;
}

.latest-blog-title {
    color: var(--light-black);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 35px;
    transition: all .4s ease-in-out;
}

.blog-list-con .read-more {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #F38521;
    transition: all .4s ease-in-out;
}

.blog-list-con .read-more .icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    transition: all .4s ease-in-out;
}

.blog-list-con .read-more:hover {
    color: var(--light-black);
}

.blog-list-con .read-more:hover .icon {
    background-color: var(--light-black);
}

.sidebar-search-box,
.side-bar .category-main,
.side-bar .recommended-sec {
    background-color: #F7F7F7;
    border-radius: 16px;
    padding: 25px;
    position: relative;
    margin-bottom: 25px;
}

.side-bar .search-form {
    position: relative;
}

.sidebar-search-box button {
    background-color: transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 12px;
    height: 100%;
    border: none;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-search-box button .icon {
    transform: rotate(-90deg);
}

.side-bar .form-control {
    background-color: var(--white);
    border-radius: 15px;
    color: var(--light-black) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    padding: 14px 15px 14px 55px;
}

.side-bar .form-control::placeholder {
    color: #1f2546 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
}

input::-ms-clear {
    display: none;
}

.form-control:focus {
    box-shadow: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.side-bar .related-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: var(--light-black);
    margin-bottom: 16px;
}

.side-bar .category-list li {
    padding: 12px 15px 12px 34px;
    position: relative;
    border-bottom: 1px solid #D9D9D9;
}

.side-bar .category-list li.active a {
    color: var(--orange);
}

.side-bar .category-list li a {
    color: var(--light-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
    transition: all .4s ease-in-out;
}

.side-bar .category-list li a:hover {
    color: var(--orange);
}

.side-bar .category-list li::before {
    position: absolute;
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    border: none;
    border-bottom: 2px solid var(--light-black);
    border-right: 2px solid var(--light-black);
    left: 10px;
    top: 45%;
    transition: all .4s ease-in-out;
    padding-right: 0;
    transform: rotate(-45deg) translateY(-50%);
}

.side-bar .category-list li.active::before {
    border-color: var(--orange);
}

.recommended-blog-item {
    margin-bottom: 30px;
}

.recommended-blog-item .latest-blog-date {
    margin-bottom: 12px;
}

.recommended-blog-item .post-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.4;
    transition: all .4s ease-in-out;
}

.recommended-blog-item .post-title:hover {
    color: var(--orange);
}

.post-pagination .nav-links,
.post-pagination,
.woocommerce-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.woocommerce-pagination {
    border-top: solid 1px #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-top: 20px;
    margin-bottom: 110px;
}


.post-pagination .page-numbers,
.woocommerce-pagination .page-numbers {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    color: #1f2546;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all .4s ease-in-out;
}

.post-pagination .page-numbers:hover,
.post-pagination .page-numbers.current,
.woocommerce-pagination .page-numbers:hover,
.woocommerce-pagination .page-numbers.current {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.next.page-numbers,
.prev.page-numbers {
    border: none;
    background-color: transparent;
    color: var(--light-black);
    width: auto;
}

.prev.page-numbers {
    margin-right: 20px;
}

.next.page-numbers {
    margin-right: 0;
    margin-left: 12px;
}

.next.page-numbers:hover,
.prev.page-numbers:hover {
    background-color: transparent;
    color: var(--orange);
}

/* Blog Listing */

/* blog details */
.blog-details-sec .row {
    --bs-gutter-x: 40px;
}

.blog-details-title {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    display: block;
    margin-bottom: 60px;
}

.blog-details-img {
    width: 100%;
    height: 490px;
    margin-bottom: 25px;
}

.blog-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.blog_social {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.blog_social .icon {
    width: 24px;
    min-width: 24px;
}

/* blog details */

.wpcf7 form:not(.sent) .wpcf7-response-output {
    color: #fb0101 !important;
    border-color: #fb0101 !important;
    margin: 0;
    font-size: 14px;
    text-align: center;
}

.woocommerce-result-count {
    color: var(--grey);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0 !important;
    display: inline-block;
    vertical-align: middle;
}

.woocommerce-ordering {
    border: 1px solid var(--grey-border);
    border-radius: 8px;
    padding: 10px 20px;
    margin-bottom: 0 !important;
    display: inline-block;
    vertical-align: middle;
    float: inherit !important;
}

.woocommerce ul.products {
    margin: 0 -15px 15px -15px !important
}

.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product {
    width: 33.33% !important;
    margin: 0 !important;
    padding: 0 12px;
    margin-bottom: 50px !important;
    position: relative;
}

.woocommerce ul.products li.product a img {
    width: 100%;
    height: 378px;
    border-radius: 16px;
    margin-bottom: 30px;
    object-fit: cover;
}

.woocommerce-loop-product__title {
    font-size: 24px !important;
    font-weight: 500;
    color: var(--light-black);
    padding: 0 !important;
    margin-bottom: 10px !important;
    transition: all .4s ease-in-out;
}

.woocommerce ul.products li.product a:hover .woocommerce-loop-product__title {
    color: var(--orange) !important;
}

.woocommerce ul.products li.product .star-rating {
    display: none !important;
}

.woocommerce ul.products li.product .price {
    display: flex !important;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: left;
    margin-bottom: 20px;
}

.woocommerce .price .woocommerce-Price-amount,
.woocommerce ul.products li.product .price ins {
    color: var(--grey);
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1;
    text-decoration: none !important;
}

.woocommerce .price del .woocommerce-Price-amount {
    font-size: 16px !important;
    line-height: 1;
    color: var(--grey);
    padding-left: 7px;
}

.woocommerce ul.products li.product .button {
    background-color: var(--orange) !important;
    color: var(--white) !important;
    border-radius: 30px;
    padding: 11px 30px;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 150px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    transition: all .4s ease-in-out;
}

.woocommerce ul.products li.product .button {
    margin-top: 0 !important;
}

.woocommerce ul.products li.product .button:hover {
    background: rgb(231 69 71 / 75%) !important;
}

.yith-wcwl-add-to-wishlist-button {
    background-color: #F15353 !important;
    border-radius: 50% !important;
    width: 50px;
    height: 50px;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    left: inherit !important;
    right: 25px;
    top: 15px !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.yith-wcwl-add-to-wishlist-button--added {
    background-color: var(--white) !important;
}

.yith-wcwl-add-to-wishlist-button .yith-wcwl-icon {
    width: 22px !important;
    height: 22px !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}

.yith-add-to-wishlist-button-block {
    margin: 0 !important;
}

.product-listing-main .row {
    --bs-gutter-x: 40px;
}

.product-listing-main .result-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.product-listing-main .result-main .woocommerce-notices-wrapper {
    display: none;
}

.woocommerce .widget_product_search,
.widget_product_categories {
    background-color: var(--light-blue);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.woocommerce-product-search {
    position: relative;
}

.woocommerce-product-search input {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    padding: 14px 14px 14px 50px;
}

.woocommerce .widget_product_search button {
    font-size: 0;
    position: absolute;
    background-image: url(../img/svg/search.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background-color: transparent;
}

.widget_product_categories h6 {
    color: var(--light-black);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    display: block;
    margin-bottom: 25px;
}

.product-categories li {
    color: var(--light-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px;
    padding-left: 15px;
    position: relative;
}

.product-categories li.current-cat,
.product-categories li.current-cat a {
    color: var(--orange);
}

.product-categories li::before {
    content: "";
    position: absolute;
    background-color: var(--grey);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    top: 4px;
    left: 0;
}

.filter-button {
    display: none;
}

.icon.icon-filter {
    mask-image: url(../img/svg/filter.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    width: 22px;
    min-width: 22px;
    aspect-ratio: 1 / 1;
    display: block;
    position: relative;
    background-color: #747474;
    transition: all .4s ease-in-out;
}

.woocommerce a.added_to_cart {
    color: #ffffff;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    transition: all .4s ease-in-out;
    background-color: var(--light-black);
    padding: 10px;
    border-radius: 50px;
    min-width: 150px;
    text-align: center;
}

.woocommerce a.added_to_cart:hover {
    color: var(--orange);
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: flex !important;
    align-items: center;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme span {
    padding-left: 10px;
}

.lost_password {
    margin-top: 15px;
}

body input[type="checkbox"]:checked {
    background-color: var(--orange);
    border-color: var(--orange);
    position: relative;
}

body input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    background-image: url(../img/svg/checkmark.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 12px;
    height: 12px;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    bottom: 0;
}

body input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    appearance: none;
    border: 1px solid var(--grey-border);
}

.head_search {
    display: inline-block;
}

.sr_inner {
    display: none;
    width: 100%;
    border: 0;
    padding: 34px 0;
    right: 0;
    position: fixed;
    z-index: 3;
    top: 0;
    background: #fff;
    text-align: center;
    border-bottom: 0.1px solid #cfcfcf;
}

.sr_inner #searchform {
    width: 35%;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
}

.sr_inner .serch {
    padding: 0 20px;
    border: 0.1rem solid #cfcfcf;
    display: inline-block;
    font-size: 16px;
    height: 54px;
    text-transform: capitalize;
    border-radius: 8px 0 0 8px;

}

.sr_inner .search_btn {
    display: inline-block !important;
    vertical-align: middle !important;
    background: url(../img/svg/search.svg) no-repeat !important;
    font-size: 0;
    width: 20px;
    height: 20px;
    background-color: transparent !important;
    background-position: center;
    background-size: contain !important;
    font-size: 0 !important;
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    right: 70px;
}

.close-search {
    left: 0px;
    position: relative;
    width: 54px;
    height: 54px;
    display: inline-block;
    background-color: var(--orange);
    margin: 0;
    vertical-align: top;
    border-radius: 0 8px 8px 0;
}

.close-search:before {
    content: '';
    width: 15px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.2rem;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: auto;
    bottom: 0;
}

.close-search:after {
    content: '';
    width: 15px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.2rem;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: auto;
    bottom: 0;
}

/* wishlist  */

.woocommerce table.shop_table th {
    font-size: 16px !important;
}

table.wishlist_table tbody td,
.woocommerce table.shop_table th {
    display: table-cell !important;
}

table.wishlist_table tbody td {
    font-size: 15px !important;
    text-decoration: none !important;
}

.wishlist_table thead tr th {
    color: var(--light-black) !important;
}

.woocommerce table.shop_table.wishlist_table tr td ins {
    text-decoration: none;
    padding-left: 6px;
}

.woocommerce table.shop_table.wishlist_table tr td ins .woocommerce-Price-amount {
    color: var(--orange);
}

/* .mini-cart */

.woocommerce.widget_shopping_cart .oopsify-cart-top-counter {
    position: relative;
    display: inline-block;
}

.woocommerce.widget_shopping_cart .oopsify-top-cart-wrapper .oopsify-mini-cart-counter {
    position: absolute;
    top: -6px;
    right: -10px;
    font-weight: 500;
    background-color: #232323;
    width: 16px;
    height: 16px;
    text-align: center;
    font-size: 10px;
    color: #fff;
    line-height: 16px;
    border-radius: 100%;
}

.oopsify-mini-cart-slide-sidebar {
    position: fixed;
    display: block !important;
    top: 0;
    right: -400px;
    z-index: 99991;
    height: 100vh !important;
    width: 400px !important;
    padding: 80px 0 30px 0 !important;
    margin: 0 !important;
    background-color: #fff;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    overflow: hidden;
}

header .woocommerce.widget_shopping_cart.active .oopsify-mini-cart-slide-sidebar {
    right: 0;
}

.widget_shopping_cart .oopsify-mini-cart-slide-overlay {
    opacity: 0;
    left: 0;
    visibility: hidden;
}

.body-fixed .widget_shopping_cart .oopsify-mini-cart-slide-overlay {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgb(0 0 0 / 0.8);
    right: 0;
    top: 0;
    z-index: 99;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    opacity: 1;
    visibility: visible;
}

.oopsify-mini-cart-slide-sidebar .mini-cart-slide-sidebar-scroll {
    display: table;
    width: 100%;
    height: 100%;
}

.oopsify-mini-cart-slide-sidebar .mini-cart-slide-sidebar-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ebebeb;
    padding: 20px;
    position: absolute;
    z-index: 999;
    width: 100%;
    left: 0;
    top: 0;
    height: auto;
    text-align: left;
    line-height: normal;
}

.oopsify-mini-cart-slide-sidebar .mini-cart-slide-sidebar-heading span {
    width: 50%;
    display: inline-block;
    color: #000;
    font-size: 13px;
    line-height: normal;
    text-transform: uppercase;
    font-weight: 500;
}

.oopsify-mini-cart-slide-sidebar .mini-cart-slide-sidebar-heading span {
    width: 50%;
    display: inline-block;
    color: #000;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
    font-weight: 500;
}

.oopsify-mini-cart-slide-sidebar .mini-cart-slide-sidebar-heading span:last-child {
    text-align: right;
}

.oopsify-mini-cart-slide-sidebar .mini-cart-slide-sidebar-heading span:last-child a {
    color: #000;
    padding: 5px 10px;
}

.oopsify-mini-cart-slide-sidebar .oopsify-mini-cart-content-inner {
    display: table-cell;
    vertical-align: middle;
    line-height: normal;
    min-height: 1px;
}

header .woocommerce.widget_shopping_cart .woocommerce-mini-cart__empty-message {
    padding: 25px;
    margin: 0;
    color: #8d8d8d;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

header .woocommerce.widget_shopping_cart .oopsify-mini-cart-slide-sidebar .woocommerce-mini-cart__empty-message {
    padding: 0 30px;
}

.woocommerce-mini-cart__empty-message .icon {
    margin: 0 auto 10px;
    background-color: #000 !important;
}

header .woocommerce.widget_shopping_cart ul.cart_list {
    line-height: normal;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    height: calc(100svh - 270px);
    overflow: auto;
}

header .woocommerce.widget_shopping_cart .oopsify-mini-cart-slide-sidebar .cart_list li,
header .woocommerce.widget_shopping_cart .oopsify-mini-cart-slide-sidebar .cart_list li:last-child {
    padding-left: 100px !important;
    padding-right: 52px !important;
}

header .woocommerce.widget_shopping_cart .oopsify-mini-cart-slide-sidebar .cart_list li {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 20px !important;
}

header .woocommerce.widget_shopping_cart .oopsify-mini-cart-slide-sidebar ul.cart_list li img {
    margin-left: -70px;
}

header .woocommerce.widget_shopping_cart .cart_list li,
header .woocommerce.widget_shopping_cart .cart_list li:last-child {
    padding: 20px 32px 0 90px !important;
    margin: 0 !important;
}

header .woocommerce.widget_shopping_cart .cart_list li:last-child {
    border-bottom: 0;
}

header .woocommerce.widget_shopping_cart .cart_list li a.remove {
    top: 21px;
    right: 15px;
    margin: 0;
    left: inherit;
    font-weight: 400;
    padding: 0;
    font-size: 24px;
    line-height: 15px;
    color: #8d8d8d !important;
    width: auto;
    transition: all .4s ease-in-out;
}

header .woocommerce.widget_shopping_cart ul.cart_list li a {
    font-size: 16px;
    line-height: 18px;
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
    position: initial;
    margin-left: 0;
    width: 100%;
    white-space: normal;
    transition: all .4s ease-in-out;
}

header .woocommerce.widget_shopping_cart ul.cart_list li a:hover {
    color: var(--orange);
}

header .woocommerce.widget_shopping_cart ul.cart_list li .variation {
    display: none;
}

header .woocommerce.widget_shopping_cart ul.cart_list li img {
    margin: 0 0 0 -70px;
    float: left;
    width: 50px;
}

header .woocommerce.widget_shopping_cart ul.cart_list li .quantity {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    display: table;
}

header .woocommerce.widget_shopping_cart .total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 17px 0 0 0;
    background-color: rgba(255, 255, 255, 0);
    padding: 15px 20px;
    text-align: right;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #000;
    line-height: normal;
}

header .woocommerce.widget_shopping_cart .cart_list li a.remove:hover {
    color: var(--orange) !important;
    background-color: transparent !important;
}

header .woocommerce.widget_shopping_cart .oopsify-mini-cart-slide-sidebar .total {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #232323;
    padding-left: 30px;
    padding-right: 30px;
}

header .woocommerce.widget_shopping_cart .oopsify-mini-cart-slide-sidebar .total strong {
    color: #808080;
}

header .woocommerce.widget_shopping_cart .oopsify-mini-cart-slide-sidebar .woocommerce-mini-cart__buttons .button {
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--light-black);
    width: 100%;
    text-align: center;
    background-color: transparent;
    transition: all .4s ease-in-out;
}

header .woocommerce.widget_shopping_cart .oopsify-mini-cart-slide-sidebar .woocommerce-mini-cart__buttons {
    padding-left: 30px;
    padding-right: 30px;
}

header .woocommerce.widget_shopping_cart .oopsify-mini-cart-slide-sidebar .woocommerce-mini-cart__buttons .checkout {
    background-color: #232323;
    border-color: #232323;
    color: var(--white);
}

header .woocommerce.widget_shopping_cart .oopsify-mini-cart-slide-sidebar .woocommerce-mini-cart__buttons .checkout:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

header .woocommerce.widget_shopping_cart .oopsify-mini-cart-slide-sidebar .oopsify-mini-cart-info {
    color: #808080;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.woocommerce .oopsify-mini-cart-slide-sidebar ul.cart_list li dl dt,
.woocommerce .oopsify-mini-cart-slide-sidebar ul.product_list_widget li dl dt {
    color: #808080;
}

.woocommerce .widget_shopping_cart .buttons a,
.woocommerce.widget_shopping_cart .buttons a {
    margin-bottom: 15px;
    margin-right: 0;
}


body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-heading.has-text-align-center.with-empty-cart-icon {
    display: block;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-heading.has-text-align-center {
    display: none;
}

@media only screen and (min-width: 1200px) {
    .navbar-main .nav-menu-main ul li .arrow {
        display: none;
    }

    .navbar-main .nav-menu-main>ul>li {
        position: inherit;
    }

    .navbar-main .nav-menu-main>ul>li.menu-item-has-children> a::after {
        content: '';
        position: absolute;
        display: inline-block;
        content: "";
        width: 8px;
        height: 8px;
        border: none;
        border-bottom: 2px solid var(--light-black);
        border-right: 2px solid var(--light-black);
        transform: rotate(45deg);
        right: -15px;
        top: 27px;
        transition: all .4s ease-in-out;
        padding-right: 0;
    }

    .navbar-main .nav-menu-main>ul>li.menu-item-has-children:hover> a::after {
        border-color: var(--orange);
        transform: rotate(-135deg);
        top: 31px;
    }


}

.product-categories li ul.children {
    padding-top: 15px;
}

/* Hide mobile image by default (desktop view) */
.hero-banner-sec .mobile-image {
  display: none;
}

/* Hide desktop image and show mobile image on tablet & mobile */
@media (max-width: 1024px) {
  .hero-banner-sec .desktop-image {
    display: none;
  }
  .hero-banner-sec .mobile-image {
    display: block;
  }
}


body:not(.home) .header-top-con .header-details:first-child {
       border-right: 1px solid #fff;
}

.header .header-top {
    color: #fff;    
}
body:not(.home) .header-top-con .shop-now {
    color: #fff;
}

body:not(.home) .icon.icon-right-arrow {
    background-color: #fff;
}


