@import 'https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap';
:root {
    --body-font: 'Roboto', sans-serif;
    --heading-font: 'Barlow', sans-serif;
    --body-bg: #061224;
    --body-text-color: #7386a8;
    --heading-color: #E8EAED;
    --theme-blue: #00A3FF;
    --theme-color: #E5262B;
    --theme-bg: #071B36;
    --theme-bg2: #0E294D;
    --theme-bg-light: rgba(14, 41, 77, 1);
    --theme-color-light: rgba(255, 255, 255, 0.6);
    --color-white: #ffffff;
    --color-dark: #181C32;
    --color-success: #10B981;
    --color-primary: #29B6F6;
    --color-info: #8358FF;
    --color-danger: #FF7782;
    --color-warning: #FFBB55;
    --color-secondary: #E9ECEF;
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 3px 24px rgb(0 0 0 / 10%);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(117, 127, 149, .25);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --footer-bg: #071B36;
    --footer-text-color: #F5FAFF;
    --theme-gradient: linear-gradient(50deg, #31e7fa 0%, #4477ff 50%, #db74ff 100%);
    --theme-gradient2: linear-gradient(-50deg, #31e7fa 0%, #4477ff 50%, #db74ff 100%)
}

.theme-mode-variables {
/*    --body-bg: #FFFFFF;*/
    --body-bg: #F7F7F7;
    --heading-color: #181C32;
    --theme-bg: #FFFFFF;
    --theme-bg2: #FFFFFF;
    --theme-bg-light: rgba(0, 0, 0, 0.07);
    --theme-color-light: rgba(0, 0, 0, 0.8);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --footer-bg: #F9F9F9;
    --footer-text-color: #757F95
}

*,
*:before,
*:after {
    box-sizing: inherit
}

* {
    scroll-behavior: inherit !important
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box
}

body {
    background: var(--body-bg);
    font-family: var(--body-font);
    font-style: normal;
    font-size: 16px;
    font-size: 18px;
    font-weight: 400;
    color: var(--body-text-color);
    line-height: 1.6;
}

a {
    color: var(--color-dark);
    display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    text-decoration: none
}

a:hover {
    color: var(--color-blue)
}

ul {
    margin: 0;
    padding: 0
}

li {
    list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    margin: 0;
    font-weight: 600;
    font-family: var(--heading-font);
    line-height: 1.2
}

h1 {
    font-size: 40px
}

h2 {
    font-size: 35px
}

h3 {
    font-size: 28px
}

h4 {
    font-size: 22px
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

p {
    margin: 0
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    height: auto
}

label {
    color: #999;
    cursor: pointer;
    font-weight: 400
}

*::-moz-selection {
    background: #d6b161;
    color: var(--color-white);
    text-shadow: none
}

::-moz-selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none
}

::selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center
}

.loader-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.loader-ripple div {
    position: absolute;
    border: 4px solid var(--color-white);
    opacity: 1;
    border-radius: 50%;
    animation: loader-ripple 1s cubic-bezier(0, .2, .8, 1) infinite
}

.loader-ripple div:nth-child(2) {
    animation-delay: -.5s
}

@keyframes loader-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1
    }
    100% {
        top: 0;
        left: 0;
        width: 72px;
        height: 72px;
        opacity: 0
    }
}

.ovrflow-hidden {
    overflow: hidden
}

.position-relative {
    position: relative;
    z-index: 1
}

.text-right {
    text-align: right
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.c-pd {
    padding: 0 7rem
}

.s-pd {
    padding: 0 12rem
}

.h-100 {
    height: 100%
}

.h-100vh {
    height: 100vh
}

.bg {
    background: var(--theme-bg-light)
}

.pt-0 {
    padding-top: 0
}

.pt-10 {
    padding-top: 10px
}

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

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

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

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

.pt-60 {
    padding-top: 60px
}

.pt-70 {
    padding-top: 70px
}

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

.pt-90 {
    padding-top: 90px
}

.pt-100 {
    padding-top: 100px
}

.pt-110 {
    padding-top: 110px
}

.pt-120 {
    padding-top: 120px
}

.pb-0 {
    padding-bottom: 0
}

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

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

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

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

.pb-50 {
    padding-bottom: 50px
}

.pb-60 {
    padding-bottom: 60px
}

.pb-70 {
    padding-bottom: 70px
}

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

.pb-90 {
    padding-bottom: 90px
}

.pb-100 {
    padding-bottom: 100px
}

.pb-110 {
    padding-bottom: 110px
}

.pb-120 {
    padding-bottom: 120px
}

.py-80 {
    padding: 80px 0
}

.py-90 {
    padding: 90px 0
}

.py-100 {
    padding: 100px 0
}

.py-110 {
    padding: 110px 0
}

.py-120 {
    padding: 120px 0
}

.mt-0 {
    margin-top: 0
}

.mt-10 {
    margin-top: 10px
}

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

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

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

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

.mt-60 {
    margin-top: 60px
}

.mt-70 {
    margin-top: 70px
}

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

.mt-90 {
    margin-top: 90px
}

.mt-100 {
    margin-top: 100px
}

.mt-110 {
    margin-top: 110px
}

.mt-120 {
    margin-top: 120px
}

.mb-0 {
    margin-bottom: 0
}

.mb-10 {
    margin-bottom: 10px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-40 {
    margin-bottom: 40px
}

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

.mb-60 {
    margin-bottom: 60px
}

.mb-70 {
    margin-bottom: 70px
}

.mb-80 {
    margin-bottom: 80px
}

.mb-90 {
    margin-bottom: 90px
}

.mb-100 {
    margin-bottom: 100px
}

.mb-110 {
    margin-bottom: 110px
}

.mb-120 {
    margin-bottom: 120px
}

.my-80 {
    margin: 80px 0
}

.my-90 {
    margin: 90px 0
}

.my-100 {
    margin: 100px 0
}

.my-110 {
    margin: 110px 0
}

.my-120 {
    margin: 120px 0
}

.bg-success {
    background-color: var(--color-success) !important
}

.bg-primary {
    background-color: var(--color-primary) !important
}

.bg-info {
    background-color: var(--color-info) !important
}

.bg-danger {
    background-color: var(--color-danger) !important
}

.bg-warning {
    background-color: var(--color-warning) !important
}

.bg-secondary {
    background-color: var(--color-secondary) !important
}

.badge-success {
    color: var(--color-success);
    background: rgba(56, 218, 168, .18)
}

.badge-primary {
    color: var(--color-primary);
    background: rgba(41, 182, 246, .18)
}

.badge-info {
    color: var(--color-info);
    background: rgba(115, 48, 249, .18)
}

.badge-danger {
    color: var(--color-danger);
    background: rgba(255, 119, 130, .18)
}

.badge-secondary {
    color: var(--color-secondary);
    background: rgba(233, 236, 239, .18)
}

.navbar,
.modal-open {
    padding-right: 0 !important
}

.modal-content {
    background: var(--theme-bg);
    border-radius: 20px
}

.modal-content .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    line-height: 24px;
    text-align: center;
    background: var(--theme-color);
    color: var(--color-white);
    border-radius: 50px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    opacity: 1;
    z-index: 1
}

.modal-content .btn-close:hover {
    color: var(--color-white);
    background: var(--color-danger)
}

.modal-body {
    padding: 35px
}

.nice-select {
    width: 100%;
    height: 50px;
    line-height: 48px;
    border-radius: 10px;
    background: var(--theme-bg2);
    font-size: 16px;
    color: var(--body-text-color);
    border-color: var(--border-info-color) !important;
    outline: none
}

.nice-select::after {
    width: 8px;
    height: 8px;
    margin-top: -6px;
    right: 15px
}

.nice-select .list {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: var(--theme-bg2);
    border: 1px solid var(--border-info-color);
    box-shadow: none
}

.nice-select .option {
    border-radius: 10px
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
    background: rgba(41, 182, 246, .1);
    color: var(--theme-color)
}

.site-heading {
    position: relative;
    margin-bottom: 50px;
    z-index: 1
}

.site-heading-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px
}

.site-heading-inline .site-title {
    font-size: 28px;
    margin-top: 0
}

.site-heading-inline .theme-btn {
    border-radius: 10px;
    padding: 4px 12px
}

.site-title-tagline {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color)
}

.site-title-tagline i {
    line-height: 0;
    font-size: 20px
}

.site-title {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 35px;
    font-size: 45px;
    color: var(--heading-color);
    margin-top: 10px;
    margin-bottom: 0;
    position: relative
}

.site-title span {
    color: var(--theme-color)
}

.heading-divider {
    position: relative
}

.heading-divider::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 60px;
    background: var(--theme-color);
    bottom: -12px;
    border-radius: 50px
}

.heading-divider::after {
    content: "";
    position: absolute;
    background: var(--body-bg);
    top: 0;
    left: 0;
    bottom: -12px;
    width: 8px;
    animation: heading-move 5s infinite linear
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px)
    }
    50% {
        transform: translateX(52px)
    }
    100% {
        transform: translateX(-1px)
    }
}

@media all and (max-width:767px) {
    .site-heading-inline .site-title {
        font-size: 25px
    }
}

.theme-btn {
    position: relative;
    font-size: 16px;
    color: var(--color-white);
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    background: var(--theme-color);
    cursor: pointer;
    overflow: hidden;
    vertical-align: middle;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    z-index: 1
}

.theme-btn::before {
    content: "";
    position: absolute;
    background: var(--color-danger);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .24s ease-in-out;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 3px;
}

.theme-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left center
}

.theme-btn:hover {
    color: var(--color-white)
}

.theme-btn2 {
    background: var(--color-danger)
}

.theme-btn2::before {
    background: var(--theme-color)
}

.theme-btn i {
    margin-left: 5px
}

.theme-btn span {
    margin-right: 5px
}

#scroll-top {
    position: fixed;
    bottom: -20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: var(--color-white);
    background-color: var(--theme-color);
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    box-shadow: var(--box-shadow2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1
}

#scroll-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 80px
}

@media all and (min-width:768px) and (max-width:1199px) {
    #scroll-top.active {
        bottom: 100px
    }
}

.navbar {
    background: 0 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 1px solid var(--border-info-color);
    z-index: 999
}

.navbar.fixed-top {
    background: var(--body-bg);
    box-shadow: var(--box-shadow2);
    animation: slide-down .7s
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%)
    }
    100% {
        transform: translateY(0)
    }
}

.navbar-brand {
    margin-right: 0
}

.navbar-brand img {
    width: 140px
}

.navbar-brand .logo-light-mode {
    display: none
}

.navbar .navbar-brand .logo-display {
    display: block
}

.navbar .navbar-brand .logo-scrolled {
    display: none
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block
}

.navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none
}

.navbar-toggler-mobile-icon {
    display: inline-block;
    width: inherit;
    height: inherit
}

.navbar .dropdown-toggle::after {
    content: "\f107";
    display: inline-block;
    vertical-align: baseline;
    font-family: 'font awesome 6 pro';
    font-weight: 600;
    border: none;
    font-size: 14px;
    margin-left: 5px
}

.navbar .nav-item.live .nav-link i {
    color: var(--color-danger);
    font-size: 12px;
    vertical-align: middle;
    margin-right: 2px
}

.navbar .color-mode .dark-btn {
    display: none
}

@media all and (min-width:992px) {
    .navbar .nav-item .nav-link {
        margin-right: 15px;
        margin-left: 15px;
        padding: 26px 0;
        font-size: 15px;
        font-weight: 500;
        color: var(--heading-color);
        text-transform: capitalize;
        position: relative;
        z-index: 1
    }
    .navbar .nav-item .nav-link::before {
        content: "";
        position: absolute;
        background: var(--theme-color);
        width: 0;
        height: 3px;
        bottom: 20px;
        left: 1px;
        border-radius: 50px;
        transition: var(--transition)
    }
    .navbar .nav-item .nav-link.active::before,
    .navbar .nav-item .nav-link:hover::before {
        width: 20px
    }
    .navbar .nav-item:last-child .nav-link {
        margin-right: 0
    }
    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        padding: 15px 12px;
        left: -15px;
        border-radius: 15px;
        background: var(--body-bg);
        border-color: var(--theme-bg2);
        width: 200px;
        box-shadow: var(--box-shadow)
    }
    .navbar .nav-item .dropdown-menu li:last-child {
        margin-bottom: 0
    }
    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 16px;
        font-weight: 400;
        color: var(--heading-color);
        position: relative;
        overflow: hidden;
        text-transform: capitalize;
        white-space: wrap;
        transition: all .3s ease-in-out
    }
    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background: 0 0;
        color: var(--theme-color)
    }
    .navbar .nav-item .dropdown-menu .dropdown-item:focus {
        background: 0 0 !important
    }
    .navbar .nav-item .dropdown-menu .dropdown-item::before {
        content: "\f111";
        position: absolute;
        font-family: 'font awesome 6 pro';
        left: 2px;
        top: 14px;
        color: var(--theme-color);
        font-size: 6px;
        font-weight: 700;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: -1
    }
    .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
        opacity: 1;
        visibility: visible
    }
    .navbar .nav-item .nav-link {
        position: relative
    }
    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--theme-color)
    }
    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg)
    }
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto
    }
    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%
    }
    .navbar .dropdown-menu.fade-up {
        top: 140%
    }
    .navbar .dropdown-menu.mega-menu {
        min-width: 630px
    }
    .navbar .dropdown-menu.mega-menu .dropdown-item i {
        width: 25px;
        color: var(--theme-color);
        border-radius: 5px
    }
    .navbar #main_nav {
        justify-content: flex-end
    }
    .navbar-nav {
        margin: 0 auto
    }
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.nav-right-link {
    position: relative;
    width: 43px;
    height: 43px;
    line-height: 42px;
    padding: 0;
    font-size: 20px;
    text-align: center;
    color: var(--heading-color);
    border: none;
    background: var(--theme-bg-light);
    border-radius: 50px;
    transition: var(--transition)
}

.nav-right-link:hover {
    color: var(--theme-color) !important
}

.nav-right-btn .theme-btn {
    padding: 9px 15px
}

.nav-right-search {
    position: relative
}

.nav-right-search .form-group {
    position: relative
}

.nav-right-search .form-group .form-control {
    padding: 12px 40px 12px 15px;
    border-radius: 12px;
    border: none;
    background: var(--theme-bg-light);
    color: var(--theme-color-light);
    box-shadow: var(--box-shadow)
}

.nav-right-search .form-group .form-control::placeholder {
    color: var(--theme-color-light)
}

.nav-right-search .form-group button {
    position: absolute;
    top: 5px;
    right: 6px;
    border: none;
    background: 0 0;
    color: var(--heading-color);
    font-size: 20px
}

.nav-notification .nav-right-link {
    position: relative
}

.nav-notification .count {
    position: absolute;
    background: var(--theme-color);
    color: var(--color-white);
    text-align: center;
    font-size: 14px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50px;
    right: -4px;
    top: -8px
}

.nav-notification .dropdown-menu {
    background: var(--body-bg);
    border: 1px solid var(--theme-bg2);
    border-radius: 15px;
    padding: 20px;
    min-width: 280px;
    box-shadow: var(--box-shadow)
}

.nav-notification .dropdown-item {
    color: var(--color-white);
    padding: 10px 0
}

.nav-notification .dropdown-item:hover {
    background: 0 0
}

.nav-notification .notification-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-info-color);
    padding-bottom: 12px;
    margin-bottom: 10px
}

.nav-notification .notification-top h5 {
    color: var(--heading-color)
}

.nav-notification .notification-item {
    display: flex;
    align-items: center;
    gap: 15px
}

.nav-notification .notification-img {
    position: relative
}

.nav-notification .notification-img img {
    width: 50px;
    border-radius: 50px
}

.nav-notification .notification-img .icon {
    position: absolute;
    right: -4px;
    bottom: -4px;
    width: 30px;
    height: 30px;
    border: 3px solid var(--theme-bg);
    border-radius: 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center
}

.nav-notification .notification-content {
    flex: 1
}

.nav-notification .notification-content h6 {
    color: var(--heading-color);
    transition: var(--transition)
}

.nav-notification .notification-item:hover h6 {
    color: var(--theme-color)
}

.nav-notification .notification-content span {
    color: var(--heading-color);
    font-size: 15px
}

.nav-notification .notification-bottom {
    margin-top: 12px
}

.nav-notification .notification-bottom .theme-btn {
    width: 100%;
    text-align: center;
    padding: 8px 20px
}

.nav-profile .nav-profile-img img {
    width: 40px;
    border-radius: 50px
}

.nav-profile .dropdown-menu {
    background: var(--body-bg);
    border: 1px solid var(--theme-bg2);
    border-radius: 15px;
    padding: 20px;
    min-width: 240px;
    box-shadow: var(--box-shadow)
}

.nav-profile .dropdown-item {
    color: var(--heading-color);
    padding: 7px 0
}

.nav-profile .dropdown-item:hover {
    background: 0 0;
    color: var(--theme-color);
    padding-left: 3px
}

.nav-profile .dropdown-item i {
    margin-right: 8px;
    color: var(--theme-color)
}

.nav-profile .profile-text {
    color: var(--heading-color);
    display: block;
    margin-top: 15px
}

.nav-profile .profile-text span {
    color: var(--theme-color)
}

.nav-profile .profile-balance {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid var(--border-info-color);
    border-radius: 15px;
    gap: 10px
}

.nav-profile .profile-balance-img img {
    width: 42px;
    border-radius: 50px
}

.nav-profile .profile-wallet {
    display: flex;
    justify-content: space-between;
    background: var(--theme-bg-light);
    color: var(--heading-color);
    padding: 5px 12px;
    border-radius: 10px;
    margin-top: 10px
}

.nav-profile .profile-wallet .copy-box {
    position: relative
}

.nav-profile .profile-wallet .copy-text {
    width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.nav-profile .profile-wallet .copy-btn {
    color: var(--heading-color);
    padding: 0;
    border: none;
    background: 0 0
}

.nav-profile .profile-wallet .copy-notify {
    position: absolute;
    background: var(--theme-color);
    color: var(--color-white);
    border-radius: 8px;
    font-weight: 500;
    line-height: 1;
    padding: 5px 10px;
    margin-top: 1px;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition)
}

.nav-profile .profile-wallet .copy-notify.active {
    transform: scale(1);
    opacity: 1
}

.nav-profile .dropdown-divider {
    border-color: var(--border-info-color);
    margin-top: 15px
}

.nav-profile .profile-balance h6 {
    color: var(--heading-color)
}

.nav-profile .profile-balance span {
    color: var(--heading-color)
}

@media all and (min-width:1199px) and (max-width:1399px) {
    .navbar .nav-item .nav-link {
        margin-right: 18px
    }
    .nav-right {
        gap: 10px
    }
}

@media all and (min-width:992px) and (max-width:1199px) {
    .navbar-brand img {
        width: 100px
    }
    .navbar .nav-item .nav-link {
        margin-right: 15px
    }
    .nav-right {
        gap: 6px
    }
}

@media all and (max-width:1199px) {
    .nav-right-btn {
        display: none
    }
}

.mobile-menu-right {
    display: none
}

@media all and (max-width:991px) {
    .navbar {
/*        position: fixed;*/
        top: 0;
        right: 0;
        left: 0;
        padding: 10px 0
    }
    .navbar .navbar-brand {
        padding: 0
    }
    .navbar .navbar-brand img {
        width: 130px
    }
    .navbar .navbar-collapse {
        max-height: 220px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px;
        background: var(--theme-bg2);
        border-radius: 12px;
        border: 1px solid var(--border-info-color)
    }
    .navbar .dropdown-toggle::after {
        float: right;
        margin-top: 2px
    }
    .navbar .nav-item .nav-link {
        color: var(--heading-color);
        font-weight: 700;
        transition: var(--transition)
    }
    .navbar .nav-item .nav-link:hover {
        color: var(--theme-color) !important
    }
    .navbar .navbar-toggler {
        padding: 0;
        border: none
    }
    .navbar .dropdown-menu.mega-menu .dropdown-item i {
        width: 25px;
        color: var(--theme-color);
        border-radius: 5px
    }
    .mobile-menu-right {
        display: flex;
        align-items: center;
        gap: 18px
    }
    .mobile-menu-right .nav-right-link {
        width: 20px;
        background: 0 0;
        border: none;
        font-size: 20px;
        color: var(--heading-color)
    }
    .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color)
    }
    .mobile-menu-right .search-area {
        width: 90%;
        left: 50%;
        transform: translateX(-50%)
    }
    .mobile-menu-right .search-area.open {
        top: 55px !important
    }
    .mobile-menu-right .nav-notification .dropdown-menu {
        min-width: 260px
    }
    .mobile-menu-right .nav-notification .count {
        width: 18px;
        height: 18px;
        line-height: 18px;
        font-size: 12px;
        right: -5px;
        top: 0
    }
    .mobile-menu-right .nav-profile-img img {
        width: 30px
    }
    .navbar-toggler-mobile-icon {
        font-size: 25px;
        color: var(--heading-color);
        font-weight: 500
    }
    .navbar .dropdown-menu {
        background: var(--theme-bg);
        border-radius: 12px
    }
    .navbar .dropdown-menu .dropdown-item {
        color: var(--heading-color)
    }
    .nav-right {
        display: none
    }

    .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main{ width:100% !important; }
}

.navbar .nav-item .dropdown-submenu {
    position: relative
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
    display: none
}

.navbar .nav-item .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 10px;
    top: 6px;
    font-weight: 600
}

.navbar .nav-item .dropdown-submenu a:hover {
    background: 0 0;
    color: var(--color-white)
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
    top: 120%;
    left: 100%;
    opacity: 0;
    visibility: hidden
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
    top: 0;
    opacity: 1;
    visibility: visible
}

@media all and (max-width:991px) {
    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        background: var(--theme-bg2);
        margin: 0 17px;
        opacity: unset;
        visibility: unset
    }
    .navbar .nav-item .dropdown-submenu a::after {
        top: 4.8px;
        right: 14px
    }
    .navbar .nav-item .dropdown-submenu a:hover {
        color: var(--theme-color)
    }
}

.search-area {
    position: absolute;
    top: 85px;
    right: 0;
    background: var(--theme-bg2);
    padding: 12px;
    width: 340px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    z-index: 1
}

.search-area.open {
    visibility: visible;
    opacity: 1;
    top: 60px
}

.search-area .form-group {
    position: relative
}

.search-area .form-control {
    background: 0 0;
    color: var(--theme-color-light);
    border: 2px solid var(--border-info-color);
    padding: 12px 45px 12px 20px;
    border-radius: 10px;
    box-shadow: none
}

.search-area .form-control::placeholder {
    color: var(--theme-color-light)
}

.search-area .form-control:focus {
    border-color: var(--theme-color)
}

.search-area .search-icon-btn {
    position: absolute;
    right: 8px;
    top: 6px;
    background: 0 0;
    border: none;
    font-size: 20px;
    color: var(--theme-color)
}

.main {
    margin-top: 0
}

@media all and (max-width:991px) {
    .main {
        margin-top: 3.8rem
    }
}

.hero-section {
    position: relative
}

.hero-single {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.hero-single .hero-content {
    height: 100%
}

.hero-single .hero-content .hero-sub-title {
    display: inline-block;
    color: var(--heading-color);
    font-size: 24px;
    letter-spacing: 6px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

.hero-single .hero-content .hero-title {
    color: var(--heading-color);
    font-size: 55px;
    font-size: 62px;
    font-weight: 600;
    margin: 20px 0;
    text-transform: capitalize;
    line-height: 1.1;
}

.hero-single .hero-content .hero-title span {
    color: transparent;
    -webkit-text-stroke: 2px var(--heading-color);
    -webkit-text-fill-color: transparent
}

.hero-single .hero-content p {
    color: var(--heading-color);
    line-height: 30px;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-single .hero-btn {
    display: flex;
    justify-content: start;
    gap: 1rem;
    margin-top: 35px
}

.hero-single .hero-btn .theme-btn {
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-img-ani-1 {
    animation: hero-img-ani-1 7s linear infinite
}

@keyframes hero-img-ani-1 {
    0%,
    100% {
        transform: translateX(0);
        transition: all .3s ease
    }
    50% {
        transform: translateX(-20px);
        transition: all .3s ease
    }
}

.hero-img-ani-2 {
    animation: hero-img-ani-2 7s linear infinite
}

@keyframes hero-img-ani-2 {
    0%,
    100% {
        transform: translateY(0);
        transition: all .3s ease
    }
    50% {
        transform: translateY(-20px);
        transition: all .3s ease
    }
}

@media all and (max-width:1199px) {
    .hero-single .hero-content .hero-title {
        font-size: 32px
    }
}

@media all and (max-width:991px) {
    .hero-single .hero-content .hero-sub-title {
        font-size: 22px
    }
    .hero-single .hero-img {
        margin-top: 70px
    }
}

@media all and (max-width:767px) {
    .hero-single .hero-content .hero-btn {
        gap: .5rem
    }
    .hero-single .hero-content .hero-btn .theme-btn {
        padding: 8px 15px
    }
}

.hero-slider.owl-theme .owl-nav button {
    display: inline-block;
    font-size: 35px;
    text-align: center;
    color: var(--color-white);
    background: rgba(255, 255, 255, .2);
    border-radius: 50px;
    position: absolute;
    height: 55px;
    width: 55px;
    line-height: 55px;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition)
}

.hero-slider .owl-nav button:hover {
    background: var(--color-white);
    color: var(--theme-color)
}

.hero-slider .owl-nav .owl-prev {
    left: 30px
}

.hero-slider .owl-nav .owl-next {
    right: 30px
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%)
}

.hero-slider .owl-dots .owl-dot span {
    background: 0 0;
    border: 3px solid var(--color-white);
    margin: 5px;
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50px;
    transition: var(--transition)
}

.hero-slider .owl-dots .owl-dot.active span {
    background-color: var(--theme-color)
}

@media all and (max-width:1199px) {
    .hero-slider.owl-theme .owl-nav button {
        top: unset;
        bottom: -10px
    }
    .hero-slider .owl-nav .owl-prev {
        left: unset;
        right: 65px
    }
    .hero-slider .owl-nav .owl-next {
        right: 10px
    }
}

.hs-1 .hero-slider {
    border-radius: 15px;
    overflow: hidden
}

.hs-1 .hero-single {
    padding: 90px 80px
}

.hs-1 .hero-single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(30deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1
}

.hs-1 .hero-single .hero-content p,
.hs-1 .hero-single .hero-content .hero-sub-title {
    color: var(--color-white)
}

.hs-1 .hero-single .hero-title {
    font-size: 60px;
    color: var(--color-white)
}

.hs-1 .hero-single .hero-title span {
    -webkit-text-stroke: 2px var(--color-white)
}

.hs-1 .hero-slider .owl-nav button {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 30px
}

@media all and (max-width:991px) {
    .hs-1 .hero-single {
        padding: 80px 0
    }
    .hs-1 .hero-single .hero-title {
        font-size: 25px
    }
    .hs-1 .hero-slider .owl-nav button {
        bottom: -2px
    }
}

.hs-2 .hero-slider {
    border-radius: 15px;
    overflow: hidden
}

.hs-2 .hero-single {
    padding: 30px 80px 60px
}

.hs-2 .hero-single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(30deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1
}

.hs-2 .hero-single .hero-content p,
.hs-2 .hero-single .hero-content .hero-sub-title {
    color: var(--color-white)
}

.hs-2 .hero-single .hero-title {
    font-size: 47px;
    color: var(--color-white);
    margin-top: 0
}

.hs-2 .hero-single .hero-title span {
    -webkit-text-stroke: 2px var(--color-white)
}

.hs-2 .hero-slider .owl-nav button {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 30px
}

.hs-2 .hero-slider .owl-dots {
    bottom: 12px
}

.hs-2 .hero-slider .hero-btn {
    margin-top: 15px
}

@media all and (max-width:991px) {
    .hs-2 .hero-single {
        padding: 80px 0
    }
    .hs-2 .hero-single .hero-title {
        font-size: 25px
    }
    .hs-2 .hero-slider .owl-nav button {
        bottom: -2px
    }
}

.hs-3 .hero-single {
    padding: 0
}

.hs-3 .hero-single .hero-content .hero-title {
    font-size: 65px
}

.hs-3 .hero-single .hero-content .hero-title span {
    color: var(--theme-color);
    -webkit-text-stroke: unset;
    -webkit-text-fill-color: unset;
    position: relative
}

.hs-3 .hero-single .hero-content .hero-title span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/shape/02.png);
    background-repeat: no-repeat;
    background-size: contain
}

.hs-3 .hero-summary {
    display: flex;
    gap: 50px;
    margin-top: 40px
}

.hs-3 .hero-summary h4 {
    color: var(--theme-color);
    font-size: 38px;
    margin-bottom: 5px
}

.hs-3 .hero-img {
    position: relative;
    padding-left: 50px
}

@media all and (max-width:1199px) {
    .hs-3 .hero-single {
        padding: 80px 0
    }
    .hs-3 .hero-single .hero-content .hero-title {
        font-size: 35px
    }
}

@media all and (max-width:991px) {
    .hs-3 .hero-summary {
        gap: 30px
    }
    .hs-3 .hero-summary p {
        font-size: 15px
    }
    .hs-3 .hero-img {
        padding-left: 0
    }
}

.hs-4 .hero-single {
    padding-top: 180px;
    padding-bottom: 150px
}

.hs-4 .hero-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6000px;
    background-repeat: repeat-x !important;
    background-size: contain !important;
    animation: bg-slide 150s linear infinite
}

.hs-4 .hero-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100%
}

@keyframes bg-slide {
    0% {
        transform: translate3d(0, 0, 0)
    }
    100% {
        transform: translate3d(-2000px, 0, 0)
    }
}

.hs-4 .hero-single .hero-content {
    position: relative
}

.hs-4 .hero-single .hero-content .hero-title {
    color: var(--color-white)
}

.hs-4 .hero-single .hero-content p {
    color: var(--color-white);
    font-size: 22px
}

.hs-4 .hero-search .form-group {
    position: relative
}

.hs-4 .hero-search .form-control {
    padding: 17px 60px 17px 20px;
    border-radius: 12px;
    border: none;
    box-shadow: none
}

.hs-4 .hero-search button {
    position: absolute;
    right: 2px;
    top: 3px;
    padding: 3px 14px 2px;
    font-size: 25px;
    color: var(--theme-color);
    background: 0 0;
    border: none
}

.hs-4 .hero-search .suggestion {
    margin-top: 15px
}

.hs-4 .hero-search .suggestion span {
    color: var(--color-white);
    font-weight: 500
}

.hs-4 .hero-search .suggestion a {
    color: var(--color-white);
    margin-left: 5px
}

.hs-4 .hero-search .suggestion a:hover {
    color: var(--theme-color)
}

.hs-5 .hero-single {
    padding-top: 200px;
    padding-bottom: 70px
}

.hs-5 .hero-bg {
    position: absolute;
    background-position: center;
    background-size: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    filter: blur(100px);
    opacity: .8
}

.hs-6 .hero-single {
    padding-top: 70px
}

.hs-6 .hero-img-wrap {
    position: relative
}

.hs-6 .hero-img-shape {
    position: absolute;
    left: 6%;
    top: -10%;
    width: 85%;
    height: 100%;
    opacity: .3;
    z-index: -1
}

.hs-6 .hero-img {
    display: flex;
    gap: 20px;
    padding-left: 40px
}

.hs-6 .hero-img img {
    width: 100%;
    border-radius: 20px
}

.hs-6 .hero-img .hero-img-2 {
    margin-top: 50px
}

.hs-6 .hero-img-client {
    width: 300px;
    position: absolute;
    left: 0;
    bottom: -40px;
    background: 0 0;
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border-info-color);
    box-shadow: var(--box-shadow)
}

.hs-6 .hero-img-client .client-wrap {
    margin-bottom: 10px
}

.hs-6 .hero-img-client .client-wrap img {
    width: 32px !important;
    border-radius: 50px;
    border: 3px solid var(--color-white);
    position: relative
}

.hs-6 .hero-img-client .client-wrap a {
    margin-left: -15px
}

.hs-6 .hero-img-client .client-wrap a:first-child {
    margin: 0
}

.hs-6 .hero-img-client .client-wrap a:hover img {
    border-color: var(--theme-color);
    z-index: 1
}

.hs-6 .hero-img-client .client-wrap span {
    color: var(--color-white);
    font-weight: 500;
    margin-left: 5px
}

.hs-6 .hero-img-client p {
    color: var(--heading-color)
}

@media all and (max-width:767px) {
    .hs-6 .hero-img {
        padding-left: 10px
    }
    .hs-6 .hero-img-client {
        bottom: -35%
    }
}

.hero-slider2 {
    margin-top: 20px
}

.hero-slider2 .hero-item {
    position: relative
}

.hero-slider2 .hero-item-content {
    position: relative;
    width: 100%;
    vertical-align: middle
}

.hero-slider2 .hero-item-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .5) 1%, rgba(0, 0, 0, 0) 100%);
    border-radius: 15px;
    z-index: 1
}

.hero-slider2 .hero-item img {
    width: 100%;
    border-radius: 15px;
    transition: var(--transition)
}

.hero-slider2 .hero-item-img {
    border-radius: 15px;
    overflow: hidden
}

.hero-slider2 .hero-item-content:hover img {
    transform: scale(1.05)
}

.hero-slider2 .hero-item-content .info {
    position: absolute;
    left: 20px;
    bottom: 14px;
    z-index: 1
}

.hero-slider2 .hero-item-content .info h6 {
    color: var(--color-white);
    font-size: 20px
}

.hero-slider2 .hero-item-content .info p {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500
}

.hero-slider2 .hero-item-content.wide-img img {
    height: 240px;
    object-fit: cover
}

.hero-slider2 .hero-item-content.wide-tall img {
    height: 494px;
    object-fit: cover
}

.hero-slider2.owl-theme .owl-nav button {
    display: inline-block;
    font-size: 28px;
    text-align: center;
    color: var(--color-white);
    background: var(--theme-color);
    border-radius: 50px;
    position: absolute;
    height: 45px;
    width: 45px;
    line-height: 47px;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden
}

.hero-slider2:hover .owl-nav button {
    opacity: 1;
    visibility: visible
}

.hero-slider2 .owl-nav button:hover {
    background: var(--color-white);
    color: var(--theme-color)
}

.hero-slider2 .owl-nav .owl-prev {
    left: -18px
}

.hero-slider2 .owl-nav .owl-next {
    right: -18px
}

@media all and (max-width:1199px) {
    .hero-slider2 .hero-item-content.wide-img img {
        height: 235px
    }
    .hero-slider2 .hero-item-content.wide-tall img {
        height: 485px
    }
}

@media all and (max-width:991px) {
    .hero-slider2 {
        margin-top: 90px
    }
    .hero-slider2 .hero-item-content.wide-img img {
        height: 188px
    }
    .hero-slider2 .hero-item-content.wide-tall img {
        height: 388px
    }
}

@media all and (max-width:767px) {
    .hero-slider2 .hero-item-content.wide-img img {
        height: 180px
    }
    .hero-slider2 .hero-item-content.wide-tall img {
        height: 373px
    }
}

.hero-slider3 .item {
    padding: 16px;
    box-shadow: none
}

.hero-slider3.owl-theme .owl-nav button {
    display: inline-block;
    font-size: 25px;
    text-align: center;
    color: var(--color-white);
    background: var(--theme-color);
    border-radius: 50px;
    position: absolute;
    height: 40px;
    width: 40px;
    line-height: 40px;
    margin-top: -30px;
    top: 50%;
    transform: translateY(-50%)
}

.hero-slider3 .owl-nav button:hover {
    background: var(--color-white);
    color: var(--theme-color)
}

.hero-slider3 .owl-nav .owl-prev {
    left: -5px
}

.hero-slider3 .owl-nav .owl-next {
    right: -5px
}

.hero-slider3 .owl-dots {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%)
}

.hero-slider3 .owl-dots .owl-dot span {
    background: var(--theme-color);
    margin: 5px;
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50px;
    transition: var(--transition)
}

.hero-slider3 .owl-dots .owl-dot.active span {
    background: var(--theme-color);
    width: 15px
}

@media all and (max-width:991px) {
    .hero-slider3 {
        margin-top: 50px
    }
}

.shape .shape-1 {
    position: absolute;
    left: -50px;
    top: -80px;
    width: 300px;
    height: 300px;
    background: #5161f9;
    border-radius: 50px;
    filter: blur(150px)
}

.shape .shape-2 {
    position: absolute;
    left: 45%;
    top: 100px;
    width: 200px;
    height: 200px;
    background: #09a4f1;
    border-radius: 50px;
    filter: blur(150px)
}

.shape .shape-3 {
    position: absolute;
    right: -50px;
    bottom: 100px;
    width: 250px;
    height: 250px;
    background: #ca1dca;
    border-radius: 10px;
    filter: blur(130px)
}

.about-left {
    position: relative
}

.about-left img {
    width: 100%
}

.about-right {
    position: relative;
    display: block;
    padding-left: 30px
}

.about-content {
    margin-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-info-color)
}

.about-item {
    display: flex;
    gap: 15px
}

.about-item-icon {
    font-size: 45px;
    color: var(--theme-color);
    line-height: 1
}

.about-item-content {
    flex: 1
}

.about-item-content h5 {
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--heading-color);
    font-weight: 500
}

@media all and (max-width:991px) {
    .about-right {
        margin-top: 70px;
        padding-left: 0
    }
}

@media all and (max-width:767px) {
    .about-item {
        margin-top: 30px
    }
}

.main-category {
    position: relative
}

.main-category .category-item {
    width: 100%;
    text-align: center;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    background: var(--theme-bg);
    border: 1px solid var(--border-info-color)
}

.main-category .category-item i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    color: var(--color-white);
    background: linear-gradient(50deg, #31e7fa 0%, #4477ff 50%, #db74ff 100%);
    border-radius: 50px;
    margin-bottom: 10px
}

.main-category .category-item h4 {
    color: var(--heading-color);
    font-weight: 500
}

.main-category .category-item span {
    color: var(--body-text-color);
    font-weight: 500
}

.main-category2 .category-item {
    padding: 10px;
    background: var(--theme-bg);
    border-radius: 18px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow)
}

.main-category2 .category-item:hover {
    transform: scale(1.05)
}

.main-category2 .category-item img {
    border-radius: 15px
}

.main-category2 .category-item h4 {
    color: var(--heading-color);
    font-size: 20px;
    margin-top: 5px
}

.item-wrap {
    position: relative
}

.item {
    background: var(--theme-bg);
    padding: 16px 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow)
}

.item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px
}

.item-bid img {
    width: 32px !important;
    border-radius: 50px;
    border: 3px solid var(--color-white);
    position: relative
}

.item-bid a {
    margin-left: -15px
}

.item-bid a:hover img {
    border-color: var(--theme-color);
    z-index: 1
}

.item-bid a:first-child {
    margin: 0
}

.item-bid h5 {
    color: var(--heading-color);
    font-weight: 500
}

.item-bid {
    display: flex;
    align-items: center;
    gap: 8px
}

.item-option .btn {
    color: var(--heading-color);
    font-size: 22px;
    padding: 2px 6px;
    line-height: 0;
    border: none;
    box-shadow: none
}

.item-option .dropdown-menu {
    background: var(--theme-bg2);
    padding: 8px;
    border-radius: 15px;
    border: none;
    box-shadow: var(--box-shadow)
}

.item-option .dropdown-item {
    color: var(--heading-color)
}

.item-option .dropdown-item i {
    margin-right: 5px
}

.item-option .dropdown-item:hover {
    color: var(--theme-color);
    background: rgba(0, 163, 255, .09);
    border-radius: 8px
}

.item-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden
}

.item-img img {
    border-radius: 15px
}

.item:hover .item-img img {
    transform: scale(1.05)
}

.item-countdown-wrap {
    background:  var(--theme-color);
    backdrop-filter: blur(16px);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 4px 14px;
    border-radius: 50px;
    position: absolute;
    top: 10px;
    right: 10px;
    text-transform: uppercase;
    font-weight: 300;
}
.item-countdown-wrap h6{ color:#fff; }
.item-countdown-wrap .unit {
    display: none
}

.item-countdown-wrap i {
    color: var(--color-danger)
}

.item-countdown-wrap.icw-2 {
    width: 180px;
    top: -28px;
    left: 50%;
    right: unset;
    bottom: unset;
    background: var(--theme-bg);
    color: var(--theme-color);
    padding: 5px 15px;
    backdrop-filter: unset;
    border: none;
    box-shadow: none;
    transform: translateX(-50%)
}

.item-countdown-wrap.icw-3 {
    top: -28px;
    left: -10px;
    right: unset;
    bottom: unset;
    background: var(--theme-bg);
    color: var(--theme-color);
    padding: 5px 15px;
    backdrop-filter: unset;
    border: none;
    border-radius: 0 50px 50px 50px;
    box-shadow: none
}

.item-content {
    position: relative
}

.item-title a {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-top: 12px;
    transition: var(--transition)
}

.item-title a:hover {
    color: var(--theme-color)
}

.item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0 15px
}

.item-author {
    display: flex;
    align-items: center;
    gap: 8px
}

.item-author-img {
    position: relative;
    width: 46px
}

.item-author-img img {
    border-radius: 50px
}

.item-author-badge {
    position: absolute;
    right: 2px;
    bottom: 6px;
    width: 18px;
    height: 18px
}

.item-author-content {
    line-height: 1
}

.item-author-content span {
    color: var(--heading-color);
    font-size: 15px;
    letter-spacing: .5px
}

.item-author-content a {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 16px;
    display: block;
    margin-top: 8px
}

.item-author-content a:hover {
    color: var(--theme-color)
}

.item-price {
    text-align: right;
    line-height: 1
}

.item-price span {
    color: var(--heading-color);
    font-size: 15px;
    letter-spacing: .5px
}

.item-price h6 {
    color: var(--theme-color);
    font-size: 19px;
    margin-top: 8px
}

.item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--border-info-color)
}

.item-like {
    color: var(--heading-color);
    font-size: 17px
}

.item-like:hover {
    color: var(--theme-color)
}

.item-like i {
    color: var(--color-danger);
    margin-right: 5px
}

.item-like:hover i {
    font-weight: 700
}

.item-bottom .theme-btn {
    padding: 5px 18px;
    border-radius: 50px
}

.item-bid-form h4 {
    color: var(--heading-color);
    font-size: 26px;
    margin-bottom: 25px
}

.item-bid-form .form-group {
    margin-bottom: 20px
}

.item-bid-form .form-control {
    padding: 14px 18px;
    border-radius: 12px;
    border: none;
    box-shadow: none;
    color: var(--heading-color);
    background: var(--theme-bg-light)
}

.item-bid-form .form-control::placeholder {
    color: var(--heading-color)
}

.item-bid-form p {
    color: var(--heading-color);
    font-weight: 500;
    margin-bottom: 10px
}

.item-bid-form p span {
    font-weight: 700;
    color: var(--theme-color)
}

.item-bid-summary {
    margin-top: 30px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-info-color)
}

.item-bid-summary .summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px
}

.item-bid-summary .summary-item span {
    color: var(--heading-color);
    font-weight: 500
}

.item-bid-summary .summary-item strong {
    color: var(--theme-color)
}

.item-2 .item {
    padding: 20px
}

.item-2 .item-like {
    position: absolute;
    right: 10px;
    top: 10px;
    background: var(--theme-bg2);
    padding: 0 10px;
    border-radius: 50px;
    box-shadow: var(--box-shadow);
    z-index: 1
}

.item-2 .item-info {
    margin: 8px 0
}

.item-2 .item-bottom .item-history-btn {
    color: var(--theme-color);
    font-weight: 500
}

.item-2 .item-bottom .item-history-btn:hover {
    color: var(--color-danger)
}

.item-2 .item-bottom .item-history-btn i {
    margin-right: 5px
}

.item-3 .item {
    background: 0 0;
    border: 1px solid var(--border-info-color);
    box-shadow: none
}

.item-3 .item .item-countdown-wrap.icw-3 {
    background: var(--body-bg)
}

.item-3 .item .item-countdown-wrap.icw-2 {
    background: var(--body-bg)
}

.item-single {
    position: relative
}

.item-single-img img {
    border-radius: 15px
}

.item-single-img .item-single-slider {
    overflow: hidden;
    border-radius: 15px
}

.item-single-img .thumnail-owl-dots {
    width: 100%;
    height: 100%
}

.item-single-img .thumnail-owl-dots ul {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column
}

.item-single-img .thumnail-owl-dots li {
    cursor: pointer;
    padding: 8px;
    border-radius: 18px;
    border: 2px solid var(--border-info-color)
}

.item-single-img .thumnail-owl-dots .active {
    border-color: var(--theme-color)
}

.item-single-content {
    padding-left: 15px
}

.item-single-content .content-top {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-info-color)
}

.item-single-content .content-top .title {
    color: var(--heading-color)
}

.item-single-content .content-top .price {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500
}

.item-single-content .content-top .price span {
    color: var(--color-danger);
    font-weight: 800;
    margin-left: 10px;
    letter-spacing: 1px
}

.item-single-content .content-top .content-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px
}

.item-single-content .content-top .content-meta a {
    padding: 2px 15px;
    border-radius: 50px;
    border: 1px solid var(--border-info-color);
    color: var(--body-text-color)
}

.item-single-content .content-top .content-meta a:hover {
    background: var(--theme-color);
    color: var(--color-white)
}

.item-single-content .content-top .content-meta a i {
    margin-right: 5px
}

.item-single-author {
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}

.item-single-author .author-item span {
    color: var(--heading-color);
    font-weight: 500;
    display: block;
    margin-bottom: 5px
}

.item-single-author .author-img {
    width: 45px;
    position: relative
}

.item-single-author .author-badge {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 16px
}

.item-single-author .author-info {
    display: flex;
    align-items: center;
    gap: 10px
}

.item-single-author .author-img img {
    border-radius: 50px
}

.item-single-author .author-info h5 a {
    color: var(--heading-color)
}

.item-single-author .author-info h5 a:hover {
    color: var(--theme-color)
}

.item-single-author .author-item.collection .author-img img {
    width: 100%;
    height: 45px;
    object-fit: cover
}

.item-single-info {
    margin-top: 20px
}

.item-single-info .nav {
    padding: 5px;
    border-radius: 12px;
    border: 1px solid var(--border-info-color);
    gap: 15px
}

.item-single-info .nav .nav-link {
    background: var(--theme-bg-light);
    color: var(--body-text-color);
    border-radius: 10px;
    font-weight: 500;
    padding: 5px 20px
}

.item-single-info .nav .nav-link.active {
    background: var(--theme-color);
    color: var(--color-white)
}

.item-single-details .details-list {
    margin-top: 15px
}

.item-single-details .details-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0
}

.item-single-details .details-list li strong {
    font-weight: 500
}

.item-single-details .details-list li strong i {
    color: var(--theme-color);
    width: 27px
}

.item-single-bid .bid-item {
    display: flex;
    align-items: center;
    gap: 12px
}

.item-single-bid .bid-item {
    width: fit-content;
    padding: 14px 20px 14px 14px;
    border-radius: 15px;
    border: 1px solid var(--border-info-color);
    margin-top: 25px
}

.item-single-bid .bid-item .author-img {
    position: relative
}

.item-single-bid .bid-item .author-img img {
    width: 50px;
    border-radius: 50px
}

.item-single-bid .bid-item .author-badge {
    position: absolute;
    width: 16px;
    right: -2px;
    bottom: -2px
}

.item-single-bid .bid-item .author-info p {
    line-height: 1
}

.item-single-bid .bid-item .author-info h6 {
    color: var(--body-text-color);
    margin-top: 7px
}

.item-single-bid .bid-item .author-info a {
    color: var(--theme-color);
    font-weight: 500
}

.item-single-bid .bid-item .author-info a:hover {
    color: var(--color-danger)
}

.item-single .content-bottom .content-bid-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid var(--border-info-color);
    border-bottom: 1px solid var(--border-info-color);
    padding: 18px 0;
    margin: 18px 0
}

.item-single .content-bottom .item-single-btn {
    width: 100%
}

.item-single .content-bottom .bid-countdown .time-wrap {
    display: flex;
    align-items: center;
    gap: 8px
}

.item-single .content-bottom h6 {
    margin-bottom: 15px;
    color: var(--body-text-color)
}

.item-single .content-bottom h6 i {
    color: var(--theme-color)
}

.item-single .content-bottom .bid-min-amount h5 {
    color: var(--color-danger)
}

.item-single .content-bottom .bid-countdown {
    border-left: 1px solid var(--border-info-color);
    padding-left: 20px
}

.item-single .content-bottom .bid-countdown .time {
    background: var(--theme-bg);
    border: 1px solid var(--border-info-color);
    padding: 8px 10px;
    border-radius: 10px;
    text-align: center
}

.item-single .content-bottom .bid-countdown .time span:first-child {
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 4px
}

.item-single .content-bottom .bid-countdown .time span {
    display: block;
    line-height: 1
}

.item-single-property {
    margin-top: 20px
}

.item-single-property .title {
    color: var(--heading-color)
}

.item-single-property .property-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px
}

.item-single-property .property-item {
    background: var(--theme-bg);
    border: 1px solid var(--border-info-color);
    border-radius: 15px;
    padding: 5px 15px
}

.item-single-property .property-item span {
    color: var(--theme-color)
}

.item-single-property .property-item h6 {
    color: var(--heading-color)
}

.item-single2 .item-single-info .nav {
    border: none;
    border-bottom: 1px solid var(--border-info-color);
    padding: 0 0 15px;
    border-radius: 0
}

@media all and (max-width:1199px) {
    .item-single-content {
        margin-top: 25px
    }
}

@media all and (max-width:767px) {
    .item-single-img .thumnail-owl-dots li {
        padding: 3px
    }
    .item-single .content-bottom .bid-countdown {
        border-left: 0;
        padding-left: 0
    }
}

.no-result {
    position: relative
}

.no-result-wrap {
    text-align: center
}

.no-result-img img {
    width: 60%
}

.no-result-content {
    margin-top: 40px
}

.no-result-info h1 {
    font-size: 45px;
    font-weight: 700;
    color: var(--heading-color)
}

.no-result-info p {
    font-size: 20px;
    margin-top: 10px
}

.no-result-form {
    margin-top: 30px
}

.no-result-form .form-group {
    position: relative
}

.no-result-form .form-group .form-control {
    padding: 18px 55px 18px 20px;
    border-radius: 15px;
    background: 0 0;
    color: var(--body-text-color);
    border: 2px solid var(--border-info-color);
    box-shadow: none
}

.no-result-form .form-group .form-control::placeholder {
    color: var(--body-text-color)
}

.no-result-form .form-group .form-control:focus {
    border-color: var(--theme-color)
}

.no-result-form .form-group button {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: 0 0;
    color: var(--body-text-color);
    font-size: 20px
}

.top-seller-item {
    border: 1px solid var(--theme-bg2);
    border-radius: 50px;
    position: relative;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow)
}

.top-seller-count {
    position: absolute;
    left: 50%;
    top: 50%;
    color: var(--body-text-color);
    font-weight: 900;
    font-size: 80px;
    transform: translate(-50%, -50%);
    opacity: .1
}

.top-seller-img {
    position: relative;
    width: 60px
}

.top-seller-img img {
    border-radius: 50%
}

.top-seller-badge {
    position: absolute;
    right: 0;
    bottom: 6px;
    width: 23px;
    height: 23px
}

.top-seller-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1
}

.top-seller-content h5 a {
    color: var(--heading-color)
}

.top-seller-content h5 a:hover {
    color: var(--theme-color)
}

.top-seller-content span {
    color: var(--theme-color);
    font-weight: 500;
    font-size: 14px
}

.top-seller-product {
    display: flex;
    align-items: center
}

.top-seller-product a {
    margin-left: -21px
}

.top-seller-product a span {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 50%;
    font-weight: 600;
    color: var(--color-white);
    font-size: 12px;
    background: var(--theme-color);
    border: 3px solid var(--color-white);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.top-seller-product img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 3px solid var(--color-white);
    position: relative
}

.top-seller-product a span:hover,
.top-seller-product a:hover img {
    border-color: var(--theme-color);
    z-index: 1
}

.top-seller.ts2 .top-seller-item {
    background: var(--theme-bg);
    border-radius: 15px;
    border-color: transparent;
    transition: var(--transition)
}

.top-seller.ts2 .top-seller-count {
    left: 80% !important;
    color: var(--theme-color)
}

.top-seller.ts2 .top-seller-item:hover {
    border-color: var(--theme-color);
    transform: translateY(-3px)
}

.top-seller-slider.owl-carousel .top-seller-item {
    padding: 7px 8px;
    box-shadow: none
}

.top-seller-slider.owl-carousel .owl-item img {
    display: unset
}

.top-seller-slider.owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    top: -66px
}

.top-seller-slider.owl-carousel .owl-nav button {
    width: 38px;
    height: 38px;
    line-height: 39px;
    background: var(--theme-color) !important;
    color: var(--color-white) !important;
    font-size: 20px !important;
    border-radius: 50px;
    transition: var(--transition)
}

.top-seller-slider.owl-carousel .owl-nav button:hover {
    background: var(--color-danger) !important
}

.top-seller-slider.owl-carousel .owl-nav button.owl-prev {
    margin-right: 8px
}

.explore-area {
    position: relative
}

.explore-sidebar {
    background: var(--theme-bg);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px
}

.explore-sidebar .explore-widget {
    margin-bottom: 25px
}

.explore-sidebar .widget-title {
    position: relative;
    font-size: 18px;
    color: var(--heading-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-info-color)
}

.explore-sidebar .category-list li {
    margin: 8px 0
}

.explore-sidebar .category-list a {
    color: var(--body-text-color)
}

.explore-sidebar .category-list a:hover {
    color: var(--theme-color)
}

.explore-sidebar .category-list a i {
    color: var(--theme-color);
    margin-right: 10px
}

.explore-sidebar .checkbox-list li {
    margin: 8px 0
}

.explore-sidebar .checkbox-list .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0
}

.explore-sidebar .checkbox-list .form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    margin: 0;
    padding: 0;
    background-color: var(--theme-bg2);
    border-width: 2px;
    border-color: var(--border-info-color);
    box-shadow: none
}

.explore-sidebar .checkbox-list .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

.explore-sidebar .checkbox-list label {
    color: var(--body-text-color)
}

.explore-search-form .form-group {
    position: relative
}

.explore-search-form .form-control {
    background: var(--theme-bg2);
    color: var(--theme-color-light);
    padding: 10px 45px 10px 15px;
    border-radius: 10px;
    border-color: var(--border-info-color);
    box-shadow: none
}

.explore-search-form .form-control:focus {
    border-color: var(--theme-color)
}

.explore-search-form .form-control::placeholder {
    color: var(--theme-color-light)
}

.explore-search-form button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 4px 15px 6px;
    background: 0 0;
    border: none;
    font-size: 20px;
    color: var(--theme-color)
}

.explore-sort {
    background: var(--theme-bg);
    padding: 8px 8px 8px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow)
}

.explore-sort-label {
    white-space: nowrap
}

.explore-sort-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px
}

.explore-filter {
    background: var(--theme-bg);
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow)
}

.explore-filter .explore-filter-label {
    display: block;
    margin-bottom: 5px
}

.explore-filter .explore-filter-item .theme-btn {
    width: 100%
}

.explore-category a {
    color: var(--heading-color);
    background: var(--theme-bg);
    border: 1px solid var(--theme-bg2);
    padding: 1px 12px 2px;
    border-radius: 50px;
    margin: 2px;
    box-shadow: var(--box-shadow)
}

.explore-category a.active,
.explore-category a:hover {
    background: var(--theme-color);
    color: var(--color-white)
}

.explore-category a i {
    margin-right: 5px;
    color: var(--theme-color)
}

.explore-category a.active i,
.explore-category a:hover i {
    color: var(--color-white)
}

.explore-category-sort .btn {
    color: var(--heading-color);
    background: var(--theme-bg);
    border: 1px solid var(--border-info-color);
    padding: 5px 14px;
    border-radius: 50px;
    margin: 2px;
    box-shadow: var(--box-shadow)
}

.explore-category-sort .btn i {
    margin-right: 5px
}

.explore-category-sort .dropdown-menu {
    background: var(--theme-bg);
    border-radius: 15px;
    padding: 10px;
    border-color: var(--theme-bg2)
}

.explore-category-sort .dropdown-item {
    color: var(--heading-color);
    border-radius: 12px
}

.explore-category-sort .dropdown-item:hover {
    color: var(--theme-color);
    background: rgba(0, 163, 255, .1)
}

.explore-category-sort .dropdown-item i {
    width: 25px
}

.explore-btn {
    text-align: center;
    margin-top: 20px
}

.explore-btn .theme-btn {
    border-radius: 50px;
    padding: 6px 18px
}

.explore-category.filter-control li {
    display: inline-block
}

.explore-category.filter-control li a {
    border: 1px solid var(--border-info-color);
    box-shadow: none
}

.explore-category.filter-control li.active a {
    background: var(--theme-color);
    color: var(--color-white)
}

.explore-category.filter-control li.active a i {
    color: var(--color-white)
}

.explore-slider.owl-carousel .item {
    box-shadow: none
}

.explore-slider.owl-carousel .owl-item img {
    display: unset
}

.explore-slider.owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    top: -66px
}

.explore-slider.owl-carousel .owl-nav button {
    width: 38px;
    height: 38px;
    background: var(--theme-color) !important;
    color: var(--color-white) !important;
    font-size: 20px !important;
    border-radius: 50px;
    transition: var(--transition)
}

.explore-slider.owl-carousel .owl-nav button:hover {
    background: var(--color-danger) !important
}

.explore-slider.owl-carousel .owl-nav button.owl-prev {
    margin-right: 8px
}

@media all and (max-width:1199px) {
    .explore-area .site-heading-inline {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 15px
    }
    .explore-category {
        margin-top: 20px
    }
    .explore-category a {
        margin-bottom: 10px
    }
}

@media all and (max-width:1199px) {
    .explore-filter .explore-filter-item .theme-btn,
    .explore-filter .explore-filter-item .nice-select {
        margin-bottom: 20px
    }
}

@media all and (max-width:767px) {
    .explore-sort-show {
        margin-bottom: 12px
    }
}

.price-range-box {
    margin-bottom: 12px
}

.price-range.ui-widget-content {
    border: none;
    background: var(--border-info-color);
    height: 5px;
    border-radius: 3px
}

.price-range .ui-state-default,
.price-range .ui-widget-content .ui-state-default {
    top: -7px;
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 0;
    background: var(--theme-color);
    z-index: 1
}

.price-range .ui-state-focus {
    outline: none
}

.price-range .ui-widget-header {
    background: var(--theme-color);
    border-radius: 0 !important
}

.price-range-input input {
    border: none;
    margin-bottom: 20px;
    color: var(--theme-color);
    background: 0 0;
    font-weight: 700;
    outline: none
}

.collection {
    position: relative
}

.collection-item {
    background: var(--theme-bg);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow);
    position: relative
}

.collection-author-item {
    position: absolute;
    background: var(--theme-color);
    color: var(--color-white);
    left: 10px;
    bottom: 50px;
    padding: 0 10px;
    border-radius: 0 10px 10px 10px;
    font-weight: 500;
    box-shadow: var(--box-shadow)
}

.collection-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}

.collection-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px
}

.collection-author .author-img {
    position: relative
}

.collection-author .author-img img {
    width: 60px;
    border-radius: 50%
}

.collection-author .author-img .author-badge {
    position: absolute;
    right: 2px;
    bottom: 6px;
    width: 18px;
    height: 18px
}

.collection-author .collection-title a {
    color: var(--heading-color)
}

.collection-author .collection-title a:hover {
    color: var(--theme-color)
}

.collection-author .author-info span {
    color: var(--theme-color-light)
}

.collection-author .author-info a {
    color: var(--theme-color);
    font-weight: 500
}

.collection-like {
    color: var(--heading-color);
    font-weight: 500;
    letter-spacing: 1px
}

.collection-like:hover {
    color: var(--theme-color)
}

.collection-like i {
    margin-right: 5px;
    color: var(--theme-color)
}

.collection-like:hover i {
    font-weight: 700
}

.collection-thumb a {
    width: 100%
}

.collection-thumb img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover
}

.collection-thumb .thumb-left img {
    height: 273px
}

.collection-thumb .thumb-right .top img {
    height: 95px
}

.collection-thumb .thumb-right .bottom img {
    height: 170px
}

.collection2 .collection-item {
    background: 0 0;
    border: 1px solid var(--border-info-color);
    box-shadow: none
}

.collection-slider.owl-carousel .item {
    box-shadow: none
}

.collection-slider.owl-carousel .owl-item img {
    display: unset
}

.collection-slider.owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    top: -70px
}

.collection-slider.owl-carousel .owl-nav button {
    width: 38px;
    height: 38px;
    background: var(--theme-color);
    color: var(--color-white);
    font-size: 20px;
    border-radius: 50px;
    transition: var(--transition)
}

.collection-slider.owl-carousel .owl-nav button:hover {
    background: var(--color-danger)
}

.collection-slider.owl-carousel .owl-nav button.owl-prev {
    margin-right: 8px
}

@media all and (max-width:991px) {
    .collection-item {
        padding: 15px
    }
    .collection-author .author-img img {
        width: 50px
    }
    .collection-author .collection-title a {
        font-size: 19px
    }
    .collection-author .author-info {
        font-size: 14px
    }
    .collection-thumb .thumb-left img {
        height: 218px
    }
    .collection-thumb .thumb-right .top img {
        height: 75px
    }
    .collection-thumb .thumb-right .bottom img {
        height: 135px
    }
}

.process-area {
    position: relative
}

.process-item {
    position: relative;
    background: var(--theme-bg);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow)
}

.process-item span {
    position: absolute;
    top: 0;
    right: 20px;
    font-weight: 600;
    font-size: 40px;
    color: var(--color-white);
    -webkit-text-stroke: 2px var(--theme-color);
    -webkit-text-fill-color: transparent
}

.process-icon {
    height: 70px;
    width: 70px;
    line-height: 70px;
    background: var(--theme-color);
    border-radius: 25px;
    margin-bottom: 25px;
    font-size: 30px;
    text-align: center;
    color: var(--color-white);
    box-shadow: var(--box-shadow);
    transition: var(--transition)
}

.process-item:hover .process-icon {
    transform: rotateY(-360deg)
}

.process-content h4 {
    color: var(--heading-color);
    font-size: 23px;
    margin-bottom: 10px
}

.process-content p {
    color: var(--theme-color-light)
}

.forum-area {
    position: relative
}

.forum-wrap .nav {
    gap: 15px
}

.forum-wrap .nav .nav-link {
    background: var(--theme-bg);
    color: var(--body-text-color);
    font-weight: 500;
    padding: 4px 18px;
    border-radius: 50px;
    box-shadow: var(--box-shadow)
}

.forum-wrap .nav .nav-link.active {
    background: var(--theme-color);
    color: var(--color-white)
}

.forum-search {
    text-align: center
}

.forum-search h3 {
    color: var(--heading-color);
    margin-bottom: 5px
}

.forum-search-form {
    margin-top: 20px
}

.forum-search-form .form-group {
    position: relative
}

.forum-search-form .form-control {
    color: var(--theme-color-light);
    background: var(--theme-bg-light);
    padding: 15px 50px 15px 20px;
    border-radius: 12px;
    border: none;
    box-shadow: none
}

.forum-search-form .form-control:focus {
    border-color: var(--theme-color)
}

.forum-search-form .form-control::placeholder {
    color: var(--theme-color-light)
}

.forum-search-form .form-group button {
    position: absolute;
    top: 4.5px;
    right: 0;
    padding: 0 14px;
    background: 0 0;
    border: none;
    font-size: 24px;
    color: var(--theme-color)
}

.forum-item {
    background: var(--theme-bg);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    padding: 20px;
    margin-bottom: 25px
}

.forum-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-info-color)
}

.forum-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.forum-author .author-img img {
    width: 60px;
    border-radius: 50px
}

.forum-author .author-info h4 {
    margin-bottom: 5px
}

.forum-author .author-info a {
    color: var(--heading-color);
    font-size: 22px
}

.forum-author .author-info a:hover {
    color: var(--theme-color)
}

.forum-author .author-info span i {
    color: var(--theme-color)
}

.forum-author .author-info span:last-child {
    margin-left: 10px
}

.forum-member {
    display: flex;
    align-items: center
}

.forum-member a {
    margin-left: -21px
}

.forum-member a span {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 50%;
    font-weight: 600;
    color: var(--color-white);
    font-size: 12px;
    background: var(--theme-color);
    border: 3px solid var(--color-white);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.forum-member img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 3px solid var(--color-white);
    position: relative
}

.forum-member a span:hover,
.forum-member a:hover img {
    border-color: var(--theme-color);
    z-index: 1
}

.forum-content {
    display: flex;
    gap: 10px
}

.forum-content .forum-number {
    position: relative;
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 600;
    padding: 30px 20px
}

.forum-content .forum-number::before {
    content: "\f106";
    position: absolute;
    top: 2px;
    left: 50%;
    font-family: "font awesome 6 pro";
    font-size: 22px;
    color: var(--color-success);
    transform: translateX(-50%)
}

.forum-content .forum-number::after {
    content: "\f107";
    position: absolute;
    top: 50px;
    left: 50%;
    font-family: "font awesome 6 pro";
    font-size: 22px;
    color: var(--color-danger);
    transform: translateX(-50%)
}

.forum-content .forum-info h3 {
    margin-bottom: 15px
}

.forum-content .forum-info h3 a {
    color: var(--heading-color)
}

.forum-content .forum-info h3 a:hover {
    color: var(--theme-color)
}

.forum-content .forum-info .forum-img {
    margin: 25px 0 20px
}

.forum-content .forum-info .forum-img img {
    border-radius: 15px
}

.forum-content .forum-info .forum-tag {
    background: var(--theme-bg-light);
    width: fit-content;
    padding: 2px 10px;
    border-radius: 8px;
    margin-top: 15px
}

.forum-content .forum-info .forum-tag a {
    color: var(--theme-color);
    margin: 2px 3px
}

.forum-content .forum-info .forum-tag a:hover {
    color: var(--color-danger)
}

.forum-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: 20px;
    border-top: 1px solid var(--border-info-color)
}

.forum-bottom .forum-reaction a {
    color: var(--body-text-color);
    margin-right: 10px
}

.forum-bottom .forum-reaction a:hover {
    color: var(--theme-color)
}

.forum-bottom .theme-btn {
    padding: 5px 15px;
    border-radius: 50px
}

@media all and (max-width:767px) {
    .forum-top,
    .forum-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px
    }
    .forum-member {
        margin-left: 18px
    }
}

.forum-single {
    position: relative
}

.forum-single .forum-item.active {
    border: 2px solid var(--theme-color)
}

.forum-single .forum-item .forum-answer .author-img img {
    border: 4px solid var(--theme-color)
}

.forum-single .forum-answer {
    display: flex;
    align-items: center;
    gap: 10px
}

.forum-single .forum-answer-form {
    flex: 1
}

.forum-single .forum-answer-form .form-group {
    position: relative
}

.forum-single .forum-answer-form .form-control {
    padding: 16px 135px 16px 25px;
    border-radius: 50px;
    color: var(--theme-color-light);
    background: var(--theme-bg-light);
    border: none;
    box-shadow: none
}

.forum-single .forum-answer-form .form-control::placeholder {
    color: var(--theme-color-light)
}

.forum-single .forum-answer-form .theme-btn {
    position: absolute;
    right: 8px;
    top: 7px;
    padding: 6px 15px;
    border-radius: 50px
}

.forum-single .forum-answer-wrap {
    background: var(--theme-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow)
}

.forum-single .forum-answer-title {
    color: var(--heading-color)
}

.forum-single .forum-answer-wrap .forum-item {
    border: 1px solid var(--border-info-color);
    box-shadow: none
}

.forum-single .forum-answer-wrap .forum-top {
    display: block;
    border-bottom: none;
    padding: 0
}

.forum-single .forum-answer-wrap .author-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex: 1
}

.forum-single .forum-answer-wrap .author-info .forum-time {
    margin-left: 0
}

.forum-single .forum-answer-wrap .forum-reaction .like i {
    color: var(--theme-color)
}

.forum-single .forum-answer-wrap .forum-reaction .dislike i {
    color: var(--color-danger)
}

@media all and (max-width:767px) {
    .forum-single .forum-answer {
        flex-direction: column;
        gap: 20px
    }
}

.token-area {
    position: relative
}

.token-item {
    padding: 25px;
    position: relative;
    background: var(--theme-bg);
    margin-bottom: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow)
}

.token-item .count {
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 50px;
    font-weight: 700;
    -webkit-text-stroke: 2px var(--theme-color);
    -webkit-text-fill-color: transparent
}

.token-icon {
    position: relative;
    width: 85px;
    height: 85px;
    line-height: 87px;
    border-radius: 50%;
    text-align: center;
    color: var(--color-white);
    font-size: 40px;
    background: var(--theme-color);
    margin: 0 auto 18px;
    transition: var(--transition)
}

.token-item:hover .token-icon {
    transform: rotateY(360deg)
}

.token-item h4 {
    font-size: 23px;
    color: var(--heading-color);
    margin-bottom: 15px
}

@media all and (max-width:1199px) {
    .token-area {
        margin-top: -20px
    }
}

.help-area {
    position: relative
}

.help-search {
    text-align: center;
    margin-bottom: 60px
}

.help-search h3 {
    color: var(--heading-color);
    margin-bottom: 5px
}

.help-search-form {
    margin-top: 20px
}

.help-search-form .form-group {
    position: relative
}

.help-search-form .form-control {
    color: var(--theme-color-light);
    background: var(--theme-bg-light);
    padding: 15px 50px 15px 20px;
    border-radius: 12px;
    border: none;
    box-shadow: none
}

.help-search-form .form-control:focus {
    border-color: var(--theme-color)
}

.help-search-form .form-control::placeholder {
    color: var(--theme-color-light)
}

.help-search-form .form-group button {
    position: absolute;
    top: 4.5px;
    right: 0;
    padding: 0 14px;
    background: 0 0;
    border: none;
    font-size: 24px;
    color: var(--theme-color)
}

.help-search-keyword {
    text-align: left;
    margin-top: 5px
}

.help-search-keyword span {
    color: var(--heading-color)
}

.help-search-keyword a {
    color: var(--body-text-color)
}

.help-search-keyword a:hover {
    color: var(--theme-color)
}

.help-item {
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid var(--border-info-color);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition)
}

.help-item:hover {
    border-color: var(--theme-color)
}

.help-icon i {
    font-size: 45px;
    font-weight: 300;
    color: var(--theme-color)
}

.help-content h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 23px;
    color: var(--heading-color)
}

.help-item .theme-btn {
    border-radius: 50px;
    padding: 6px 20px;
    margin-top: 25px
}

.help-bottom {
    text-align: center;
    margin-top: 30px
}

.help-bottom h4 {
    color: var(--heading-color)
}

.help-bottom .theme-btn {
    border-radius: 50px
}

.help-bottom p {
    margin-top: 5px;
    margin-bottom: 20px
}

.activity-area {
    position: relative
}

.activity-header {
    margin-bottom: 25px
}

.activity-item {
    display: flex;
    gap: 18px;
    background: var(--theme-bg);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow)
}

.activity-item:hover {
    outline: 2px solid var(--theme-color)
}

.activity-img {
    width: 100px
}

.activity-img img {
    border-radius: 15px
}

.activity-content {
    flex: 1
}

.activity-content h4 a {
    color: var(--heading-color)
}

.activity-content h4 a:hover {
    color: var(--theme-color)
}

.activity-text a {
    color: var(--theme-color)
}

.activity-text a:hover {
    color: var(--color-danger)
}

.activity-text strong {
    color: var(--color-danger)
}

.activity-time {
    display: block;
    margin-top: 10px
}

.activity-time i {
    color: var(--theme-color);
    margin-right: 5px
}

.activity-icon {
    align-self: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50px;
    color: var(--color-white);
    text-align: center;
    font-size: 24px;
    box-shadow: var(--box-shadow)
}

.activity-filter .filter-header {
    display: flex;
    justify-content: space-between
}

.activity-filter .filter-list li {
    margin-bottom: 15px
}

.activity-filter .filter-list .form-check {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0
}

.activity-filter .filter-list .form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    margin: 0;
    padding: 0;
    background-color: var(--theme-bg2);
    border-width: 2px;
    border-color: var(--border-info-color);
    box-shadow: none
}

.activity-filter .filter-list .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

.activity-filter .filter-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--body-text-color)
}

.activity-filter .filter-list label span {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: var(--theme-bg-light);
    color: var(--theme-color);
    border-radius: 50px;
    text-align: center;
    transition: var(--transition)
}

.activity-filter .filter-list .form-check:hover label span {
    background: var(--theme-color);
    color: var(--color-white)
}

.activity-filter .filter-tag a {
    padding: 3px 16px;
    border-radius: 50px;
    color: var(--body-text-color);
    font-weight: 500;
    border: 1px solid var(--body-text-color);
    margin: 0 5px 10px 0
}

.activity-filter .filter-tag a:hover {
    background: var(--theme-color);
    color: var(--color-white);
    border-color: var(--theme-color)
}

.activity-area2 .activity-item {
    align-items: center
}

.activity-area2 .activity-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover
}

.activity-area2 .activity-time {
    margin-top: 2px
}

.activity-area2 .activity-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px
}

@media all and (max-width:767px) {
    .activity-header .theme-btn {
        margin-top: 15px
    }
    .activity-area2 .activity-item,
    .activity-item {
        align-items: flex-start;
        flex-direction: column
    }
    .activity-icon {
        align-self: self-start
    }
}

.author-area {
    position: relative
}

.author-sort {
    background: var(--theme-bg);
    padding: 15px;
    margin-bottom: 35px;
    border-radius: 15px;
    box-shadow: var(--box-shadow)
}

.author-search-form .form-group {
    position: relative
}

.author-search-form .form-control {
    padding: 12px 50px 12px 15px;
    border-radius: 10px;
    background: var(--theme-bg2);
    color: var(--theme-color-light);
    border-color: var(--border-info-color);
    box-shadow: none
}

.author-search-form .form-control::placeholder {
    color: var(--theme-color-light)
}

.author-search-form button {
    position: absolute;
    top: 0;
    right: 0;
    background: 0 0;
    color: var(--theme-color);
    font-size: 20px;
    padding: 6px 15px 4px;
    border: none
}

.author-wrap .author-item {
    text-align: center;
    padding: 15px 15px 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow);
    background: var(--theme-bg)
}

.author-wrap .author-item .author-cover img {
    width: 100%;
    height: 160px;
    border-radius: 15px;
    object-fit: cover
}

.author-wrap .author-item .author-img {
    width: 100px;
    margin: auto;
    margin-top: -40px;
    position: relative
}

.author-wrap .author-item .author-img img {
    border-radius: 50px;
    border: 5px solid var(--theme-bg)
}

.author-wrap .author-item .author-badge {
    position: absolute;
    width: 25px;
    right: 6px;
    bottom: 6px
}

.author-wrap .author-item .author-badge img {
    border: none
}

.author-wrap .author-item .author-name {
    margin-top: 5px;
    margin-bottom: 2px
}

.author-wrap .author-item .author-name .name {
    margin-bottom: 2px
}

.author-wrap .author-item .author-name .name a {
    color: var(--heading-color);
    font-size: 20px
}

.author-wrap .author-item .author-name .name a:hover {
    color: var(--theme-color)
}

.author-wrap .author-item .author-name .username a {
    color: var(--theme-color)
}

.author-wrap .author-item .author-meta {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-info-color)
}

.author-wrap .author-item .author-meta span {
    color: var(--body-text-color)
}

.author-wrap .author-item .author-meta h6 {
    color: var(--theme-color)
}

.author-wrap .author-item .author-btn .theme-btn {
    padding: 8px 25px
}

@media all and (max-width:767px) {
    .author-sort-box {
        margin-top: 15px
    }
}

.author-single {
    position: relative
}

.author-single-cover img {
    width: 100%;
    height: 300px;
    object-fit: cover
}

.author-sidebar {
    background: var(--theme-bg);
    padding: 0 25px 25px;
    box-shadow: var(--box-shadow);
    margin-top: -80px;
    border-radius: 15px
}

.author-sidebar-img {
    width: 120px;
    margin: auto;
    position: relative
}

.author-sidebar-img img {
    border-radius: 50%;
    border: 7px solid var(--theme-bg);
    margin-top: -35px
}

.author-sidebar-img .author-badge {
    position: absolute;
    right: 5px;
    bottom: -4px;
    width: 25px
}

.author-sidebar-img .author-badge img {
    border: none
}

.author-sidebar-name {
    margin-top: 5px;
    text-align: center
}

.author-sidebar-name .name {
    margin-bottom: 4px
}

.author-sidebar-name .name a {
    color: var(--heading-color);
    font-size: 20px
}

.author-sidebar-name .name a:hover {
    color: var(--theme-color)
}

.author-sidebar-name .username a {
    color: var(--theme-color)
}

.author-sidebar-name .meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 12px
}

.author-sidebar-name .meta b {
    color: var(--theme-color)
}

.author-sidebar-wallet {
    display: flex;
    justify-content: space-between;
    background: var(--theme-bg-light);
    color: var(--heading-color);
    padding: 6px 12px;
    border-radius: 10px;
    margin-top: 12px
}

.author-sidebar-wallet.copy-box {
    position: relative
}

.author-sidebar-wallet .copy-text {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.author-sidebar-wallet .copy-btn {
    color: var(--heading-color);
    padding: 0;
    margin-left: 8px;
    border: none;
    background: 0 0
}

.author-sidebar-wallet .copy-notify {
    position: absolute;
    left: 8px;
    top: 7px;
    background: var(--theme-color);
    color: var(--color-white);
    border-radius: 8px;
    font-weight: 500;
    line-height: 1;
    padding: 5px 10px;
    margin-top: 1px;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition)
}

.author-sidebar-wallet .copy-notify.active {
    transform: scale(1);
    opacity: 1
}

.author-sidebar-about {
    margin-top: 10px
}

.author-sidebar-link {
    margin-top: 20px
}

.author-sidebar-link li {
    margin: 5px 0;
    color: var(--body-text-color)
}

.author-sidebar-link li i {
    color: var(--theme-color);
    width: 22px
}

.author-sidebar-link li a {
    color: var(--body-text-color)
}

.author-sidebar-link li a:hover {
    color: var(--theme-color)
}

.author-sidebar-social {
    margin-top: 20px
}

.author-sidebar-social a {
    width: 35px;
    height: 35px;
    line-height: 36px;
    background: var(--theme-color);
    color: var(--color-white);
    text-align: center;
    border-radius: 50px;
    margin-right: 5px
}

.author-sidebar-social a:hover {
    color: var(--color-white);
    background: var(--color-danger)
}

.author-sidebar-info {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    border-top: 1px solid var(--border-info-color);
    padding-top: 10px
}

.author-sidebar-info .info-item h6 {
    color: var(--theme-color)
}

.author-sidebar-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-info-color)
}

.author-sidebar-btn .theme-btn {
    padding: 8px 15px
}

.author-single-content .nav {
    gap: 30px;
    background: var(--theme-bg);
    border-radius: 12px;
    padding: 0 25px;
    margin-top: 20px;
    box-shadow: var(--box-shadow)
}

.author-single-content .nav .nav-link {
    color: var(--body-text-color);
    font-weight: 500;
    padding: 18px 0
}

.author-single-content .nav .nav-link:hover {
    border-bottom-color: var(--body-text-color)
}

.author-single-content .nav .nav-link.active {
    color: var(--theme-color);
    border-bottom-color: var(--theme-color)
}

.author-single-content .nav .nav-link i {
    margin-right: 8px
}

@media all and (min-width:992px) and (max-width:1199px) {
    .author-sidebar-btn {
        flex-wrap: wrap;
        gap: 15px
    }
}

@media all and (max-width:767px) {
    .author-single-content .nav {
        gap: 15px;
        padding: 20px
    }
    .author-single-content .nav .nav-link {
        padding: 0
    }
}

.wallet-connect {
    position: relative
}

.wallet-item {
    background: var(--theme-bg);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition)
}

.wallet-item:hover {
    transform: translateY(-5px)
}

.wallet-img {
    margin-bottom: 15px
}

.wallet-img img {
    width: 60px
}

.wallet-content h4 a {
    font-size: 23px;
    color: var(--heading-color)
}

.wallet-content h4 a:hover {
    color: var(--theme-color)
}

.wallet-content p {
    margin-top: 10px
}

.wallet-content .theme-btn {
    padding: 5px 20px;
    border-radius: 50px;
    margin-top: 15px
}

.wallet-connect.wc2 .wallet-item {
    width: 100%;
    padding: 25px 20px;
    background: 0 0;
    border: 1px solid var(--border-info-color)
}

.wallet-connect.wc2 .wallet-img {
    margin-bottom: 0
}

.upload-type {
    position: relative
}

.upload-type-item {
    background: var(--theme-bg);
    text-align: center;
    border-radius: 20px;
    padding: 20px 24px 28px;
    border: 2px solid transparent;
    box-shadow: var(--box-shadow);
    transition: var(--transition)
}

.upload-type-item.active,
.upload-type-item:hover {
    border-color: var(--theme-color)
}

.upload-type-img {
    margin-bottom: 8px
}

.upload-type-img img {
    width: 150px
}

.upload-type-content h4 {
    color: var(--heading-color)
}

.upload-type-content p {
    margin-top: 8px;
    margin-bottom: 15px
}

.upload-type-content .theme-btn {
    padding: 9px 25px;
    border-radius: 50px
}

.ranking-area {
    position: relative
}

.ranking-area .table-responsive {
    background: var(--theme-bg2);
    padding: 10px 25px;
    border-radius: 15px;
    box-shadow: var(--box-shadow)
}

.ranking-area .table {
    border-collapse: separate;
    border-spacing: 0 1em;
    margin-bottom: 0;
    white-space: nowrap
}

.ranking-area .table .text-green {
    color: var(--color-success)
}

.ranking-area .table .text-red {
    color: var(--color-danger)
}

.ranking-area .table tr td:first-child,
.ranking-area .table tr th:first-child {
    border-radius: 10px 0 0 10px
}

.ranking-area .table tr td:last-child,
.ranking-area .table tr th:last-child {
    border-radius: 0 10px 10px 0
}

.ranking-area .table tr th {
    background: var(--theme-color);
    color: var(--color-white);
    padding: 10px 10px 10px 25px
}

.ranking-area .table tr td {
    background: var(--footer-bg);
    color: var(--heading-color);
    font-weight: 500;
    padding: 10px 10px 10px 25px;
    vertical-align: middle
}

.ranking-area .table .product {
    display: flex;
    align-items: center;
    gap: 10px
}

.ranking-area .table .product img {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    object-fit: cover
}

.ranking-area .table .product h5 a {
    color: var(--heading-color)
}

.ranking-area .table .product h5 a:hover {
    color: var(--theme-color)
}

@media all and (max-width:1199px) {
    .ranking-area .site-heading-inline {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 15px
    }
}

@media all and (max-width:767px) {
    .ranking-area .product {
        min-width: 180px
    }
}

.upcoming-project {
    position: relative
}

.upcoming-project-wrap .title {
    margin-bottom: 30px;
    color: var(--heading-color)
}

.upcoming-project-wrap .title i {
    color: var(--theme-color);
    margin-right: 8px
}

.upcoming-project .table-responsive {
    background: var(--theme-bg2);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--box-shadow)
}

.upcoming-project .table {
    margin-bottom: 0;
    white-space: nowrap
}

.upcoming-project .table>:not(caption)>*>* {
    background: var(--theme-bg2)
}

.upcoming-project .table>tbody>tr:nth-of-type(odd)>* {
    background: var(--footer-bg)
}

.upcoming-project .table thead th {
    padding: 5px 25px 20px;
    color: var(--heading-color);
    font-size: 17px
}

.upcoming-project .table tbody td {
    padding: 20px 25px;
    font-weight: 500
}

.upcoming-project .table tbody td:first-child {
    border-radius: 10px 0 0 10px
}

.upcoming-project .table tbody td:last-child {
    border-radius: 0 10px 10px 0
}

.upcoming-project .table thead th i {
    color: var(--theme-color);
    margin-right: 5px
}

.upcoming-project .table td .title {
    color: var(--heading-color)
}

.upcoming-project .table td .time {
    color: var(--color-success)
}

.upcoming-project .table td .count {
    color: var(--color-danger)
}

.upcoming-project .table td .price {
    color: var(--color-primary)
}

.upcoming-project .table td .extra {
    color: var(--theme-color-light)
}

.choose-area {
    position: relative;
    background: var(--footer-bg)
}

.choose-item {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 25px;
    margin-top: 25px;
    border-bottom: 1px solid var(--border-info-color);
    z-index: 1
}

.choose-item:last-child {
    border-bottom: none
}

.choose-item-content {
    flex: 1
}

.choose-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--theme-color);
    color: var(--color-white);
    font-size: 40px;
    border-radius: 50px;
    margin-top: 5px;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    box-shadow: var(--box-shadow)
}

.choose-icon::before {
    content: "";
    position: absolute;
    border: 2px solid var(--theme-color);
    border-radius: 50px;
    left: -8px;
    right: -8px;
    top: -8px;
    bottom: -8px
}

.choose-item-content h4 {
    margin-bottom: 10px;
    font-size: 22px;
    color: var(--heading-color);
    font-weight: 500
}

.choose-img {
    margin-left: 40px
}

@media all and (max-width:991px) {
    .choose-content {
        margin-bottom: 60px
    }
    .choose-img {
        margin-left: 0
    }
}

.testimonial-area {
    position: relative
}

.testimonial-item {
    position: relative;
    background: var(--theme-bg);
    padding: 25px;
    margin: 6px;
    border-radius: 20px;
    border: 1px solid var(--border-info-color);
    z-index: 1
}

.testimonial-item::before {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: -6px;
    height: 6px;
    background: var(--theme-color);
    border-radius: 0 0 10px 10px
}

.testimonial-item::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    height: 50px;
    width: 50px;
    border-top: 3px solid var(--theme-color);
    border-right: 3px solid var(--theme-color);
    border-top-right-radius: 15px;
    transition: var(--transition)
}

.testimonial-item:hover::after {
    height: 70px;
    width: 70px
}

.testimonial-quote p {
    color: var(--body-text-color)
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-info-color)
}

.testimonial-author .author-info {
    margin: 15px 0 10px
}

.testimonial-author .author-img {
    width: 70px;
    padding: 4px;
    border-radius: 50px;
    border: 3px solid var(--theme-color)
}

.testimonial-author .author-img img {
    border-radius: 50%
}

.testimonial-author .author-info h4 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 2px;
    font-weight: 500
}

.testimonial-author .author-info p {
    color: var(--theme-color);
    font-weight: 500
}

.testimonial-item .quote-icon {
    position: absolute;
    right: 30px;
    bottom: 0;
    color: var(--theme-color);
    font-size: 70px;
    opacity: .1;
    z-index: -1
}

.testimonial-rate {
    color: var(--theme-color);
    margin-bottom: 15px
}

.testimonial-area .owl-dots {
    text-align: center;
    margin-top: 30px
}

.testimonial-area .owl-dots .owl-dot span {
    background: 0 0;
    border: 3px solid var(--theme-color);
    margin: 5px;
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50px;
    transition: var(--transition)
}

.testimonial-area .owl-dots .owl-dot.active span {
    background-color: var(--theme-color)
}

.testimonial-area2 .testimonial-item {
    border: 1px solid var(--border-info-color)
}

.play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    line-height: 75px;
    font-size: 20px;
    text-align: center;
    background: var(--theme-color);
    color: var(--color-white) !important;
    position: absolute;
    border-radius: 50%;
    z-index: 1
}

.play-btn i::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--theme-color);
    border-radius: 50px;
    animation: ripple-wave 1s linear infinite;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .5s ease-in-out
}

@keyframes ripple-wave {
    0% {
        opacity: .8;
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2)
    }
}

.video-content {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 15px
}

.video-content::before {
    content: "";
    position: absolute;
    background: rgba(3, 2, 7, .2);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    height: 550px;
    z-index: 100
}

.video-wrapper img {
    border-radius: 12px
}

.video-area .play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

@media all and (max-width:767px) {
    .video-wrapper {
        height: 250px
    }
}

.counter-area {
    position: relative;
    background-image: url(../img/counter/01.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1
}

.counter-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 18, 36, .7);
    z-index: -1
}

.counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 25px;
    position: relative;
    z-index: 1
}

.counter-box .icon {
    position: relative;
    text-align: center;
    font-size: 45px;
    width: 95px;
    height: 95px;
    line-height: 97px;
    border-radius: 50%;
    color: var(--color-white);
    background: var(--theme-color)
}

.counter-box .icon img {
    width: 60px;
    filter: brightness(0) invert(1)
}

.counter-box .icon::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px dashed var(--color-white);
    transition: var(--transition);
    z-index: -1
}

.counter-box .counter {
    display: block;
    line-height: 1;
    color: var(--color-white);
    font-size: 45px;
    font-weight: 600
}

.counter-box .title {
    color: var(--color-white);
    margin-top: 8px;
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize
}

@media all and (max-width:991px) {
    .counter-area .counter-box {
        margin: 40px 0
    }
}

.cta-area {
    position: relative
}

.cta-wrapper {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 40px;
    border-radius: 20px;
    z-index: 1
}

.cta-content h1 {
    color: var(--color-white);
    text-transform: capitalize;
    font-size: 38px
}

.cta-content p {
    color: var(--color-white);
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 20px
}

.cta-img {
    text-align: center
}

.cta-img img {
    width: 60%
}

@media all and (max-width:1199px) {
    .cta-img {
        text-align: left
    }
    .cta-img img {
        width: 100%
    }
}

@media all and (max-width:991px) {
    .cta-wrapper {
        padding: 80px 40px !important
    }
}

.partner-area {
    position: relative
}

.partner-wrapper img {
    padding: 15px;
    border-radius: 15px;
    border: 1px solid var(--border-info-color)
}

.partner-wrapper img:hover {
    border-color: var(--theme-color)
}

.blog-area {
    position: relative
}

.blog-item {
    background: var(--theme-bg);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow)
}

.blog-item .blog-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden
}

.blog-item .blog-img img {
    border-radius: 15px
}

.blog-item:hover .blog-img img {
    transform: scale(1.1)
}

.blog-item .blog-date {
    position: absolute;
    padding: 2px 10px;
    right: 10px;
    bottom: 10px;
    background: var(--theme-color);
    font-weight: 500;
    color: var(--color-white);
    border-radius: 10px;
    z-index: 2
}

.blog-item .blog-meta {
    margin-bottom: 15px
}

.blog-item .blog-meta ul {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-info-color);
    width: 100%
}

.blog-item .blog-meta ul li {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    font-weight: 500;
    color: var(--body-text-color)
}

.blog-item .blog-meta ul li i {
    margin-right: 5px;
    color: var(--theme-color)
}

.blog-item .blog-meta a {
    color: var(--body-text-color)
}

.blog-item .blog-meta a:hover {
    color: var(--theme-color)
}

.blog-item .blog-title a {
    color: var(--heading-color);
    font-weight: 500
}

.blog-item .blog-title a:hover {
    color: var(--theme-color)
}

.blog-item .theme-btn {
    margin-top: 25px
}

.blog-single {
    position: relative
}

.blog-single-content .blog-thumb-img {
    margin-bottom: 20px
}

.blog-single-content .blog-thumb-img img {
    border-radius: 15px
}

.blog-single-info .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.blog-single-info .blog-meta ul {
    display: flex;
    align-items: center;
    gap: 20px
}

.blog-single-info .blog-meta ul li {
    font-weight: 500
}

.blog-single-info .blog-meta i {
    margin-right: 5px;
    color: var(--theme-color)
}

.blog-single-info .blog-meta a {
    color: var(--body-text-color);
    font-weight: 500
}

.blog-single-info .blog-meta a:hover {
    color: var(--theme-color)
}

.blog-single-info .blog-details-title {
    font-size: 34px;
    color: var(--heading-color)
}

.blog-single-info .blockqoute {
    position: relative;
    background: var(--theme-bg);
    border-left: 5px solid var(--theme-color);
    padding: 30px;
    font-size: 17px;
    font-style: italic;
    margin: 20px 0;
    border-radius: 0;
    box-shadow: var(--box-shadow)
}

.blog-single-info .blockqoute-icon {
    position: absolute;
    right: 120px;
    bottom: 0;
    font-size: 120px;
    color: var(--theme-color);
    line-height: 1;
    opacity: .2
}

.blog-single-info .blockqoute-author {
    margin-top: 20px;
    padding-left: 60px;
    position: relative;
    color: var(--heading-color)
}

.blog-single-info .blockqoute-author::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 40px;
    background: var(--theme-color);
    left: 0;
    top: 10px
}

.blog-single-info .blog-details img {
    border-radius: 15px
}

.blog-single-info .blog-details-tags {
    display: flex;
    align-items: center;
    gap: 20px
}

.blog-single-info .blog-details-tags h5 {
    color: var(--heading-color)
}

.blog-single-info .blog-details-tags ul {
    display: flex;
    align-items: center;
    gap: 15px
}

.blog-single-info .blog-details-tags ul li a {
    background: var(--theme-bg);
    color: var(--body-text-color);
    padding: 5px 15px;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid var(--border-info-color)
}

.blog-single-info .blog-details-tags ul li a:hover {
    background: var(--theme-color);
    color: var(--color-white)
}

.blog-single-info .blog-author {
    display: flex;
    justify-content: start;
    align-items: center;
    background: var(--theme-bg);
    border-left: 5px solid var(--theme-color);
    margin: 50px 0;
    padding: 20px;
    box-shadow: var(--box-shadow)
}

.blog-single-info .blog-author .author-img {
    width: 320px
}

.blog-single-info .blog-author .author-img img {
    border-radius: 50%;
    box-shadow: var(--box-shadow)
}

.blog-single-info .blog-author .author-info h6 {
    color: var(--heading-color)
}

.blog-single-info .blog-author .author-name {
    font-size: 22px;
    color: var(--theme-color);
    font-weight: 500;
    margin: 8px 0
}

.blog-single-info .blog-author .author-info {
    padding: 0 20px
}

.blog-single-info .blog-author .author-social {
    margin-top: 10px
}

.blog-single-info .blog-author .author-social a {
    width: 35px;
    height: 35px;
    line-height: 31.2px;
    text-align: center;
    border: 2px solid var(--theme-color);
    border-radius: 50px;
    margin-right: 5px;
    color: var(--theme-color);
    transition: var(--transition)
}

.blog-single-info .blog-author .author-social a:hover {
    color: var(--color-white);
    background: var(--theme-color)
}

.blog-single-comment {
    margin-top: 60px
}

.blog-single-comment .comment-title {
    color: var(--heading-color)
}

.blog-single-comment .comment-item {
    display: flex;
    gap: 18px;
    background: var(--theme-bg);
    padding: 25px;
    border-radius: 15px;
    margin: 35px 0;
    box-shadow: var(--box-shadow)
}

.blog-single-comment .comment-reply {
    margin-left: 50px
}

.blog-single-comment .comment-img {
    width: 60px;
    height: 60px
}

.blog-single-comment .comment-img img {
    border-radius: 50%
}

.blog-single-comment .comment-content {
    flex: 1
}

.blog-single-comment .comment-author {
    display: flex;
    justify-content: space-between
}

.blog-single-comment .comment-author .author-info h5 {
    color: var(--heading-color);
    margin-bottom: 4px
}

.blog-single-comment .comment-author .author-info span {
    color: var(--theme-color);
    font-size: 16px
}

.blog-single-comment .comment-author .author-info span i {
    margin-right: 5px;
    font-size: 14px
}

.blog-single-comment .comment-author .author-rating {
    color: var(--body-text-color);
    font-weight: 500
}

.blog-single-comment .comment-author .author-rating i {
    color: var(--theme-color);
    margin-right: 5px
}

.blog-single-comment .comment-text {
    padding: 10px 0 18px
}

.blog-single-comment .comment-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-info-color);
    padding-top: 12px
}

.blog-single-comment .comment-action .reply {
    flex: 1
}

.blog-single-comment .comment-action .like a {
    margin-left: 12px
}

.blog-single-comment .comment-action a {
    color: var(--theme-color)
}

.blog-single-comment .comment-action a:hover {
    color: var(--color-danger)
}

.blog-single-comment .comment-action a i {
    margin-right: 5px
}

.blog-single-comment .comment-form {
    padding: 30px;
    margin-top: 50px;
    border-radius: 15px;
    background: var(--theme-bg);
    box-shadow: var(--box-shadow)
}

.blog-single-comment .comment-form h4 {
    color: var(--heading-color);
    font-size: 28px;
    margin-bottom: 25px
}

.blog-single-comment .comment-form .form-group {
    margin-bottom: 20px
}

.blog-single-comment .comment-form .form-control {
    background: var(--theme-bg2);
    padding: 15px 20px;
    border-radius: 12px;
    color: var(--theme-color-light);
    border-color: var(--border-info-color);
    box-shadow: none;
    transition: var(--transition)
}

.blog-single-comment .comment-form .form-control::placeholder {
    color: var(--body-text-color)
}

.blog-single-comment .comment-form .form-control:focus {
    border-color: var(--theme-color)
}

@media all and (max-width:991px) {
    .blog-single-wrapper {
        margin-bottom: 25px
    }
}

@media all and (max-width:767px) {
    .blog-single-info .blog-meta {
        flex-direction: column;
        font-size: 15px
    }
    .blog-single-info .blog-meta ul {
        gap: 10px
    }
    .blog-single-info .blog-details-title {
        font-size: 32px
    }
    .blog-single-info .blog-details-tags {
        flex-direction: column;
        align-items: flex-start
    }
    .blog-single-info .blog-author {
        flex-direction: column;
        text-align: center;
        padding: 25px
    }
    .blog-single-info .blog-author .author-info {
        margin-top: 25px
    }
    .blog-single-comment .comment-item {
        flex-direction: column
    }
    .blog-single-comment .comment-reply {
        margin-left: 25px
    }
}

.sidebar {
    position: relative
}

.sidebar .widget {
    background: var(--theme-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow)
}

.sidebar .widget .widget-title {
    padding-bottom: 15px;
    margin-bottom: 30px;
    position: relative;
    font-size: 22px;
    color: var(--heading-color)
}

.sidebar .widget .widget-title::before {
    position: absolute;
    content: '';
    width: 15px;
    border-bottom: 3px solid var(--theme-color);
    bottom: 0;
    left: 0
}

.sidebar .widget .widget-title::after {
    position: absolute;
    content: '';
    width: 30px;
    border-bottom: 3px solid var(--theme-color);
    bottom: 0;
    left: 22px
}

.sidebar .widget .search-form .form-group {
    position: relative
}

.sidebar .widget .search-form .form-control {
    background: var(--theme-bg2);
    padding: 12px 50px 12px 15px;
    border-radius: 10px;
    color: var(--theme-color-light);
    border-color: var(--border-info-color);
    box-shadow: none
}

.sidebar .widget .search-form .form-control::placeholder {
    color: var(--body-text-color)
}

.sidebar .widget .search-form .form-control:focus {
    border-color: var(--theme-color)
}

.sidebar .widget .search-form .form-group button {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    padding: 8px 18px 6px;
    background: 0 0;
    border: none;
    color: var(--theme-color)
}

.sidebar .widget .category-list a {
    display: block;
    padding: 10px 0;
    color: var(--body-text-color);
    font-weight: 500;
    border-bottom: 1px solid var(--border-info-color);
    transition: var(--transition)
}

.sidebar .widget .category-list a:last-child {
    margin-bottom: 0;
    border-bottom: none
}

.sidebar .widget .category-list a:hover {
    padding-left: 10px;
    color: var(--theme-color)
}

.sidebar .widget .category-list a i {
    margin-right: 5px;
    color: var(--theme-color)
}

.sidebar .widget .category-list a span {
    float: right
}

.sidebar .widget .recent-post-item {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 20px
}

.sidebar .widget .recent-post-img {
    margin-right: 20px
}

.sidebar .widget .recent-post-img img {
    width: 120px;
    border-radius: 10px
}

.sidebar .widget .recent-post-info h6 a {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize
}

.sidebar .widget .recent-post-info h6 a:hover {
    color: var(--theme-color)
}

.sidebar .widget .recent-post-info span {
    font-size: 14px;
    color: var(--theme-color);
    font-weight: 500;
    display: block;
    margin-top: 8px
}

.sidebar .widget .recent-post-info span i {
    margin-right: 5px
}

.sidebar .widget .social-share-link a {
    width: 35px;
    height: 35px;
    line-height: 31.2px;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    text-align: center;
    margin-right: 5px;
    border-radius: 50px;
    transition: var(--transition)
}

.sidebar .widget .social-share-link a:hover {
    background: var(--theme-color);
    color: var(--color-white)
}

.sidebar .widget .tag-list a {
    background: var(--theme-bg2);
    color: var(--body-text-color);
    padding: 5px 15px;
    margin-bottom: 10px;
    margin-right: 10px;
    border-radius: 10px;
    border: 1px solid var(--border-info-color);
    display: inline-block;
    transition: var(--transition)
}

.sidebar .widget .tag-list a:hover {
    background-color: var(--theme-color);
    color: var(--color-white)
}

.contact-area {
    position: relative
}

.contact-content {
    margin-bottom: 80px
}

.contact-content .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
    position: relative;
    margin-bottom: 25px;
    background: var(--theme-bg);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition)
}

.contact-content .contact-info::before {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 4px;
    background: var(--theme-color);
    border-radius: 10px
}

.contact-content .contact-info-icon {
    font-size: 38px;
    color: var(--color-white);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    position: relative;
    border-radius: 50%;
    background: var(--theme-color);
    transition: var(--transition)
}

.contact-content .contact-info:hover .contact-info-icon {
    transform: rotateY(365deg)
}

.contact-content .contact-info h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading-color)
}

.contact-content .contact-info p {
    color: var(--body-text-color);
    font-weight: 500;
    font-size: 18px
}

.contact-form-wrap {
    background: var(--theme-bg);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--box-shadow)
}

.contact-img img {
    width: 100%
}

.contact-form {
    padding: 20px
}

.contact-form .contact-form-header {
    margin-bottom: 30px
}

.contact-form .contact-form-header h2 {
    font-size: 30px;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading-color)
}

.contact-form .contact-form-header p {
    font-size: 18px
}

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

.contact-form .form-control {
    background: var(--theme-bg2);
    padding: 12px 20px;
    border-radius: 12px;
    color: var(--theme-color-light);
    box-shadow: none;
    border-color: var(--border-info-color);
    transition: var(--transition)
}

.contact-form textarea.form-control {
    height:100px;
    resize: none;
}


.contact-form .form-control::placeholder {
    color: var(--body-text-color)
}

.contact-form .form-control:focus {
    border-color: var(--theme-color)
}

.contact-map {
    margin-bottom: -9px
}

.contact-map iframe {
    width: 100%;
    height: 450px
}




.contact-area .contact-form .gform-body .gfield .ginput_container input{ background:var(--theme-bg2); height:50px; border-radius: 12px; color: var(--theme-color-light); box-shadow:none; border-color:var(--border-info-color); transition:var(--transition); }
.contact-area .contact-form .gform-body .gfield .ginput_container select{ background-color:var(--theme-bg2); height:50px; border-radius: 12px; color: var(--theme-color-light); box-shadow:none; border-color:var(--border-info-color); transition:var(--transition); }
.contact-area .contact-form .gform-body .gfield .ginput_container textarea{ background-color:var(--theme-bg2); height:100px; border-radius: 12px; color: var(--theme-color-light); box-shadow:none; border-color:var(--border-info-color); transition:var(--transition); resize:none; min-block-size:inherit; }


.contact-area .contact-form .gform-body .gfield .ginput_container input:focus, 
.contact-area .contact-form .gform-body .gfield .ginput_container select:focus, 
.contact-area .contact-form .gform-body .gfield .ginput_container textarea:focus 
{ border-color: var(--theme-blue); }



.contact-area .contact-form .gform-body .gfield label{ font-size:18px; color: #999; color:var(--heading-color); }
.contact-area .contact-form .gform_footer .gform_button{ position:relative !important; font-size:16px !important; color:var(--color-white) !important; text-transform:capitalize !important; font-weight:500 !important; letter-spacing:1px !important; padding:15px 20px !important; border-radius:10px !important; border:none; background:var(--theme-color) !important; cursor: pointer !important; overflow:hidden !important; vertical-align:middle !important; box-shadow:var(--box-shadow) !important; transition:var(--transition) !important; z-index:1 !important; }


.faq-area, 
.about-area, 
.live-auction, 
.contact-area{ scroll-margin-block: 7em; }



/**
*
* WooCommerce
*
* */
.woocommerce-page{
    font-family: var(--body-font);
    color: var(--heading-color);
}

.theme-mode-variables.woocommerce-page{
    color: #181C32 !important;
}

h2.woocommerce-loop-product__title {
    color: var(--heading-color);
}

.product span.price {
    color: var(--heading-color);
}

.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product {
    padding: 20px;
    background: var(--theme-bg);
    border-radius: 20px;
}

/*.woocommerce ul.products li.product .button {
    display: inline-block;
    margin-top: 1em;
    background-color: #00A3FF;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}*/

.woocommerce ul.products li.product .button{
    background: var(--theme-color);
    color: #fff;
}




.woocommerce a.added_to_cart {
    padding-top: .5em;
    display: inline-block;
    color: var(--heading-color);
    margin-left: 12px;
    font-size: 14px;
    text-transform: capitalize;
    border: 1px solid var(--heading-color);
    padding: 4px 16px;
    border-radius: 50px;
}

.woocommerce span.onsale {
    background-color: #E5262B;
    font-size: .857em;
    font-weight: 400;
    z-index: 9;
    aspect-ratio: 1;
    line-height: 3;
}

.wc-block-cart .wc-block-cart__submit-container .wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained{
    background: #00A3FF;
    color: var(--heading-color);
    border-radius: 10px;
}

input#wc-block-components-totals-coupon__input-0 {
    height: 100%;
    border-radius: 10px;
}

input#wc-block-components-totals-coupon__input-0::placeholder{
    color: #aaa;
    font-size: 14px;
}

button.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained {
    background: #00A3FF;
    color: #fff;
    border-radius: 10px;
    border: none;
}

.wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-components-product-name {
    color: #00A3FF;
    font-size: 26px;
    font-family: inherit;
    font-weight: 600;
}

/* CHECKOUT PAGE*/

.woocommerce-checkout .innerPage .heading{
    padding: 50px 0 0 0;
}

.woocommerce-checkout .innerPage .heading h1{
    color: var(--heading-color);
}

.woocommerce-checkout .wc-block-components-title.wc-block-components-title {
    color: #fff;
}

.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__container {
    background: none !important;
    border: none;
}

.woocommerce-checkout .wc-block-components-address-form label{
    color: var(--theme-color-light) !important;
    font-size: 13px !important;
    color: var(--body-text-color) !important;
}

.woocommerce-checkout .wc-block-components-address-form input,
.woocommerce-checkout .wc-block-components-address-form select{
    background-color: var(--theme-bg) !important;
    border: 1px solid #283F5F !important;
    border-radius: 10px !important;
    color: aliceblue !important;
    font-size: 13px !important;
    color: var(--body-text-color) !important;
}

.woocommerce-checkout .wc-block-components-textarea{
    background-color: var(--theme-bg);!important;
    border: 1px solid #283F5F !important;
    border-radius: 10px !important;
    color: aliceblue !important;
    font-size: 13px !important;  
    height: 80px;
    resize: none;  
    color: var(--body-text-color) !important;
}

.woocommerce-checkout .wc-block-components-textarea:focus{
    border-color: #00A3FF !important; 
}


.woocommerce-checkout .wc-block-components-address-form input:focus,
.woocommerce-checkout .wc-block-components-address-form select:focus{
    border-color: #00A3FF !important;
}

.wc-block-components-panel__button > .wc-block-components-panel__button-icon{ fill:var(--body-text-color) !important; }
.innerPage .heading{ padding:10px 0 15px 0; }
.innerPage .heading h1{ color: var(--heading-color); }









.wc-block-components-totals-item, 
.wc-block-components-totals-coupon .wc-block-components-panel__button, 
.wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices, 
.wc-block-components-order-summary .wc-block-components-order-summary-item, 
.wc-block-components-order-summary .wc-block-components-order-summary__button-text, 
.woocommerce-checkout .wc-block-components-title.wc-block-components-title,
.woocommerce-checkout .wc-block-checkout__terms, 
.woocommerce-checkout .wc-block-components-radio-control-accordion-content, 
.woocommerce-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option, 
.wc-block-components-address-form__address_2-toggle, 
.wp-block-woocommerce-checkout .wc-block-checkout__guest-checkout-notice, 
.wc-block-components-checkout-step__description{ color: var(--body-text-color) !important; }





.wc-block-components-quantity-selector{ color:var(--body-text-color) !important; border:1px solid var(--body-text-color) !important; }




table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total, 
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity button, 
.wc-block-components-product-metadata, 
.wc-block-components-product-badge, 
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices, 
.is-large.wc-block-cart .wc-block-cart-items th{ color:var(--body-text-color) !important; }


















.woocommerce-checkout .wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
    border-top: 1px solid hsla(0,0%,7%,.11);
    padding-top: 0;
}

.woocommerce-checkout .wc-block-checkout__terms {
    margin: 0px 0 20px;
    font-size: 14px;
    text-align: center;
}

.woocommerce-checkout .wc-block-components-radio-control {
    display: flex;
    justify-content: space-between;
}

.woocommerce-checkout .wc-block-components-radio-control--highlight-checked div.wc-block-components-radio-control-accordion-option {
    position: relative;
    width: 100%;
}

.woocommerce-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option {
    border-width: 0;
    font-size: 13px;
}

.woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input {
    -moz-appearance: none;
    appearance: none;
    background: var(--theme-bg);!important;
    border: 1px solid #283F5F !important;
}

.woocommerce-checkout .wc-block-components-radio-control-accordion-content {
    padding: 8px;
    font-size: 13px;
}

.woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input:checked:before {
    background: #ffffff !important;
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px #253c5c !important;
}


.wc-block-components-sidebar.wc-block-checkout__sidebar.wp-block-woocommerce-checkout-totals-block.is-sticky {
    background: var(--theme-bg);
    padding: 15px;
    border-radius: 15px;
    margin: 0;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
    box-sizing: border-box;
    margin: 0 30px 0 0 !important;
    width: calc(65% - 30px) !important;
    background: var(--theme-bg);
    padding: 20px !important;
    border-radius: 20px;
}

.wc-block-components-panel__content .wc-block-components-order-summary__content .wc-block-components-order-summary-item {
    border-bottom: 1px dashed #283F5F;
}


.wc-block-checkout__sidebar .wc-block-components-order-summary-item__description  .wc-block-components-product-name {
    color: inherit;
    display: block;
    flex-grow: 1;
    font-weight: 700;
    color: #00A3FF;
    font-size: 16px;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__description p {
    line-height: 1.375;
    margin-top: 8px;
    font-size: 14px;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
    align-items: center;
    background: #e5262b !important;
    border: none !important;
    box-shadow: 0 0 0 2px #fff;
    color: #ffffff !important;
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.wc-block-components-checkout-place-order-button--full-width.contained {
    border-radius: 12px;
    background: #00A3FF;
    color: #fff;
    font-weight: 400;
    border: none;
}

.woocommerce-checkout .is-large .wc-block-checkout__actions {
    padding: 0 !important;
}

.woocommerce-checkout .wc-block-components-totals-wrapper {
    border-top: 1px dashed hsl(214.91deg 40.74% 26.47%);
    padding: 10px 0;
}



p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    padding: 20px 0;
    color: #00A3FF;
}

.woocommerce-checkout.woocommerce-page.woocommerce-order-received ul.order_details {
    list-style: none;
    border: 1px solid #273F5F;
    padding: 20px;
    background: var(--theme-bg);
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}


.woocommerce-checkout.woocommerce-page.woocommerce-order-received ul.order_details::before,
.woocommerce-checkout.woocommerce-page.woocommerce-order-received ul.order_details::after{
    display: none;
}

.woocommerce-checkout.woocommerce-page.woocommerce-order-received ul li {
    color: #00A3FF;
    /*text-align: left;
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    font-size: 13px;*/
}

.woocommerce-checkout.woocommerce-page.woocommerce-order-received ul li > strong{
    color: #fff;
    font-size: 15px;
    margin-top: 8px;
}


h2.woocommerce-order-details__title {
    color: var(--heading-color);
}

.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody tr.woocommerce-table__line-item.order_item a {
    color: #00A3FF;
}

.woocommerce .woocommerce-customer-details .woocommerce-column__title {
    margin-top: 0;
    color: var(--heading-color);
}

.woocommerce table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
    background: var(--theme-bg);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #273f5f;
    color: var(--heading-color);
}


.woocommerce section.woocommerce-order-details h2.woocommerce-order-details__title {
    display: none;
}


.woocommerce .payment-method-way {
    padding: 15px;
    background: var(--theme-bg);
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px dashed#273f5f;
    text-align: center;
    color: var(--heading-color);
}

.woocommerce section.woocommerce-customer-details {
    background: var(--theme-bg);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #273f5f;
    color: var(--heading-color);
}

.woocommerce section.woocommerce-customer-details h2.woocommerce-column__title {
    margin: 0 0 15px 0;
    font-size: 23px;
    border-bottom: 1px solid #273f5f;
    padding: 0 0 15px 0;
    text-transform: capitalize;
}

.woocommerce section.woocommerce-customer-details {
    font-size: 15px;
    line-height: 2;
}

/* SHOP PAGE */

.woocommerce-shop .woocommerce-ordering select {
    font-size: 13px;
    vertical-align: top;
    background: var(--theme-bg);
    color: var(--heading-color);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #283F5F;
}

.woocommerce-shop:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
    color: #00a3ff;
}


/* SINGLE PRODUCT PAGE */
.single-product{
    padding: 80px 0;
    padding: 0px 0;
    margin: 0;
}

.single-product .header{ margin-bottom:40px; }

.single-product .heading{
    padding: 0;
    margin: 0 0 30px 0;
}

.single-product .product-wrapper {
    display: flex;
    gap: 30px;
/*    align-items: center;*/
}

.single-product .product-wrapper .product-image{
    width: 50%;
}

.single-product .product-wrapper .product-image .woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images {
    width: auto;
}

.single-product .product-wrapper .product-summary{
    width: 50%;
}

.single-product .product-wrapper .product-summary .product-title{
    color: var(--heading-color);
    margin: 0 0 30px 0;
}












































@media all and (max-width:768px) {
    .contact-content {
        margin-bottom: 50px
    }
}

.team-area {
    position: relative;
    overflow: hidden
}

.team-item {
    position: relative;
    background: var(--theme-bg);
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 20px;
    border: 1px solid var(--border-info-color);
    transition: var(--transition)
}

.team-img {
    border-radius: 20px;
    overflow: hidden
}

.team-img img {
    border-radius: 20px
}

.team-item:hover .team-img img {
    transform: scale(1.1)
}

.team-info {
    position: relative;
    background: var(--theme-bg);
    text-align: center;
    padding: 12px 25px;
    margin-right: 36px;
    margin-left: 36px;
    margin-top: -30px;
    border-radius: 50px
}

.team-info h5 a {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 500
}

.team-info h5 a:hover {
    color: var(--theme-color)
}

.team-info span {
    margin-top: 4px;
    display: inline-block;
    color: var(--body-text-color)
}

.team-social {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 8px
}

.team-social a {
    display: inline-block;
    color: var(--color-white);
    width: 38px;
    height: 38px;
    line-height: 38px;
    margin: 5px;
    border-radius: 50px;
    text-align: center;
    background: var(--theme-color)
}

.team-social a:hover {
    background: var(--color-danger)
}

.faq-area .faq-list {
    background: var(--theme-bg);
    border-radius: 12px;
    padding: 15px;
    box-shadow: var(--box-shadow)
}

.faq-area .faq-list a {
    display: block;
    margin: 5px 0;
    color: var(--heading-color);
    font-weight: 500;
    font-size: 18px;
    padding: 8px;
    border-radius: 10px
}

.faq-area .faq-list a:hover,
.faq-area .faq-list a.active {
    background: var(--theme-color);
    color: var(--color-white)
}

.faq-area .faq-list a i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: var(--theme-color);
    color: var(--color-white);
    border-radius: 50px;
    margin-right: 8px
}

.faq-area .faq-list a:hover i,
.faq-area .faq-list a.active i {
    box-shadow: var(--box-shadow2)
}

.faq-area .accordion-item {
    border: none;
    margin-bottom: 20px;
    background: var(--theme-bg);
    border-radius: 10px !important;
    box-shadow: var(--box-shadow)
}

.faq-area .accordion-item span {
    width: 45px;
    height: 45px;
    margin-right: 15px
}

.faq-area .accordion-item i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50px;
    background: var(--theme-color);
    text-align: center;
    color: var(--color-white)
}

.faq-area .accordion-button {
    border-radius: 0 !important;
    background: 0 0;
    font-weight: 600;
    font-size: 20px;
    font-size: 22px;
    color: var(--heading-color);
    box-shadow: none !important
}

.faq-area .accordion-button:not(.collapsed) {
    color: var(--theme-color);
    background: 0 0;
    box-shadow: inset 0 -1px 0 rgb(0 0 0/13%)
}

.faq-area .accordion-button::after {
    content: "\f107";
    background: 0 0 !important;
    color: var(--body-text-color);
    font-family: 'font awesome 6 pro';
    width: unset;
    height: unset;
    margin-right: 3px;
    font-weight: 400
}

.faq-area .accordion-button:not(.collapsed)::after {
    content: "\f107";
    transform: rotate(90deg)
}

.faq-area .accordion-body {
    color: var(--body-text-color);
    border-top: 1px solid var(--border-info-color);
	color: var(--heading-color);
}

@media all and (max-width:991px) {
    .faq-area .faq-right {
        margin-bottom: 50px
    }
    .faq-area .accordion-button {
        font-size: 16px
    }
}

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
    z-index: 1
}

.site-breadcrumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: -1
}

.site-breadcrumb .breadcrumb-title {
    font-size: 35px;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize
}

.site-breadcrumb .breadcrumb-menu {
    position: relative;
    z-index: 1
}

.site-breadcrumb .breadcrumb-menu li {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    color: var(--color-white);
    font-weight: 500;
    text-transform: capitalize
}

.site-breadcrumb .breadcrumb-menu li a {
    color: var(--color-white);
    transition: all .5s ease-in-out
}

.site-breadcrumb .breadcrumb-menu li::before {
    position: absolute;
    content: '\f101';
    font-family: 'font awesome 6 pro';
    right: -21px;
    top: 1px;
    text-align: center;
    font-size: 16px;
    color: var(--color-white)
}

.site-breadcrumb .breadcrumb-menu li:first-child {
    margin-left: 0
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
    display: none
}

.site-breadcrumb .breadcrumb-menu li a:hover {
    color: var(--theme-color)
}

.site-breadcrumb .breadcrumb-menu li.active {
    color: var(--theme-color)
}

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

.pagination .page-link {
    background: var(--theme-bg-light);
    color: var(--body-text-color);
    padding: 0;
    margin: 0 10px;
    border-radius: 12px !important;
    width: 40px;
    height: 40px;
    line-height: 39px;
    text-align: center;
    font-weight: 500;
    border: none;
    transition: var(--transition)
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--theme-color);
    color: var(--color-white)
}

.pagination .page-link span {
    line-height: 40px
}

.pagination span.page-link {
    line-height: 27px;
    font-size: 22px
}

.pagination span.page-link:hover {
    background: var(--theme-bg-light);
    color: var(--body-text-color)
}

.pagination-area2 .page-link {
    background: 0 0;
    border: 1px solid var(--border-info-color);
    line-height: 37px
}

.pagination-area2 .page-link span {
    line-height: 38px
}

.pagination-area2 span.page-link {
    line-height: 25px
}

.auth-area {
    position: relative
}

.auth-wrap {
    position: relative;
    padding: 40px;
    background: var(--theme-bg);
    border-radius: 15px;
    box-shadow: var(--box-shadow)
}

.auth-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-info-color)
}

.auth-header img {
    width: 170px;
    margin: 0 auto 10px
}

.auth-header h3 {
    color: var(--theme-color);
    margin-bottom: 5px;
    font-weight: 700
}

.auth-header p {
    font-size: 20px;
    color: var(--body-text-color)
}

.auth-form .form-group {
    margin-bottom: 15px
}

.auth-form label {
    color: var(--body-text-color);
    margin-bottom: 5px
}

.auth-form .form-control {
    background: var(--theme-bg2);
    color: var(--body-text-color);
    border: 1px solid var(--border-info-color);
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: none
}

.auth-form .form-control::placeholder {
    color: var(--body-text-color)
}

.auth-form .form-control:focus {
    border-color: var(--theme-color)
}

.auth-form .auth-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px
}

.auth-form .auth-check .form-check,
.auth-form .auth-check .form-check-label {
    margin-bottom: 0
}

.auth-form .form-check-input {
    width: 1.15em;
    height: 1.15em;
    margin-top: .35em;
    border-radius: 6px;
    background-color: var(--theme-bg2);
    border-color: var(--border-info-color);
    box-shadow: none
}

.auth-form .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

.auth-form .form-check-input:focus {
    border-color: var(--theme-color)
}

.auth-form .auth-check a {
    color: var(--theme-color)
}

.auth-form .auth-check a:hover {
    color: var(--color-danger)
}

.auth-btn {
    margin-top: 25px
}

.auth-btn .theme-btn {
    width: 100%;
    padding: 12px 18px
}

.auth-footer {
    text-align: center
}

.auth-divider {
    display: block;
    margin: 12px 0
}

.auth-social-list {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.auth-social-list a {
    background: var(--theme-color);
    color: var(--color-white);
    padding: 5px 18px;
    border-radius: 50px;
    box-shadow: var(--box-shadow)
}

.auth-social-list a i {
    margin-right: 5px
}

.auth-social-list a:hover {
    opacity: .8
}

.auth-social-list .auth-fb {
    background: #3b5998
}

.auth-social-list .auth-gl {
    background: #dd4b39
}

.auth-social-list .auth-tw {
    background: #1d9bf0
}

.auth-footer p {
    margin-top: 30px;
    color: var(--body-text-color)
}

.auth-footer p a {
    color: var(--theme-color)
}

.auth-footer p a:hover {
    color: var(--color-danger)
}

.profile-area {
    position: relative
}

.profile-sidebar {
    background: var(--theme-bg);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--box-shadow)
}

.profile-sidebar-img {
    position: relative;
    width: 100px;
    margin: auto;
    margin-bottom: 10px;
    border: 3px solid var(--theme-color);
    padding: 4px;
    border-radius: 50px
}

.profile-sidebar-img img {
    border-radius: 50px
}

.profile-sidebar-img .author-badge {
    position: absolute;
    right: 4px;
    bottom: 2px;
    width: 25px
}

.profile-sidebar-name {
    text-align: center
}

.profile-sidebar-name .name {
    margin-bottom: 5px
}

.profile-sidebar-name .name a {
    color: var(--heading-color);
    font-size: 20px
}

.profile-sidebar-name .name a:hover {
    color: var(--theme-color)
}

.profile-sidebar-name .username a {
    color: var(--theme-color)
}

.profile-sidebar-name .meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 12px
}

.profile-sidebar-name .meta b {
    color: var(--theme-color)
}

.profile-sidebar .nav {
    border-top: 1px solid var(--border-info-color);
    margin-top: 20px;
    padding-top: 20px;
    gap: 5px
}

.profile-sidebar .nav .nav-link {
    color: var(--heading-color);
    font-weight: 500;
    border-radius: 12px;
    transition: var(--transition)
}

.profile-sidebar .nav .nav-link:hover {
    color: var(--theme-color);
    padding-left: 20px
}

.profile-sidebar .nav .nav-link.active {
    color: var(--color-white);
    background: var(--theme-color)
}

.profile-sidebar .nav .nav-link i {
    width: 25px;
    color: var(--theme-color)
}

.profile-sidebar .nav .nav-link.active i {
    color: var(--color-white)
}

.profile-area .badge {
    border-radius: 50px;
    padding: 5px 12px
}

.profile-area .badge-success {
    background: rgba(34, 201, 158, .2);
    color: #22c79c
}

.profile-area .badge-info {
    background: rgba(168, 85, 247, .2);
    color: #a855f7
}

.profile-area .badge-primary {
    background: rgba(13, 202, 240, .2);
    color: #0dcaf0
}

.profile-area .badge-danger {
    background: rgba(239, 68, 68, .2);
    color: #ef4444
}

.profile-area .btn {
    border-radius: 10px;
    border: 2px solid transparent
}

.profile-area .btn.outline-info {
    color: var(--color-info);
    border-color: var(--color-info)
}

.profile-area .btn.outline-info:hover {
    color: var(--color-white);
    background: var(--color-info)
}

.profile-area .btn.outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary)
}

.profile-area .btn.outline-primary:hover {
    color: var(--color-white);
    background: var(--color-primary)
}

.profile-area .btn.outline-success {
    color: var(--color-success);
    border-color: var(--color-success)
}

.profile-area .btn.outline-success:hover {
    color: var(--color-white);
    background: var(--color-success)
}

.profile-area .btn.outline-danger {
    color: var(--color-danger);
    border-color: var(--color-danger)
}

.profile-area .btn.outline-danger:hover {
    color: var(--color-white);
    background: var(--color-danger)
}

.profile-form h5 {
    color: var(--heading-color)
}

.profile-form .input-group,
.profile-form .nice-select,
.profile-form .form-group {
    margin-bottom: 15px
}

.profile-form .input-group .input-group-text {
    background: var(--theme-bg2);
    color: var(--theme-color);
    border-radius: 10px 0 0 10px;
    border-color: var(--border-info-color)
}

.profile-form label {
    color: var(--body-text-color);
    margin-bottom: 5px
}

.profile-form .form-control {
    background: var(--theme-bg2);
    padding: 12px 18px;
    border-radius: 10px;
    color: var(--body-text-color);
    box-shadow: none;
    border-color: var(--border-info-color);
    transition: var(--transition)
}

.profile-form .form-control::placeholder {
    color: var(--body-text-color)
}

.profile-form .form-control:focus {
    border-color: var(--theme-color)
}

.profile-form .form-check .form-check-input {
    margin-top: 7px;
    background-color: var(--theme-bg2);
    border-color: var(--border-info-color)
}

.profile-form .form-check .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

.profile-form .form-switch {
    margin: 10px 0
}

.profile-form .form-switch .form-check-input {
    border-color: var(--border-info-color);
    box-shadow: none
}

.profile-form .theme-btn {
    margin: 15px 0 12px
}

.profile-tab-content {
    position: relative
}

.profile-widget {
    background: var(--theme-bg);
    padding: 16px 30px 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    margin-bottom: 25px
}

.profile-widget-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-info-color);
    padding-bottom: 14px;
    margin-bottom: 20px
}

.profile-widget-heading .title {
    color: var(--heading-color)
}

.profile-widget-heading .theme-btn {
    padding: 5px 15px
}

.profile-widget-heading .heading-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-widget-heading .heading-right .nice-select {
    min-width: 150px
}

.profile-widget-heading .heading-right .form-group {
    position: relative
}

.profile-widget-heading .heading-right .form-control {
    min-width: 240px;
    background: var(--theme-bg2);
    padding: 12px 45px 12px 15px;
    border-radius: 10px;
    color: var(--theme-color-light);
    border-color: var(--border-info-color);
    box-shadow: none
}

.profile-widget-heading .heading-right .form-control::placeholder {
    color: var(--body-text-color)
}

.profile-widget-heading .heading-right .form-control:focus {
    border-color: var(--theme-color)
}

.profile-widget-heading .heading-right .form-group button {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    padding: 8px 15px 6px 18px;
    background: 0 0;
    border: none;
    color: var(--theme-color)
}

.profile-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--border-info-color);
    transition: var(--transition)
}

.profile-summary:hover {
    border-color: var(--theme-color)
}

.profile-summary h4 {
    color: var(--theme-color)
}

.profile-summary .info span {
    color: var(--body-text-color)
}

.profile-summary .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    background: var(--theme-color);
    color: var(--color-white);
    text-align: center;
    font-size: 18px;
    box-shadow: var(--box-shadow)
}

.profile-info ul li {
    margin: 5px 0;
    font-weight: 500
}

.profile-info ul li span {
    float: right;
    font-weight: 400
}

.profile-info ul li a {
    color: var(--theme-color)
}

.profile-cover h5 {
    color: var(--heading-color);
    margin: 20px 0
}

.profile-cover .cover-img {
    padding: 5px;
    border: 2px solid var(--border-info-color);
    border-radius: 18px;
    transition: var(--transition);
    cursor: pointer
}

.profile-cover .cover-img:hover,
.profile-cover .cover-img.active {
    border-color: var(--theme-color)
}

.profile-cover .cover-img img {
    width: 100%;
    height: 130px;
    border-radius: 15px;
    object-fit: cover
}

.profile-cover .cover-upload {
    padding: 5px;
    border: 2px dashed var(--border-info-color);
    border-radius: 18px
}

.profile-cover .cover-upload .file-btn {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.profile-cover .cover-upload .file-btn i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--theme-color);
    color: var(--color-white);
    text-align: center;
    font-size: 30px;
    border-radius: 50px
}

.profile-cover.pc2 .cover-img {
    position: relative;
    border: none;
    padding: 0;
    cursor: unset
}

.profile-cover.pc2 .cover-img img {
    border-radius: 15px;
    width: 100%;
    height: 280px;
    object-fit: cover
}

.profile-cover.pc2 .cover-img .file-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 35px;
    background: var(--theme-color);
    border-radius: 50px;
    color: var(--color-white);
    text-align: center;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    border: 3px solid var(--color-white)
}

.profile-cover.pc2.profile-avatar .cover-img {
    width: 140px
}

.profile-cover.pc2.profile-avatar .cover-img img {
    width: 140px;
    height: 140px;
    border-radius: 50%
}

.profile-cover.pc2.profile-avatar .cover-img .file-btn {
    right: 5px;
    bottom: 5px
}

.profile-item .table-responsive {
    background: var(--theme-bg2);
    padding: 0 15px;
    border-radius: 10px;
    border: 1px solid var(--border-info-color)
}

.profile-item .table {
    border-collapse: separate;
    border-spacing: 0 1em;
    margin-bottom: 0;
    white-space: nowrap
}

.profile-item .table tr td:first-child,
.profile-item .table tr th:first-child {
    border-radius: 10px 0 0 10px
}

.profile-item .table tr td:last-child,
.profile-item .table tr th:last-child {
    border-radius: 0 10px 10px 0
}

.profile-item .table tr th {
    background: var(--theme-color);
    color: var(--color-white);
    padding: 10px 10px 10px 20px
}

.profile-item .table tr td {
    background: var(--footer-bg);
    color: var(--heading-color);
    font-weight: 500;
    padding: 10px 10px 10px 20px;
    vertical-align: middle
}

.profile-item .product {
    display: flex;
    align-items: center;
    gap: 14px
}

.profile-item .product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%
}

.profile-item .product a {
    color: var(--heading-color)
}

.profile-item .product a:hover {
    color: var(--theme-color)
}

.profile-area .sidebar .widget,
.profile-area .activity-item {
    background: var(--theme-bg2)
}

.profile-wallet .profile-summary {
    padding: 25px
}

.profile-wallet-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-info-color)
}

.profile-wallet-item .info {
    display: flex;
    align-items: center;
    gap: 15px
}

.profile-wallet-item .info img {
    width: 50px
}

.profile-wallet .title,
.profile-wallet-item .info h4 {
    color: var(--heading-color)
}

.profile-follower .author-item {
    border: 1px solid var(--border-info-color);
    box-shadow: none
}

.profile-follower .author-item .author-img {
    margin-top: 0
}

@media all and (max-width:991px) {
    .profile-intro .intro-right .intro-item {
        width: 100%
    }
}

@media all and (max-width:767px) {
    .profile-widget-heading {
        flex-wrap: wrap;
        gap: 20px
    }
    .profile-cover.pc2 .cover-img img {
        height: 150px
    }
    .profile-cover.profile-avatar .cover-img img {
        height: 120px
    }
    .profile-item .product {
        min-width: 180px
    }
}

.create-area {
    position: relative
}

.create-area .upload-heading {
    margin-bottom: 20px
}

.create-area .upload-heading h4 {
    color: var(--heading-color)
}

.create-area .upload-heading p {
    margin-top: 5px
}

.create-area .upload-box {
    text-align: center;
    border: 2px dashed var(--border-info-color);
    border-radius: 15px;
    cursor: pointer
}

.create-area .upload-content {
    padding: 80px 30px
}

.create-area .upload-content i {
    font-size: 50px;
    color: var(--theme-color)
}

.create-area .upload-content h4 {
    font-size: 22px;
    color: var(--heading-color);
    margin: 15px 0
}

.create-form {
    padding: 30px;
    border: 1px solid var(--border-info-color);
    border-radius: 15px
}

.create-form .form-group,
.create-form .nice-select {
    margin-bottom: 15px
}

.create-form .nice-select,
.create-form .nice-select .list {
    background-color: var(--theme-bg)
}

.create-form .form-group label {
    color: var(--body-text-color);
    margin-bottom: 5px
}

.create-form .form-control {
    background-color: var(--theme-bg);
    color: var(--body-text-color);
    padding: 12px 18px;
    border-radius: 10px;
    border-color: var(--border-info-color);
    box-shadow: none
}

.create-form .form-control::placeholder {
    color: var(--body-text-color)
}

.create-form .nice-select:focus,
.create-form .form-control:focus {
    border-color: var(--theme-color) !important
}

.create-form input[type=date] {
    position: relative
}

.create-form input[type=date]::-webkit-calendar-picker-indicator {
    color: transparent;
    background: 0 0;
    z-index: 1
}

.create-form input[type=date]::before {
    content: "\f073";
    position: absolute;
    top: 11px;
    right: 12px;
    width: 15px;
    height: 20px;
    font-family: 'font awesome 6 pro';
    color: var(--body-text-color);
    background: 0 0
}

.create-form .form-check {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 10px 0
}

.create-form .form-check-input {
    background-color: var(--theme-bg);
    border-color: var(--border-info-color);
    width: 19px;
    height: 19px;
    margin-top: 0;
    margin-right: 0;
    border-radius: 6px;
    box-shadow: none
}

.create-form .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

.create-form .form-check-input:focus {
    border-color: var(--theme-color)
}

.create-form .form-check-label {
    color: var(--body-text-color)
}

.create-form .create-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.preview-modal .modal-dialog {
    max-width: 360px
}

.preview-modal .btn-close {
    right: -10px;
    top: -10px
}

.preview-modal .modal-body {
    padding: 10px
}

.preview-modal .modal-body .item {
    margin-bottom: 0
}

.coming-soon {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center !important;
    min-height: 100vh;
    width: 100%;
    z-index: 1
}

.coming-soon:before {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1
}

.coming-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh
}

.coming-content {
    text-align: center
}

.coming-info h1 {
    color: var(--color-white);
    font-weight: 700;
    font-size: 50px
}

.coming-info p {
    font-size: 18px;
    color: var(--color-white);
    margin-top: 10px
}

.coming-countdown-wrap {
    margin-top: 30px;
    margin-bottom: 30px
}

.coming-countdown .time-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px
}

.coming-countdown .time {
    background: var(--color-white);
    width: 125px;
    border-radius: 15px;
    padding: 14px 10px
}

.coming-countdown .time span {
    display: block
}

.coming-countdown .time span:first-child {
    color: var(--theme-color);
    font-weight: 700;
    font-size: 38px;
    line-height: 1
}

.coming-countdown .time .unit {
    color: var(--body-text-color);
    font-weight: 500
}

.coming-countdown .divider {
    display: none
}

.coming-newsletter-form {
    margin-top: 50px;
    margin-bottom: 25px
}

.coming-newsletter-form .form-group {
    position: relative
}

.coming-newsletter-form .form-control {
    padding: 17px 150px 17px 20px;
    border-radius: 12px;
    border: none;
    box-shadow: none
}

.coming-newsletter-form .theme-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 9px 15px
}

.coming-social {
    margin-top: 40px;
    text-align: center
}

.coming-social a {
    display: inline-block;
    background: var(--theme-color);
    color: var(--color-white);
    margin: 5px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 50px;
    transition: .5s;
    box-shadow: var(--box-shadow2)
}

.coming-social a:hover {
    background: var(--color-danger)
}

@media all and (max-width:767px) {
    .coming-info h1 {
        font-size: 40px
    }
}

.maintenance {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center !important;
    min-height: 100vh;
    width: 100%;
    z-index: 1
}

.maintenance:before {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1
}

.maintenance .logo {
    text-align: center
}

.maintenance .logo img {
    max-width: 180px
}

.maintenance-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65vh
}

.maintenance-wrap {
    text-align: center
}

.maintenance-wrap p {
    color: var(--color-white);
    font-weight: 500;
    font-size: 28px
}

.maintenance-wrap h1 {
    color: var(--color-white);
    font-weight: 700;
    font-size: 60px;
    margin-bottom: 30px
}

.maintenance-wrap h1 span {
    color: var(--theme-color)
}

.error-wrapper {
    text-align: center
}

.error-wrapper h1 {
    font-size: 250px;
    letter-spacing: 5px;
    font-weight: 700;
    color: var(--theme-color)
}

.error-wrapper h1 span {
    color: var(--color-dark)
}

.error-wrapper h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--heading-color)
}

.error-wrapper img {
    width: 100%
}

.error-wrapper .theme-btn {
    margin-top: 30px
}

@media all and (max-width:767px) {
    .error-wrapper h1 {
        font-size: 160px
    }
}

.terms-content:not(:last-child) {
    margin-bottom: 54px
}

.terms-content:first-child {
    margin-top: -3px
}

.terms-content .terms-list {
    margin-top: 37px
}

.terms-content h3 {
    color: var(--heading-color);
    margin-bottom: 23px
}

.terms-content p:not(:last-child) {
    margin-bottom: 26px
}

.terms-list li:not(:last-child) {
    margin-bottom: 16px
}

.footer-area {
    position: relative;
    background: var(--footer-bg);
	bottom: -43px;
  z-index: 999;
}

.footer-widget-box {
    margin-bottom: 20px
}

.footer-widget {
    position: relative;
    z-index: 1
}

.footer-logo img {
    width: 160px;
    margin-bottom: 10px
}

.footer-logo .logo-light-mode {
    display: none
}

.footer-widget-title {
    color: var(--heading-color);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    z-index: 1
}

.footer-widget-title::before {
    position: absolute;
    content: '';
    z-index: -1;
    width: 20px;
    height: 3px;
    background: var(--theme-color);
    border-radius: 50px;
    bottom: 0;
    left: 0
}

.footer-widget-title::after {
    position: absolute;
    content: '';
    z-index: -1;
    width: 10px;
    height: 3px;
    background: var(--theme-color);
    border-radius: 50px;
    bottom: 0;
    left: 25px
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.footer-list li a {
    position: relative;
    color: var(--footer-text-color);
    transition: var(--transition);
    padding-left: 14px
}

.footer-list li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 3px;
    background: var(--theme-color);
    border-radius: 50px;
    transform: translateY(-50%);
    transition: var(--transition)
}

.footer-list li a:hover::before {
    width: 10px
}

.footer-list li a:hover {
    padding-left: 20px;
    color: var(--theme-color)
}

.footer-widget-box p {
    color: var(--footer-text-color);
    padding-right: 18px;
    margin-bottom: 20px
}

.footer-language {
    margin-top: 30px
}

.footer-language img {
    width: 20px;
    margin-right: 10px
}

.footer-language .language {
    color: var(--footer-text-color);
    border: 1px solid var(--border-info-color);
    border-radius: 10px;
    padding: 6px 15px 6px 12px
}

.footer-language .language:hover {
    border-color: var(--theme-color)
}

.footer-language .language img {
    margin-top: -3.5px;
    margin-right: 5px
}

.footer-language .dropdown-menu {
    background: var(--theme-bg2);
    border: none;
    border-radius: 15px;
    box-shadow: var(--box-shadow)
}

.footer-language .dropdown-item {
    color: var(--footer-text-color)
}

.footer-language .dropdown-item:hover {
    background: 0 0;
    color: var(--theme-color)
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-start
}

.footer-social li a i {
    height: 38px;
    width: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50px;
    background: var(--theme-bg2);
    color: var(--theme-color)
}

.footer-social li a i:hover {
    background: var(--theme-color);
    color: var(--color-white);
    transition: var(--transition)
}

.subscribe-form .form-control {
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--theme-bg2);
    color: var(--footer-text-color);
    border: 2px solid transparent;
    box-shadow: none
}

.subscribe-form .form-control::placeholder {
    color: var(--footer-text-color)
}

.subscribe-form .form-control:focus {
    border-color: var(--theme-color)
}

.subscribe-form .theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    margin-top: 20px
}

.footer-top-link {
    margin-top: 30px
}

.footer-top-link a {
    border: 1px solid var(--border-info-color);
    color: var(--body-text-color);
    font-size: 15px;
    padding: 2px 15px;
    border-radius: 50px;
    margin: 5px 5px 5px 0
}

.footer-top-link a:hover {
    border-color: var(--theme-color);
    color: var(--theme-color)
}

.footer-download .download-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.footer-download a {
    background: var(--color-white);
    padding: 0 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--border-info-color)
}

.footer-download a .icon {
    font-size: 28px;
    color: var(--theme-color)
}

.footer-download .info p {
    font-size: 13px;
    font-weight: 500;
    color: var(--body-text-color);
    margin-bottom: 0;
    line-height: 1
}

.footer-download .info h5 {
    font-size: 17px;
    font-weight: 700
}

.copyright {
    position: relative;
    padding: 20px 0;
    border-top: 1px solid var(--border-info-color)
}

.copyright .footer-menu {
    margin: 0;
    padding: 0;
    text-align: right
}

.copyright .footer-menu li {
    display: inline-block;
    margin-left: 25px;
    font-size: 16px
}

.copyright .footer-menu li a {
    color: var(--footer-text-color);
    transition: var(--transition)
}

.copyright .footer-menu li a:hover {
    color: var(--theme-color)
}

.copyright .copyright-text {
    color: var(--footer-text-color);
    margin-bottom: 0;
    font-size: 16px
}

.copyright .copyright-text a {
    color: var(--theme-color);
    font-weight: 500
}

@media all and (max-width:1199px) {
    .footer-widget-box {
        margin-bottom: 50px
    }
    .footer-social {
        gap: 8px
    }
}

@media all and (max-width:991px) {
    .footer-top-link {
        margin-top: 0
    }
    .copyright .footer-menu li {
        margin-left: 0;
        margin-right: 14px
    }
}

@media all and (max-width:767px) {
    .footer-social {
        justify-content: flex-start;
        margin-top: 20px
    }
    .copyright .copyright-text a {
        color: var(--theme-color)
    }
    .copyright .footer-menu {
        text-align: left
    }
}

.footer-area.fa2 .footer-social li a i {
    background: var(--theme-color);
    color: var(--color-white)
}

.footer-area.fa2 .footer-social li a i:hover {
    background: var(--color-danger)
}

.footer-area.fa2 .subscribe-form .form-group {
    position: relative
}

.footer-area.fa2 .subscribe-form .form-control {
    padding-right: 65px;
    border-color: var(--theme-color)
}

.footer-area.fa2 .subscribe-form .theme-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    margin-top: 0;
    padding: 13px 15px
}

.footer-area.fa2 .subscribe-form .theme-btn i {
    margin-left: 0
}

.footer-area.fa2 .subscribe-form-text {
    color: var(--body-text-color);
    margin-top: 10px
}

.footer-area.fa2 .copyright {
    background: var(--theme-bg2);
    border-top: 0;
    border-radius: 15px 15px 0 0;
    padding: 25px;
    border: 1px solid var(--border-info-color);
    border-bottom: none;
    z-index: 1
}

.footer-area.fa3 {
    border-radius: 15px 15px 0 0
}

.footer-area.fa3 .footer-wrap {
    text-align: center
}

.footer-area.fa3 .footer-social-wrap {
    margin-top: 20px;
    margin-bottom: 20px
}

.footer-area.fa3 .footer-social-wrap h4 {
    color: var(--heading-color);
    margin-bottom: 15px
}

.footer-area.fa3 .footer-social {
    justify-content: center
}

.footer-area.fa3 .footer-social a i {
    background: var(--theme-color);
    color: var(--color-white)
}

.footer-area.fa3 .footer-social a i:hover {
    background: var(--color-danger);
    color: var(--color-white)
}

.footer-area.fa4 {
    position: unset
}

.footer-area.fa4 .footer-widget-box.about-us {
    padding-right: 35px
}

.footer-area.fa4 .footer-newsletter {
    padding-top: 15px;
    margin-top: 20px;
    border-top: 1px solid var(--border-info-color)
}

.footer-area.fa4 .footer-newsletter p {
    color: var(--heading-color);
    font-weight: 500;
    margin-bottom: 15px
}

.footer-area.fa4 .footer-newsletter .form-group {
    position: relative
}

.footer-area.fa4 .footer-newsletter .form-control {
    padding-left: 15px;
    padding-right: 115px;
    border: 1px solid var(--border-info-color)
}

.footer-area.fa4 .footer-newsletter .theme-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    margin-top: 0;
    padding: 7px 12px
}

.footer-area.fa4 .footer-download .download-btn {
    gap: 15px
}

.footer-area.fa4 .footer-download a:hover {
    border-color: var(--theme-color)
}

.footer-area.fa4 .footer-social {
    gap: 8px
}

.footer-area.fa4 .footer-social li a i {
    background: 0 0;
    color: var(--heading-color);
    font-size: 18px
}

.footer-area.fa4 .footer-social li a i:hover {
    color: var(--theme-color)
}

.footer-area.fa5 {
    background-image: url(../img/footer/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.footer-area.fa5::before {
    content: "";
    position: absolute;
    background: rgba(10, 39, 83, .9);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.footer-area.fa5 .footer-widget-title {
    color: var(--color-white)
}

.footer-area.fa5 .footer-widget-box p {
    color: var(--color-white)
}

.footer-area.fa5 .footer-list li a {
    color: var(--color-white)
}

.footer-area.fa5 .footer-list li a:hover {
    color: var(--theme-color)
}

.footer-area.fa5 .footer-language .language {
    color: var(--color-white)
}

.footer-area.fa5 .footer-language .dropdown-menu {
    background: var(--theme-bg)
}

.footer-area.fa5 .footer-social li a i {
    background: 0 0;
    width: auto;
    height: auto;
    font-size: 18px;
    margin-right: 8px
}

.footer-area.fa5 .footer-social li a i:hover {
    color: var(--color-white)
}

.footer-area.fa5 .subscribe-form .form-control {
    border: 1px solid var(--border-info-color)
}

.footer-area.fa5 .subscribe-form .form-control:focus {
    outline: 2px solid var(--theme-color)
}

.footer-area.fa5 .copyright .copyright-text {
    color: var(--color-white)
}

.footer-area.fa5 .copyright .footer-menu li a {
    color: var(--color-white)
}

.footer-area.fa5 .copyright .footer-menu li a:hover {
    color: var(--theme-color)
}

.instagram-area {
    position: relative
}

.instagram-item {
    position: relative
}

.instagram-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    opacity: 0;
    z-index: 0;
    transition: .4s
}

.instagram-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background: var(--theme-color);
    color: var(--color-white);
    font-size: 20px;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    z-index: 2;
    transition: .4s;
    transform: translate(-50%, -50%)
}

.instagram-item:hover::after {
    width: 100%;
    opacity: 1
}

.instagram-item:hover a {
    visibility: visible;
    opacity: 1
}

.marquee-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 10px auto 0
}

.marquee-slider {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 16px;
    padding: 5px 0
}

.marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 100%;
    animation: scroll-x 60s linear infinite
}

.marquee-slider.reverse .marquee-group {
    animation-direction: reverse;
    animation-delay: -3s
}

.marquee-slider:hover .marquee-group {
    animation-play-state: paused
}

.marquee-item {
    flex-grow: 1;
    place-items: center;
    width: calc(100%/4)
}

@keyframes scroll-x {
    from {
        transform: translateX(0)
    }
    to {
        transform: translateX(calc(-100% - 16px))
    }
}

@media all and (max-width:1199px) {
    .marquee-item {
        width: 350px
    }
}

.newsletter-area {
    position: relative;
    margin-bottom: -60px;
    z-index: 1
}

.newsletter-wrap {
    background: var(--theme-bg2);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1
}

.newsletter-shape img {
    position: absolute
}

.newsletter-shape .img-1 {
    bottom: -20px;
    right: 10px;
    height: 100%;
    opacity: .2;
    z-index: -1
}

.newsletter-shape .img-2 {
    bottom: -5px;
    left: 12%;
    width: 330px;
    opacity: .2;
    z-index: -1
}

.newsletter-wrap .newsletter-content h3 {
    color: var(--heading-color);
    margin-bottom: 10px
}

.newsletter-wrap .newsletter-content p {
    font-size: 18px;
    color: var(--body-text-color)
}

.newsletter-wrap .newsletter-form .form-group {
    position: relative
}

.newsletter-wrap .newsletter-form .form-control {
    padding: 18px 170px 18px 30px;
    border-radius: 50px;
    border: 2px solid var(--border-info-color);
    color: var(--body-text-color);
    background-color: transparent;
    box-shadow: none
}

.newsletter-wrap .newsletter-form .form-control::placeholder {
    color: var(--body-text-color)
}

.newsletter-wrap .newsletter-form .form-control:focus {
    border-color: var(--theme-color)
}

.newsletter-wrap .newsletter-form .theme-btn {
    position: absolute;
    top: 7px;
    right: 7px;
    border-radius: 50px
}

@media all and (max-width:767px) {
    .newsletter-wrap {
        padding: 20px
    }
}

.home-2 .navbar {
    border-bottom: none
}

.home-2 .navbar.fixed-top {
    border-bottom: 1px solid var(--border-info-color)
}

.home-2 .nav-notification .count {
    background: var(--color-danger)
}

.home-2 .hero-section .shape .shape-1 {
    opacity: .8
}

.home-2 .hero-section .shape .shape-3 {
    right: 0;
    bottom: 0;
    opacity: 1;
    opacity: .8
}

.home-2 .site-title span {
    background: var(--theme-gradient);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700
}

.home-2 .heading-divider::before {
    background: var(--theme-gradient)
}

.home-2 .theme-btn {
    background: var(--theme-gradient)
}

.home-2 .theme-btn::before {
    background: var(--theme-gradient2)
}

.home-2 .theme-btn2 {
    background: var(--theme-gradient2)
}

.home-2 .theme-btn2::before {
    background: var(--theme-gradient)
}

.home-2 .main-category .category-item {
    background: var(--theme-bg);
    border: none
}

.home-2 .main-category .category-item::before {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    top: -2px;
    bottom: -2px;
    background: var(--theme-gradient);
    border-radius: 15px;
    transition: var(--transition2);
    transform: rotate(2deg);
    z-index: -1
}

.home-2 .main-category .category-item:hover::before {
    transform: rotate(0deg)
}

.home-2 .item-wrap .item {
    position: relative
}

.home-2 .item-wrap .item::before {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    top: -2px;
    bottom: -2px;
    background: var(--theme-gradient);
    border-radius: 20px;
    transition: var(--transition2);
    transform: rotate(1.2deg);
    z-index: -1
}

.home-2 .item-wrap .item:hover::before {
    transform: rotate(0deg)
}

.home-2 .explore-slider.owl-carousel .owl-nav button {
    background: var(--theme-gradient) !important
}

.home-2 .item-wrap .explore-slider .item {
    margin-bottom: 0
}

.home-2 .item-wrap .owl-carousel .owl-stage-outer {
    height: calc(100% + 30px);
    margin: -15px;
    padding: 15px;
    width: calc(100% + 30px)
}

.home-2 .item-wrap .owl-carousel .owl-nav {
    top: -55px
}

.home-2 .top-seller-item {
    background: var(--body-bg);
    box-shadow: none;
    margin: 0;
    transition: var(--transition)
}

.home-2 .top-seller-item::before {
    content: "";
    position: absolute;
    inset: -3px;
    background: var(--theme-gradient);
    border-radius: 50px;
    transition: var(--transition);
    transform: rotate(1deg);
    z-index: -1
}

.home-2 .top-seller-item:hover::before {
    transform: rotate(0deg)
}

.home-2 .explore-category-sort .btn,
.home-2 .explore-category a {
    position: relative;
    border: none
}

.home-2 .explore-category-sort .btn::before,
.home-2 .explore-category a::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: var(--theme-gradient);
    border-radius: 50px;
    transition: var(--transition);
    z-index: -1
}

.home-2 .explore-category a:hover,
.home-2 .explore-category a.active {
    background: var(--theme-gradient)
}

.home-2 .collection-item {
    position: relative
}

.home-2 .collection-item::before {
    content: "";
    position: absolute;
    inset: -3px;
    background: var(--theme-gradient);
    border-radius: 15px;
    transition: var(--transition);
    transform: rotate(1deg);
    z-index: -1
}

.home-2 .collection-item:hover::before {
    transform: rotate(0deg)
}

.home-2 .process-item::before {
    content: "";
    position: absolute;
    inset: -3px;
    background: var(--theme-gradient);
    border-radius: 20px;
    transform: rotate(1deg);
    transition: var(--transition);
    z-index: -1
}

.home-2 .process-item:hover::before {
    transform: rotate(0deg)
}

.home-2 #scroll-top,
.home-2 .blog-date {
    background: var(--theme-gradient)
}

.home-2 .footer-widget-title::before,
.home-2 .footer-widget-title::after {
    background: var(--theme-gradient)
}

.home-2 .footer-area {
    overflow: hidden
}

.home-2 .footer-area .subscribe-form .form-control {
    border-color: var(--theme-color)
}

.home-2 .footer-social li a i {
    color: var(--color-white);
    background: var(--theme-gradient)
}

.home-2 .footer-area .shape .shape-3,
.home-2 .footer-area .shape .shape-2,
.home-2 .footer-area .shape .shape-1 {
    opacity: .6
}

@media all and (min-width:992px) {
    .home-2 .nav-right-link {
        background: var(--theme-gradient);
        color: var(--color-white) !important
    }
}

@media(max-width:1199px) {
    .home-3 .explore-area .site-heading-inline {
        justify-content: space-between;
        flex-direction: unset
    }
}

.home-4 .main-content {
    position: relative
}

.home-4 .main-sidebar {
    width: 280px;
    height: 100vh;
    background: var(--footer-bg);
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1
}

.home-4 .main-sidebar-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 35px;
    height: 35px;
    color: var(--body-text-color);
    text-align: center;
    font-size: 28px;
    transition: var(--transition);
    display: none
}

.home-4 .main-sidebar-close:hover {
    color: var(--color-danger)
}

.home-4 .main-sidebar::-webkit-scrollbar {
    width: 4px
}

.home-4 .main-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 162, 254, .2)
}

.home-4 .main-sidebar::-webkit-scrollbar-thumb {
    background: var(--theme-color)
}

.home-4 .main-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--color-danger)
}

.home-4 .main-sidebar .logo {
    margin-bottom: 40px
}

.home-4 .main-sidebar .menu-list li a {
    color: var(--heading-color);
    font-weight: 500;
    padding: 6px 0
}

.home-4 .main-sidebar .menu-list li a:hover {
    color: var(--theme-color)
}

.home-4 .main-sidebar .menu-list li a i {
    background: var(--theme-color);
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: var(--theme-color);
    color: var(--color-white);
    border-radius: 10px;
    text-align: center;
    margin-right: 5px
}

.home-4 .main-sidebar .menu-list li a:hover i {
    background: var(--color-danger)
}

.home-4 .main-sidebar .divider-text {
    color: var(--body-text-color);
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0
}

.home-4 .main-sidebar .work-process {
    text-align: center;
    background: var(--theme-bg2);
    border-radius: 10px;
    padding: 10px 10px 20px;
    margin-top: 35px
}

.home-4 .main-sidebar .work-process img {
    width: 120px
}

.home-4 .main-sidebar .work-process h4 {
    color: var(--heading-color);
    font-size: 18px;
    margin-bottom: 20px
}

.home-4 .main-sidebar .work-process .theme-btn {
    padding: 5px 20px;
    border-radius: 50px
}

.home-4 .main-content-wrap {
    margin-left: 280px;
    padding: 0 20px
}

.home-4 .main-content .header-top {
    position: relative;
    padding: 15px 0
}

.home-4 .main-content .header-top {
    display: flex;
    justify-content: space-between
}

.home-4 .header-top .color-mode .dark-btn {
    display: none
}

.home-4 .header-top .menu-bar {
    display: none
}

.home-4 .explore-category .filter-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.home-4 .explore-category .filter-btn button {
    background: var(--theme-bg);
    color: var(--heading-color);
    border-radius: 10px;
    padding: 4px 12px;
    box-shadow: var(--box-shadow);
    border: none
}

.home-4 .explore-category .filter-btn button i {
    margin-right: 5px
}

.home-4 .explore-category .filter-btn li.active button {
    background: var(--theme-color);
    color: var(--color-white)
}

.home-4 .activity-sort {
    min-width: 180px
}

.home-4 .collection-item {
    padding: 15px
}

.home-4 .author-wrap .author-cover img {
    height: 140px
}

.home-4 #scroll-top.active {
    bottom: 30px
}

@media all and (max-width:991px) {
    .home-4 .header-top .menu-bar {
        display: block
    }
    .home-4 .main {
        margin-top: .5rem
    }
    .home-4 .main-sidebar {
        box-shadow: var(--box-shadow);
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition2);
        left: -150px
    }
    .home-4 .main-sidebar.active {
        opacity: 1;
        visibility: visible;
        left: 0
    }
    .home-4 .main-sidebar-close {
        display: block
    }
    .home-4 .main-content-wrap {
        margin-left: 0
    }
    .home-4 .nav-right {
        display: flex
    }
}

@media all and (max-width:767px) {
    .home-4 .main-content .header-top {
        flex-direction: column;
        gap: 20px
    }
}

.home-5 .main-category2 {
    background: var(--footer-bg)
}

.home-5 .main-category2 .category-item {
    background: var(--theme-bg2)
}

.home-5 .top-seller {
    background: var(--footer-bg)
}

.home-5 .top-seller .top-seller-item {
    background: var(--theme-bg2);
    border: none
}

.home-5 .process-item {
    overflow: hidden;
    z-index: 1
}

.home-5 .process-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 120px;
    background: var(--theme-color);
    filter: blur(50px);
    transition: var(--transition);
    z-index: -1
}

.home-5 .process-item:hover::before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.home-5 .footer-social li a i {
    background: var(--color-white);
    border: 1px solid var(--border-info-color);
    line-height: 37px
}

.home-5 .footer-social li a i:hover {
    background: var(--theme-color)
}

.home-6 .main {
    margin-top: -6rem
}

.home-6 .navbar.fixed-top {
    background: var(--theme-bg);}

.home-6 .navbar-toggler-mobile-icon,
.home-6 .mobile-menu-right .nav-right-link {
    color: var(--color-white)
}

.home-6 .main-category .category-item {
    background: 0 0
}

.home-6 .main-category .category-item:hover {
    transform: translateY(-5px)
}

.home-6 .top-seller-item {
    border: 1px solid var(--border-info-color)
}

.home-6 .newsletter-wrap {
    border: 1px solid var(--border-info-color);
    box-shadow: none
}

.home-6 .process-item {
    background: 0 0;
    border: 1px solid var(--border-info-color);
    box-shadow: none
}

.home-6 .blog-item {
    background: 0 0;
    border: 1px solid var(--border-info-color);
    padding: 15px;
    box-shadow: none
}

.home-6 #scroll-top.active {
    bottom: 30px
}

.home-6 .footer-area {
    background: var(--theme-bg);}

.home-6 .footer-widget-title,
.home-6 .footer-list li a,
.home-6 .footer-language .language,
.home-6 .footer-widget-box p {
    color: var(--color-white)
}

.home-6 .footer-list li a:hover {
    color: var(--theme-color)
}

.home-6 .copyright .footer-menu li a,
.home-6 .copyright .copyright-text {
    color: var(--color-white)
}

.home-6 .copyright .footer-menu li a:hover {
    color: var(--theme-color)
}

.home-6 .subscribe-form .theme-btn {
    width: 100%
}

@media all and (min-width:992px) {
    .home-6 .navbar .nav-item .nav-link {
        color: var(--color-white)
    }
    .home-6 .nav-right-link {
        color: var(--color-white);
        background: #11325d
    }
}

@media all and (max-width:991px) {
    .home-6 .main {
        margin-top: 0
    }
}

.home-7 .main {
    margin-top: -6rem
}

.home-7 .video-wrapper {
    height: 480px;
    border-radius: 20px
}

.home-7 .video-content::before {
    border-radius: 16px
}

.home-7 .process-area .shape .shape-1 {
    left: -100px;
    opacity: .8
}

.home-7 .main-category .shape .shape-3 {
    right: -100px;
    bottom: -20px;
    opacity: .7
}

.home-7 .collection .shape .shape-1 {
    top: unset;
    left: -100px;
    bottom: -20px;
    background: #8358ff;
    opacity: .8
}

.home-7 .live-auction {
    position: relative
}

.home-7 .live-auction .shape .shape-3 {
    background: #00a3ff;
    right: -100px;
    bottom: -20px;
    opacity: .7
}

.home-7 .explore-area .shape .shape-1 {
    top: 25%;
    left: -100px;
    opacity: .7
}

.home-7 .blog-area .shape .shape-3 {
    top: 10%;
    bottom: unset;
    opacity: .6
}

.home-7 .cta-area .shape .shape-1 {
    top: unset;
    bottom: 0;
    opacity: .8
}

.home-7 .top-seller-item {
    margin-bottom: 0;
    border: 1px solid var(--border-info-color);
    box-shadow: none
}

.home-7 .blog-item {
    padding: 18px
}

.home-7 #scroll-top.active {
    bottom: 30px
}

.home-8 .navbar {
    border-bottom: none
}

.home-8 .main-category .category-item {
    background: 0 0;
    transition: none
}

.home-8 .item-3 .item:hover {
    outline: 2px solid var(--theme-color)
}

.home-8 .item-3 .explore-slider.owl-carousel .owl-item {
    padding: 2px
}

.home-8 .main-category .category-item:hover {
    outline: 2px solid var(--theme-color)
}

.home-8 .collection2 .collection-item:hover {
    outline: 2px solid var(--theme-color)
}

.home-8 .collection2 .collection-slider.owl-carousel .owl-item {
    padding: 2px
}

.home-8 .author-sort {
    background: 0 0;
    border: 1px solid var(--border-info-color);
    box-shadow: none
}

.home-8 .author-wrap .author-item {
    background: 0 0;
    border: 1px solid var(--border-info-color);
    box-shadow: none
}

.home-8 .author-wrap .author-item:hover {
    outline: 2px solid var(--theme-color)
}

.home-8 .team-item {
    background: 0 0;
    border: 1px solid var(--border-info-color);
    transition: none
}

.home-8 .team-item:hover {
    outline: 2px solid var(--theme-color)
}

.home-8 .team-info {
    background: var(--body-bg)
}

.home-8 .testimonial-item {
    background: var(--body-bg)
}

.home-8 .testimonial-item:hover {
    outline: 2px solid var(--theme-color)
}

.home-8 .process-item {
    background: 0 0;
    border: 1px solid var(--border-info-color);
    box-shadow: none
}

.home-8 .process-item:hover {
    outline: 2px solid var(--theme-color)
}

.home-8 .process-content p {
    color: var(--body-text-color)
}

.home-8 .blog-item {
    background: 0 0;
    border: 1px solid var(--border-info-color);
    box-shadow: none
}

.home-8 .blog-item:hover {
    outline: 2px solid var(--theme-color)
}

.home-8 .subscribe-form .form-control {
    border: 1px solid var(--border-info-color)
}

.home-8 .subscribe-form .form-control:focus {
    border-color: var(--theme-color)
}

.home-8 .subscribe-form .theme-btn {
    width: 100%
}

.home-8 .footer-social li a i {
    line-height: 37px;
    border: 1px solid var(--border-info-color)
}

.home-9 .navbar {
    background: var(--theme-bg);
    border-bottom: 0
}

.home-9 .hero-single {
    background-image: url(../img/hero/hero-bg-2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

.home-9 .hero-single::before {
    content: "";
    position: absolute;
    background: rgba(10, 39, 83, .4);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

.home-9 .hero-single .hero-content p,
.home-9 .hero-single .hero-content .hero-title {
    color: var(--color-white)
}

.home-9 .hero-single .hero-content .hero-title span {
    -webkit-text-stroke: 2px var(--color-white)
}

.home-9 .explore-area {
    background: var(--footer-bg)
}

.home-9 .explore-area .item {
    background: var(--theme-bg2)
}

.home-9 .explore-area .item-option .dropdown-menu {
    border: 1px solid var(--border-info-color)
}

.home-9 .explore-slider.owl-carousel .owl-nav {
    position: unset
}

.home-9 .explore-slider.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -20px
}

.home-9 .explore-slider.owl-carousel .owl-nav button.owl-next {
    right: 0
}

.home-9 .top-seller-item {
    background: var(--theme-bg);
    border-radius: 15px
}

.home-9 .collection {
    background: var(--footer-bg)
}

.home-9 .collection-item {
    background: var(--theme-bg2);
    box-shadow: none
}

.home-9 .collection-slider.owl-carousel .owl-nav {
    position: unset
}

.home-9 .collection-slider.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -10px
}

.home-9 .collection-slider.owl-carousel .owl-nav button.owl-next {
    right: 0
}

.home-9 .category-item {
    background: var(--theme-bg);
    border: none;
    box-shadow: var(--box-shadow)
}

.home-10 .navbar {
    background: var(--theme-bg);
    border-bottom: 0
}

.home-10 .site-heading p {
    font-size: 18px
}

.home-10 .explore-area .marquee-wrap .item {
    padding: 0;
    background: 0 0;
    margin-bottom: 0
}

.home-10 .explore-area .marquee-wrap {
    gap: 5px
}

.home-10 .explore-area .marquee-item {
    width: 150px
}

.home-10 .explore-category .filter-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px
}

.home-10 .explore-category .filter-btn button {
    background: var(--theme-bg);
    color: var(--heading-color);
    border-radius: 10px;
    padding: 4px 12px;
    box-shadow: var(--box-shadow);
    border: none
}

.home-10 .explore-category .filter-btn button i {
    margin-right: 5px
}

.home-10 .explore-category .filter-btn li.active button {
    background: var(--theme-color);
    color: var(--color-white)
}

.home-10 .copyright {
    padding: 25px 0;
    border-top: none;
    background: var(--body-bg)
}

.home-11 .navbar.fixed-top {
    border: none;
    background: var(--theme-bg);}

.home-11 .navbar .dropdown-menu {
    background: var(--theme-bg2)
}

.home-11 .nav-right-search .form-group .form-control {
    background-color: var(--border-info-color);
    color: var(--color-white)
}

.home-11 .nav-right-search .form-group button,
.home-11 .nav-right-search .form-group .form-control::placeholder {
    color: var(--color-white)
}

.home-11 .main {
    margin-top: -6rem
}

.home-11 #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 100px
}

.home-11 .hero-single {
    padding-top: 170px;
    overflow: hidden
}

.home-11 .hero-single::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, .6);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

.home-11 .hero-single .hero-content .hero-sub-title {
    color: var(--theme-color)
}

.home-11 .hero-single .hero-content p,
.home-11 .hero-single .hero-content .hero-title {
    color: var(--color-white)
}

.home-11 .hero-single .hero-content .hero-title b {
    font-weight: 600;
    color: var(--theme-color)
}

.home-11 .hero-img {
    position: relative;
    z-index: 1
}

.home-11 .footer-area {
    background: var(--theme-bg);}

.home-11 .footer-widget-title,
.home-11 .footer-list li a,
.home-11 .footer-language .language,
.home-11 .footer-widget-box p {
    color: var(--color-white)
}

.home-11 .footer-list li a:hover {
    color: var(--theme-color)
}

.home-11 .copyright .footer-menu li a,
.home-11 .copyright .copyright-text {
    color: var(--color-white)
}

.home-11 .copyright .footer-menu li a:hover {
    color: var(--theme-color)
}

@media all and (min-width:992px) {
    .home-11 .navbar .nav-item .nav-link {
        color: var(--color-white)
    }
    .home-11 .nav-right-link {
        background-color: var(--border-info-color);
        color: var(--color-white)
    }
}

@media all and (max-width:991px) {
    .home-11 .main {
        margin-top: 0
    }
    .home-11 .navbar-toggler-mobile-icon,
    .home-11 .nav-right-link {
        color: var(--color-white)
    }
}

.related-products .woocommerce-Tabs-panel h2{ color:var(--heading-color); }
.related-products .product-notice{ padding-bottom:30px; }
.related-products .product-notice h2{ color:var(--heading-color); }
.related-products .product-notice p a{ color: var(--theme-blue); }
.page-id-202 .innerPage{ padding:30px 0 45px 0; }
.page-id-202 .innerPage .text p a{ color: var(--theme-blue); }






.about-area .about-right p{ padding-bottom:15px; color:var(--heading-color); }
.contact-form .form-group small{ display:block; line-height:1.1; padding-bottom:5px; min-height:36px; }

.live-auction .item-wrap .item .item-content .item-title{ text-align:center; }
/*.theme-mode-variables .live-auction .item-wrap .item .item-content .item-title a{ color:var(--theme-bg); }*/

.header .navbar .email-address a{ font-size:15px; font-weight:500; color:var(--heading-color); margin-right:20px; transition:var(--transition); display:flex; align-items:center; gap:10px; }
.header .navbar .email-address a i{ padding:0; font-size:20px; text-align:center; color:var(--heading-color); border:none; transition:var(--transition); }
.header .navbar .email-address a:hover i{ color:var(--theme-color); }
.header .navbar .email-address a:hover{ color:var(--theme-color); }




.wc-block-grid__product .wc-block-grid__product-title, 
.woocommerce ul.products li.product .woocommerce-loop-product__title{ color:var(--heading-color); font-size:20px; }


.wc-block-grid__product .wc-block-grid__product-price, 
.woocommerce ul.products li.product .price{ color:var(--theme-blue) !important; font-size:19px; }

.wc-block-grid__products{ justify-content:space-between; gap:10px; }
.wc-block-grid__product.wc-block-grid__product{ padding:15px; background:var(--theme-bg); border-radius:20px; flex:1 0 24% !important; max-width:24% !important; }


.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link{ background:var(--theme-color); padding:.418em 1em; color:#fff; font-size:18px !important; font-weight:700; border-radius:3px; }




.wc-block-grid .wc-block-grid__product .wc-block-grid__product-onsale{ position:absolute; top:0; right:0; left:auto; margin:-1.7em -1.7em 0 0; background-color:#E5262B; font-size:.857em; font-weight:400; z-index:9; aspect-ratio:1; line-height:4; border-radius:100%; color:#fff; text-align:center; min-height:4.236em; min-width:4.236em; padding:.202em; }


.wp-block-woocommerce-cart .wp-block-heading{ color:var(--heading-color); padding-bottom:25px; }


.product-summary .product-price{ padding-bottom:15px; }
.product-summary .product-price .price{ color:var(--theme-blue) !important; font-size:35px !important; }


.product-summary .product-description{ padding-bottom:20px; }
.product-summary .product-purchase .single_add_to_cart_button{ background-color:#00A3FF !important; height:42px; font-size:18px; font-weight:400; text-transform:capitalize; background: var(--theme-color) !important; margin-top:10px; padding:.618em 1.2em !important; }
.woocommerce div.product p.stock{ color: var(--body-text-color) !important; }

.woocommerce #reviews #comments h2{ color:var(--heading-color); }
.related-products .related.products h2{ color:var(--heading-color); padding-bottom:20px; }
.woocommerce-Reviews .form-submit .submit{ background-color:#00A3FF !important; font-size:14px !important; font-weight:400 !important; text-transform:capitalize; color:#fff !important; }

.woocommerce-cart .innerPage{ padding-bottom:110px; }


.archive .content-area{ max-width:1800px; margin:0 auto; padding:0 15px; }
.archive .content-area .woocommerce-products-header h1{ color:var(--heading-color); padding-bottom:15px; padding-top:30px; }


.single-product .product-wrapper .product-image .flex-viewport .woocommerce-product-gallery__image a{ width:100%; }


.envira-gallery-captioned-data .envira-title{ color:var(--theme-blue); }
.gallery-image .envira-gallery-wrap .envira-gallery-item .envira-gallery-item-inner{ border:1px solid var(--heading-color); padding-bottom:10px; }





.custom-gallery-section{ margin:0; padding:70px 0; }
.custom-gallery-section .big-block{ margin:0 0 40px 0; padding:0; }
.custom-gallery-section .big-block .thumb-img{ margin:0; padding:0; }
.custom-gallery-section .big-block .thumbnail-img{ margin:0 0 10px 0; padding:0; }
.custom-gallery-section .big-block .thumbnail-img a{ border-radius:10px; overflow:hidden; cursor: pointer; padding:8px; border-radius:18px; border:2px solid var(--theme-blue); height:480px; width:100%; }
.custom-gallery-section .big-block .thumbnail-img a img{ height:100%; line-height:0; width:100%; object-fit:cover; }

.custom-gallery-section .big-block .slider-imgs a{ border-radius:10px; overflow:hidden; cursor: pointer; padding:8px; border-radius:18px; border:2px solid var(--theme-blue); }
.custom-gallery-section .big-block img{ border-radius:18px; }
.item-single-content .content-top p{ color:var(--heading-color); padding:25px 0 10px 0; }

.custom-gallery-section .big-block:nth-child(even) .row{ flex-direction:row-reverse; }
.custom-gallery-section .item-single-content .content-top{ border-bottom:none; }

.custom-gallery-section .item-single-content .content-top .title { color:var(--theme-color); }


/*.faq-area .accordion-button[type="button"]:not(:disabled){ color:#fff; }*/

.faq-area .accordion-button[aria-expanded="true"]{ color:var(--theme-color); }

.majc-main-inner-wrapper .majc-cart-popup.active .majc-cart-popup-inner .majc-body .majc-cart-item-wrap .majc-mini-cart{ height:260px; overflow-x:auto; }


.woocommerce-error{ background-color:var(--heading-color) !important; }
.woocommerce-error li{ color:#00A3FF !important; padding-bottom:10px; }
.woocommerce-error li .button{ float:initial !important; background:var(--theme-color); color:#fff; }

.woocommerce-message{ border-top-color:var(--theme-color) !important; background-color:var(--heading-color) !important; }
.woocommerce-message .button{ background:var(--theme-color) !important; color:#fff; }
.woocommerce-message::before{ color:var(--theme-color) !important; }
.majc-cart-popup .majc-cart-popup-inner .majc-coupon{ margin-bottom:10px !important; padding:6px !important; }
.majc-cart-popup .majc-cart-popup-inner .majc-buy-summary{ margin-bottom:10px !important; padding:6px !important; }
.majc-cart-popup .majc-cart-popup-inner .majc-buy-summary > div{ margin-bottom:7px !important; padding:0 0 7px !important; font-size:15px; }

.woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control-accordion-option.wc-block-components-radio-control-accordion-option--checked-option-highlighted{ box-shadow:inset 0 0 0 1px #253c5c !important; border-radius:4px; padding:5px; }
.woocommerce-checkout .wc-block-components-radio-control--highlight-checked div.wc-block-components-radio-control-accordion-option{ background:var(--body-text-color); margin:5px; border-radius:4px; padding:5px; }








/*.currency-converter-custom{ margin:0; padding:0; position:fixed; right:10px; top:90px; z-index:9999; }*/

.currency-converter-custom .selectron23-option .selectron23-option-title{ line-height:33px; }
.currency-converter-custom .selectron23-option{ display:flex; align-items:center; justify-content:space-between; padding:5px !important; }
.currency-converter-custom .selectron23-option img{ width:34px; height:auto !important; order:2; margin:0 !important; border:1px solid rgba(255, 255, 255, .2); }

.currency-converter-custom span[data-pointer="1"]{ display:none; }
.currency-converter-custom .selectron23-container{ border:none; border-radius:4px !important; }


.currency-converter-custom > div{ height:41px; padding-left:5px; }

.currency-converter-custom.mobile{ display:none; }


.selectron23-container .selectron23-option{ background:var(--theme-bg-light) !important; }
.currency-converter-custom .selectron23-option .selectron23-option-title{ color:var(--heading-color) !important; }



footer.footer-area{ margin-bottom:43px; }
footer.footer-area .copyright{ padding-bottom:2px; }
footer.footer-area:after{ content:""; position:absolute; width:100%; height:43px; background:var(--footer-bg); left:0; bottom:-43px; }









/*@media screen and (min-width: 1499px) { 
    .container{ max-width:1270px; }
}*/


@media all and (max-width:1399px) {
.nav-right-link{ width:36px; height:36px; line-height:31px; }
.nav-right-link i{ font-size:15px; }
.navbar .nav-item .nav-link{ margin-right:11px; }
.px-xl-5{ padding:0 !important; }
/*.nav-right-link{ width:38px; height:38px; }*/






	
}

@media all and (max-width:991px) {
.wc-block-grid__product.wc-block-grid__product{ flex:1 0 48% !important; max-width:48% !important; padding: 15px !important; }
.custom-gallery-section .big-block:nth-child(2n) .row{ flex-direction:initial; }
.currency-converter-custom.mobile{ display:block; }


}

@media all and (max-width:768px) {
.custom-gallery-section .big-block .thumb-img .col-lg-3.col-md-4{ width:33.33%; }




}

@media all and (max-width:575px) {
.single-product .product-wrapper{ flex-direction:column; }
.single-product .product-wrapper .product-image{ width:100%; }
.single-product .product-wrapper .product-summary{ width:100%; }
.single-product .product-wrapper .product-summary .product-title{ font-size:28px; margin-bottom:10px; }

.majc-toggle-button .majc-cartbasket-toggle-btn{ width:54px; height:54px; }
.majc-toggle-button .majc-cartbasket-toggle-btn .majc-cartbasket-icon{ font-size:22px; }
.majc-toggle-button .majc-cartbasket-toggle-btn .majc-item-count-wrap{ width:20px; height:20px; }

.hero-single{ padding-top:20px; }
.site-title{ font-size:35px; }
.about-area .about-right p{ font-size:16px; }
.py-80{ padding:40px 0; }
.faq-area .accordion-body p{ font-size:15px; }
.py-100{ padding:50px 0; }


}


@media all and (max-width:500px) {
.woocommerce-checkout .wc-block-components-radio-control{ flex-direction:column; }
.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-checkout__order-notes{ padding-top:0 !important; margin-bottom:0 !important; }
.wc-block-grid__product.wc-block-grid__product{ flex:1 0 100% !important; max-width:100% !important; margin-bottom:30px; }
.custom-gallery-section .big-block .slider-imgs a{ padding:4px; border-radius:8px; }
.custom-gallery-section .big-block .slider-imgs a img{  border-radius:8px; }

.woocommerce ul.products[class*="columns-"] li.product{ width:100%; }



}

@media all and (max-width:450px) {
.custom-gallery-section .big-block .thumbnail-img a{ height:380px; }

}

@media all and (max-width:400px) {
.custom-gallery-section .big-block .thumbnail-img a{ height:330px; }

}

.majc-item-qty { display:none !important}