/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"); */
/* LineIcons.css moved to a deferred <link> in component/header.php - a CSS
   @import here forced the browser to fetch it serially AFTER style.css,
   which was the single biggest contributor to this page's render-blocking
   / LCP delay (PageSpeed: ~2.5-3.3s critical-path latency through this
   chain). Loading it as its own preloaded/deferred stylesheet lets it
   download in parallel instead of blocking. */

:root {
    --colorPrimary: #002424;
    --colorSecondary: #b5ffe6;
    --PrimaryBgColor: #14142b;
    --SecondaryBgColor: rgba(150, 247, 210, 0.12);
    --buttonPrimary: #002424;
    --buttonSecondary: rgba(255, 255, 255, 0.5);
    --bs-dark: #000f14;
    --bs-danger: #f5587b;
    --bs-primary: #002424;
    --bs-light: #f7f7fc;
    --bs-white: #fcfcfc;
    --bs-info: #0576f0;
    --bs-warning: #F0F9BE;
    --bs-warning-rgb: 240, 249, 190;
    --bs-light-rgb: 247, 247, 252;
    --bs-danger-rgb: 245, 88, 123;
    --bs-dark-rgb: 0, 15, 20;
    --bs-white-rgb: 252, 252, 252;
    --bs-info-rgb: 5, 118, 240;
}

/* ::selection {
    background-color: #ffcc00;
    color: #000;
} */

body {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 24px;
    color: #14142b;
    padding: 0 !important;
}

html {
    /* overflow-x moved to targeted sections to allow native position:sticky */
}

/* Sections with sliders or wide animations — contain horizontal overflow surgically
   instead of blanketing body/html (which breaks position:sticky) */
.herov2,
section.bg-img-2,
section.herov5,
section.testimonial,
.slick-slider,
.success-slider {
    overflow-x: hidden;
}

@font-face {
    font-family: "Material Symbols Outlined";
    font-style: normal;
    font-weight: 300;
    /* font-display: optional (was "swap") - same fix as the Poppins font in
       component/header.php. This icon font's fallback render is the raw
       ligature name ("chevron_right" etc.) at a very different width than
       the 24px icon glyph, so a late swap after first paint moves anything
       next to it. "optional" lets the browser wait ~100ms for it and commit
       once, instead of swapping whenever the file happens to finish. */
    font-display: block;
    src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v88/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDDxHOej.woff2) format("woff2");
}

.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

/* section, footer {
    max-width: 1540px;
    margin: 0 auto;
} */

h1 {
    font-size: 52px;
    line-height: 64px;
}

h2 {
    font-size: 48px;
    line-height: 64px;
}

h3 {
    font-size: 36px;
    line-height: 48px;
}

h5 {
    font-size: 20px;
    line-height: 28px;
}

h4 {
    font-size: 24px;
    line-height: 32px;
}

h6 {
    font-size: 15px;
    line-height: 24px;
}

hr {
    background-color: rgba(0, 0, 0, 0.26);
}

.text-primary {
    color: var(--colorPrimary) !important;
}

.text-secondary {
    color: var(--colorSecondary) !important;
}

/* letter spacing */
.ls-05 {
    letter-spacing: 0.5px;
}

.ls-25 {
    letter-spacing: 0.25px;
}

/* font sizes  */
.font-10 {
    font-size: 10px;
}

.font-11 {
    font-size: 11px;
}

.font-12 {
    font-size: 12px;
}

.font-13 {
    font-size: 13px !important;
}

.font-14 {
    font-size: 14px;
}

.font-15 {
    font-size: 15px;
}

.font-16 {
    font-size: 16px !important;
}

.font-18 {
    font-size: 18px;
}

.font-36 {
    font-size: 36px;
    line-height: 46px;
}

.font-20 {
    font-size: 20px;
    line-height: 28px;
}

.font-22 {
    font-size: 22px;
}

.font-24 {
    font-size: 24px;
    line-height: 32px;
}

.font-32 {
    font-size: 32px;
    line-height: 48px;
}

.font-40 {
    font-size: 40px;
    line-height: 50px;
}

.font-48 {
    font-size: 48px;
    line-height: 58px;
}

.font-60 {
    font-size: 60px;
    line-height: 72px;
}

.font-100 {
    font-size: 100px;
    line-height: 90px;
}

.lh-30 {
    line-height: 30px;
}

.mb-2-5 {
    margin-bottom: 0.75rem !important;
}

.mb-3-5 {
    margin-bottom: 1.25rem !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.link-info {
    color: #005bd4;
    transition: 300ms ease-in-out all;
}

.link-info:focus,
.link-info:hover {
    color: #005bd4;
    text-decoration: underline;
}

.border-primary {
    border-color: var(--bs-primary) !important;
}

.font-italic {
    font-style: italic;
}

.text-gradient {
    background: -webkit-linear-gradient(rgba(197, 255, 170, 1),
            rgba(0, 186, 198, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-1 {
    background: -webkit-linear-gradient(95.08deg,
            #945bf1 2.49%,
            #bb48bf 47.37%,
            #f67e4d 97.19%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-2 {
    background: linear-gradient(95deg, #3fa53c 2.49%, #006cd0 97.19%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-grayscale {
    color: rgba(78, 75, 102, 1);
}

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

.fw-500 {
    font-weight: 500;
}

.fw-bolder {
    font-weight: 800 !important;
}

.rounded-8 {
    border-radius: 8px !important;
}

.fixed-top {
    padding: 0 !important;
}

.mid-nav .nav-item .nav-link {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

.mid-nav .nav-item .nav-link img {
    width: 74px;
    height: 36px;
}

.mid-nav .nav-item .nav-link:hover {
    background: #dfdfdf;
}

a,
.nav-link {
    color: #0a0a0a;
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--bs-primary);
    border-radius: 8px;
}

a:hover,
.nav-link:hover {
    color: var(--colorPrimary);
}

.active,
a.active {
    color: var(--colorPrimary);
    /* font-weight: 700; */
}

.nav-link:focus,
.nav-link:hover {
    color: var(--colorPrimary);
}

.navbar-brand img {
    height: 36px;
}

/* Navbar responsive */
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: 0;
    box-shadow: none;
}

.navbar-toggler {
    height: 45px;
    position: relative;
}

.navbar-toggler span {
    display: block;
    background-color: #000;
    height: 2px;
    width: 25px;
    margin-top: 6px;
    margin-bottom: 4px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    position: relative;
    opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
    -webkit-transition: transform 0.35s ease-in-out;
    -moz-transition: transform 0.35s ease-in-out;
    -o-transition: transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    position: absolute;
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    visibility: hidden;
    background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    position: absolute;
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    opacity: 0.9;
}

.dropdown-toggle::after {
    content: "\eb27";
    display: inline-block;
    font: normal normal normal 1.2em/1 "LineIconsPro Regular";
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border: none;
    vertical-align: 0;
    margin-left: 6px;
    font-size: 10px;
    font-weight: 900;
}

th {
    font-weight: 400;
}

.object-contain {
    object-fit: contain;
}

.text-p {
    color: #4e4b66;
}

.text-grey4 {
    color: #3E3E51;
}

.text-info2 {
    color: #0079FF;
}

.text-green-4 {
    color: #101828;
}

/* ------------------- New navigation CSS START ------------------- */

.wsmain {
    padding: 0 15px;
    max-width: 1320px;
}

.smllogo {
    width: auto;
    padding: 5px 0;
}

.smllogo img {
    width: 136px;
    height: 36px;
}

.wsmenu {
    width: 84%;
    border-left: 0px;
    float: right;
    font-size: 14px;
}

.wsmenu>.wsmenu-list>li {
    padding: 0;
    line-height: 0;
}

.wsmenu>.wsmenu-list>li>a {
    padding: 12px 14px 12px 14px;
    line-height: 22px;
    font-weight: 400;
    color: #fff;
}

.wsmenu>.wsmenu-list>li>.navtext::after {
    display: inline-block;
    font: normal normal normal 32px/1 "LineIconsPro Regular";
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb27";
    font-weight: 900;
    font-size: 9px;
    position: relative;
    right: -7px;
}

.wsmenu>.wsmenu-list>li>.wsshoptabing {
    top: 44px;
}

.wsmenu>.wsmenu-list>li>.wsmegamenu {
    top: 44px;
    padding: 4px 5px;
}

.wsmenu>.wsmenu-list>li:hover>a {
    /* background-color: #f5f5f5; */
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.wsmenu>.wsmenu-list>li>.wsshoptabing>.wsshopwp>.wstabitem>li>a {
    /* padding: 20px 11px; */
    font-size: 14px;
    color: #14142b;
    height: 100%;
    display: flex;
    align-items: center;
}

.wsmenu>.wsmenu-list>li>.wsshoptabing>.wsshopwp>.wstabitem>li.wsshoplink-active>a {
    background-color: #f5f5f5;
    border-left: 3px solid var(--bs-primary);
}

.wsmenu>.wsmenu-list>li>a {
    border-bottom-color: #eff0f7;
}

.img-menu a,
.img-menu a img {
    transition: 300ms ease-in-out all;
}

.img-menu a:hover {
    transform: scale(1.04);
}

.img-menu a:hover img {
    box-shadow: rgba(0, 36, 36, 1) 0px 0px 0px 0.5px;
}

/* ------------------------ New navigation CSS END ----------------------*/

.btn {
    border-radius: 12px;
    font-size: 15px;
    /* font-weight: 400; */
    /* min-width: 148px; */
    padding: 0.55rem 0.75rem;
}

.btn-warning {
    background-color: #F0F9BE;
    border-color: #14142B;
    color: #14142B;
    transition: 200ms ease-in-out all;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
    background-color: #F0F9BE;
    border-color: #14142B;
    transition: 200ms ease-in-out all;
    opacity: .9;
}

.btn-check:focus+.btn-warning,
.btn-warning:focus {
    color: #000;
    background-color: #F0F9BE;
    border-color: #F0F9BE;
    box-shadow: none;
}

.btn-check:active+.btn-outline-warning:focus,
.btn-check:checked+.btn-outline-warning:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus,
.btn-outline-warning:active:focus {
    box-shadow: none !important;
}

.btn-outline-warning:hover img {
    filter: invert(1);
}

.btn-dark {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.btn-outline-warning {
    color: #f0f9be;
    border-color: #f0f9be;
}

.btn-outline-warning:hover {
    color: #000;
    background-color: #f0f9be;
    border-color: #f0f9be;
}

.btn-check:focus+.btn-outline-warning,
.btn-outline-warning:focus {
    box-shadow: none;
}

.btn-light-green {
    color: #14142B;
    border-color: #CBFFAE;
    background-color: #CBFFAE;
    height: 46px;
}

.btn-light-green:hover {
    color: #14142B;
    background-color: #CBFFAE;
    border-color: #CBFFAE;
}

.btn-primary {
    background-color: var(--buttonPrimary);
    border-color: var(--buttonPrimary);
    transition: 200ms ease-in-out all;
    /* box-shadow: inset 2px 0px 2px #037368, 2px 0px 2px #037368, inset 0px -2px 2px #037368, inset 0px 2px 2px #037368; */
}

.btn-primary:hover,
.btn-primary.disabled,
.btn-primary:disabled {
    background-color: #023636 !important;
    border-color: #023636;
    color: #ffffff !important;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus,
.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
    background-color: #002424;
    border-color: #002424;
    box-shadow: 0 0 0 0.25rem rgba(0, 36, 36, 0.2);
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    background-color: rgba(0, 36, 36, 0.5);
    border-color: #e8fffd;
    box-shadow: 0 0 0 0.25rem rgba(0, 36, 36, 0.2);
}

.btn-secondary {
    background-color: var(--buttonSecondary);
    border-color: #037368;
    color: var(--colorPrimary);
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: #e8fffd;
}

.btn-check:active+.btn-secondary,
.btn-check:checked+.btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show>.btn-secondary.dropdown-toggle {
    background-color: #e8fffd;
    border-color: #e8fffd;
}

.btn-outline-primary {
    color: #14142b;
    border-color: #14142b;
    transition: 300ms ease-in-out all;
}

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active,
.btn-outline-primary:hover {
    border-color: #14142b;
    background-color: #14142b;
}

.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus,
.btn-check:active+.btn-outline-primary:focus,
.btn-check:checked+.btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
    box-shadow: 0 0 0 0.25rem rgba(3, 115, 104, 0.39);
}

.btn-transparent {
    background: rgba(255, 255, 255, 0.24);
}

.primary-bg {
    background-color: var(--PrimaryBgColor);
}

.secondary-bg {
    background-color: var(--SecondaryBgColor);
}

.align-middle.rotate180 span {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
}

section,
footer,
.container-fluid {
    /* max-width: 1530px;
    margin: 0 auto; */
    position: relative;
}

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

.m-top {
    margin-top: 0;
}

.card-box {
    -webkit-box-shadow: 0px 30px 20px 10px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 30px 20px 10px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 30px 20px 10px rgba(0, 0, 0, 0.03);
    border-radius: 14px;
    border: none;
    overflow: hidden;
    transition: 800ms ease-in-out all;
}

.card-box img {
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
    transition: 800ms ease-in-out all;
}

.card-box:hover img {
    transform: scale(1.2);
}

.card-box:hover h5 {
    color: var(--colorPrimary);
}

.bg-soon {
    background-color: #f5587b;
    border-radius: 100px;
}

.bg-soon-outline {
    border-color: #f5587b !important;
    color: #f5587b;
}

/* .badge {
    font-size: 9px;
    font-weight: 600;
} */

.form-switch .form-check-input {
    width: 4em;
    height: 2em;
    cursor: pointer;
    background-color: #e0e0e0;
    border-color: #e0e0e0;
}

.form-check-input,
.form-check-label {
    cursor: pointer;
}

.form-check-input[type="radio"] {
    padding: 9px;
    background-color: #d9dbe9;
    border-color: #d9dbe9;
}

.form-check-input:checked {
    background-color: var(--colorPrimary);
    border-color: var(--colorPrimary);
}

.form-check-input:focus {
    /* background-color: rgba(3, 115, 104, 0.01); */
    border-color: #e0e0e0;
    box-shadow: none;
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='%23ffffff'/></svg>");
}

.form-floating>.form-control,
.form-floating>.form-select,
.form-floating .form-control {
    height: calc(3.5rem + 0px);
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    opacity: 1;
    color: #6e7191;
}

.iti {
    width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
}

.iti__arrow {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #4e4b66;
}

.btwn-divinder {
    background: #ffffff;
    top: -12px;
    width: 50px;
    z-index: 1;
}

.form-control {
    color: #14142b;
    background-color: #eff0f7;
    border: 1px solid #eff0f7;
}

.form-select {
    border: 1px solid #eff0f7;
}

.breadcrumb-item+.breadcrumb-item::before {
    font-family: "LineIconsPro Regular";
    content: "\eb2b";
    font-size: 12px;
}

.breadcrumb-item a {
    font-size: 14px;
}

.breadcrumb-item.active {
    color: var(--PrimaryBgColor);
    font-weight: 600;
}

.tooltip>.tooltip-inner {
    font-size: 13px;
    text-transform: capitalize;
    background-color: #00407c;
}

.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #00407c;
}

.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #00407c;
}

.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #00407c;
}

.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before,
.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #00407c;
}

.nav-tabs .nav-link {
    margin-bottom: 0;
    border: none;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border: none;
    isolation: unset;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border: none;
    font-weight: 600;
    border-bottom: 2px solid var(--colorPrimary);
}

:focus-visible {
    outline: none;
}

/* ----------------------------- Home page Css ----------------------------- */

/* Home page Hero Section Start */
.hero-bnr {
    /* background-image: url("../images/hero-bg.png"); */
    background-image: url("../images/wave-bg.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    /* height: 360px; */
}

.hero-img {
    position: relative;
    top: 0;
}

/* .hero-img::before {
    content: url("../images/svg/vector.svg");
    position: absolute;
    right: 225px;
    top: -55px;
}

.hero-img::after {
    content: url("../images/svg/lightning.svg");
    position: absolute;
    right: 426px;
    top: 400px;
    z-index: -1;

} */

/* .warms::after {
    content: url("../images/svg/warm.svg");
    position: absolute;
    top: 255px;
    right: 0;
}

.warms::before {
    content: url("../images/svg/warm-2.svg");
    position: absolute;
    top: 358px;
    left: 0;
} */
.check-list {
    list-style-type: none;
    padding-inline-start: 12px;
}

.check-list li {
    list-style: none;
    position: relative;
}

.check-list li::before {
    content: "\ec50";
    display: inline-block;
    font: normal normal normal 1.2em/1 "LineIconsPro Regular";
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    font-weight: 900;
    color: #1e7b73;
    position: relative;
    right: 8px;
}

/* Home page Hero Section end */

/* Swagify is free section START */
.wave-line::before {
    content: url("../images/wave-line.svg");
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
}

/* Swagify is free section END */

/* Crafted and built for the winner in you START */
.card-bg-1 {
    background-color: #ebecfe;
}

.card-bg-2 {
    background-color: #eaf9de;
}

.card-bg-3 {
    background-color: #e3feff;
}

.card-bg-4 {
    background-color: #fff4eb;
}

.card-bg-5 {
    background-color: #ffecfc;
}

.card-bg-6 {
    background-color: #f2f0ff;
}

.card-bg-7 {
    background-color: #f7f3ea;
}

.card-bg-8 {
    background-color: #e0fff8;
}

/* Crafted and built for the winner in you END */

/* Integrate your account with the best e-com START */
.bg-grayscale {
    background-color: #f7f7fc;
}

.integrations {
    transition: 300ms ease-in-out all;
}

.integrations:hover {
    transform: scale(1.08);
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px; */
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

/* Integrate your account with the best e-com END */

/* Stories section START */
#storiescarousel .carousel-control-next,
#storiescarousel .carousel-control-prev {
    top: auto;
    bottom: 35px;
    width: 5%;
}

/* Stories section END */

/* blog posts START */
.tag-bg {
    background: #cbffae;
}

/* blog posts END */

/* why swagify POS START */
.why-swagify {
    background: url("../images/why-swagify-hero-banner.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}

.up-70 {
    margin-top: -70px;
}

.bg-teal {
    background-color: #005649;
}

.withshadow {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 26px;
    margin-right: 30px;
    box-shadow: -20px -20px 0px 0px rgb(0 133 122);
}

/* why swagify POS END */

/* Our Story START */
.story-hero {
    background-image: url("../images/story-hero.png");
    background-position: bottom;
    background-size: cover;
}

.ak-img {
    position: absolute;
}

/* Our Story END */

/* success stories START */
.success-bg {
    background-image: url("../images/real-people-bg.png");
    background-position: bottom;
    background-size: cover;
}

.play-button {
    position: relative;
    top: 20px;
    left: 10px;
}

.play-button .play-text {
    position: relative;
    top: 6px;
    left: 14px;
}

.video-play-button {
    position: relative;
    z-index: 10;
    top: 18px;
    left: -10px;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    width: 60px;
    height: 60px;
    background: #4e4b66;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    transform: translateX(-50%) translateY(-50%);
    width: 60px;
    height: 60px;
    background: #4e4b66;
    border-radius: 50%;
    transition: all 300ms ease-in-out;
}

.play-button:hover .video-play-button:after {
    background-color: #343450;
}

.video-play-button span {
    display: block;
    position: absolute;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 20px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    top: 1px;
    left: 22px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* success stories END */

/* affiliate START */
.affiliate-hero {
    background-image: url("../images/affiliate-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-gradient-gray {
    background: linear-gradient(95.08deg, #535664 2.49%, #202d3a 97.19%);
    box-shadow: 0px 60px 70px rgba(0, 0, 0, 0.08);
}

/* affiliate END */

/* footer START */
.bg-footer {
    background: url("../images/homev2/footer-bg.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.social-link a,
.social-link a img,
.footer-links li a {
    transition: 300ms ease-in-out all;
}

.social-link a img {
    filter: opacity(0.5);
}

.social-link a:hover img {
    filter: opacity(1);
}

.footer-links li a {
    color: var(--bs-light-rgb);
    line-height: 44px;
    opacity: 0.8;
    font-weight: 300;
}

.footer-links li a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-links li a.disabled {
    pointer-events: none;
    cursor: default;
    color: #6e7191;
}

.disabled {
    pointer-events: none;
    cursor: default;
    color: #6e7191;
}

/* footer END */

/* How it works START*/
/* .how-works {
    margin: 22% 0 0;
} */

.how-works::after {
    content: url("../images/svg/vector2.svg");
    position: absolute;
    top: 170px;
    left: 35px;
}

.brush-bg::after {
    display: inline-block;
    margin: -155px 0 8px 0;
    content: " ";
    text-shadow: none;
    background: url("../images/brush.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
}

/* How it works END */

/* A light yet powerful approach START */
.squre-bg {
    background-image: linear-gradient(to bottom, #ffffff00 95%, #f6f6f6 95%),
        linear-gradient(to right, #ffffff 95%, #f6f6f6 95%);
    background-size: 12px 20px, 20px 1px;
    border: 0.5px solid #f5f5f5;
    height: 540px;
    background-position: center;
    margin-top: 65px !important;
}

.brush2::after {
    display: inline-block;
    margin: -32px ​0 8px 0;
    content: " ";
    text-shadow: none;
    background: url("../images/svg/brush2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0%;
    top: 0;
}

.alight::after {
    content: url("../images/svg/vector3.svg");
    position: absolute;
    top: 410px;
    right: -20px;
}

.brush-large {
    background-image: url("../images/svg/brush-large.svg");
    background-position: center;
    background-repeat: no-repeat;
}

/* A light yet powerful approach END */

/* Integrations START */
.integrations-bg {
    background-image: url("../images/integrations-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 540px;
}

/* Integrations END */

/* Our Catalog START */
.card-img-top {
    max-height: 300px;
    object-fit: cover;
    object-position: top;
}

.brush2-bg::after {
    content: url("../images/svg/brush2.svg");
    position: absolute;
    left: 0;
    top: -35px;
    transform: rotate(12deg);
}

.our-catalog:hover img {
    border-radius: 12px;
    transition: 300ms ease-in-out all;
}

.our-catalog:hover {
    text-decoration: underline;
}

.our-catalog:hover img {
    -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.brush3::after {
    content: url("../images/svg/brush2.svg");
    position: absolute;
    left: -65px;
    top: -35px;
}

.dots::before {
    content: url("../images/svg/dots.svg");
    position: absolute;
    right: -35px;
    top: -90px;
}

/* New Catalog CSS START */
.catalog-card {
    position: relative;
    overflow: hidden;
}

.catalog-card img {
    transition: 300ms ease-in-out all;
}

.catalog-card:hover img {
    -webkit-box-shadow: 0px 1px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 1px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 30px 0px rgba(0, 0, 0, 0.1);
    transform: scale(1.01);
}

.catalog-card::after {
    content: "";
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 92%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.catalog-card h5 {
    position: relative;
    z-index: 1;
}

.trending-badge {
    color: #0041ac;
    background: #e3feff;
}

.bestseller-badge {
    color: #18bb0c;
    background: #eaf9de;
}

.bg-darknavy {
    background-image: url("../images/navy-bg.png");
    background-color: #14142a;
    height: 450px;
}

/* New Catalog CSS END */

/* Our Catalog END */

/* Successful ECOM Business start */
.zero-bg {
    background-image: url("../images/zero-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: auto;
}

.largetext {
    font-size: 72px;
    line-height: 72px;
}

.fulfill::before {
    content: url("../images/svg/ellipse-large.svg");
    position: absolute;
    right: -105px;
    top: -70px;
}

.fulfill::after {
    content: url("../images/svg/ellipse-small.svg");
    position: absolute;
    left: 0;
    top: 250px;
    z-index: -1;
}

/* Successful ECOM Business END */

/* Home page Css end */

/* Channels integrations CSS START */
.shopify-hero-bg {
    background-image: url("../images/shopify-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-royalblue {
    background: #001f53;
    box-shadow: 0px 60px 70px rgba(0, 0, 0, 0.08);
}

.bg-withplus {
    background-image: url("../images/icons/plus-sign.png");
    background-size: 15px;
    background-repeat: repeat;
}

/* Channels integrations CSS END */

/* FAQS Page CSS START */
.faq-hero {
    background-image: url("../images/faq-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-button {
    /* color: #14142B;
    font-weight: 400;
    border-radius: 16px; */
    background: #f7f7fc;
}

.faq-accordion.accordion-flush .accordion-item .accordion-button,
.faq-accordion.accordion-flush .accordion-item {
    border-radius: 8px;
    border-color: #f7f7fc !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
    /* background: #F7F7FC; */
    color: #14142b;
    /* font-weight: 600; */
}

/* .faq-accordion .accordion-body {
    padding-top: 0;
} */

/* FAQS Page CSS END */

/* Login Signup START */

.loginsignup::-webkit-scrollbar {
    display: none;
}

.loginsignup {
    -ms-overflow-style: none;
    /* IE and Edge */
    -webkit-scrollbar-width: none;
    scrollbar-width: none;
    /* Firefox */
}

.social-signup-btns .btn {
    background: #f7f7fc;
    padding: 12.2px;
    border-radius: 4px;
    transition: 300ms ease-in-out all;
}

.social-signup-btns .btn:hover {
    transform: scale(1.1);
    /* background: #f1f1f1; */
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
        rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

/* Login Signup END */

/* Catalog page CSS START */
.catalog-hero-bnr {
    /* background-image: url("../images/plus.jpg"); */
    background-repeat: repeat;
    background-position: center;
    background-size: 50px;
    background: linear-gradient(95.08deg, #535664 2.49%, #202d3a 97.19%);
}

.brush4::after {
    content: " ";
    display: inline-block;
    position: absolute;
    text-shadow: none;
    background: url("../images/brush.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
    top: -58px;
    left: -62px;
}

.categories .accordion-button:not(.collapsed) {
    color: #0a0a0a;
    background-color: transparent;
    box-shadow: none;
}

#FaqAccordion .accordion-button:not(.collapsed)::after {
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A0A0A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round' clip-rule='evenodd' viewBox='0 0 18 18'%3E%3Cpath fill='none' stroke='%2314142b' stroke-width='2' d='M9 9h0ZM1.5 9h15'/%3E%3C/svg%3E");
    transform: none;
}

#FaqAccordion .accordion-button::after {
    background-size: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 18 18'%3E%3Cpath stroke='%2314142B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 1.5v15M1.5 9h15'/%3E%3C/svg%3E");
}

.category-list {
    font-size: 15px;
    line-height: 30px;
}

/* .category-list a {
    font-weight: 400;
} */

.category-list a:hover {
    text-decoration: underline;
}

.cat-box,
.cat-box .cat-bg {
    position: relative;
    overflow: hidden;
    transition: 300ms ease-in-out all;
}

/* .cat-box:hover .cat-bg {
    -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
} */

.cat-box .cat-bg img {
    transition: 800ms ease-in-out all;
}

.cat-box:hover .cat-bg img {
    transform: scale(1.2);
    transition: 800ms ease-in-out all;
}

.cat-box:hover {
    text-decoration: underline;
}

.m-buttons {
    position: fixed;
    bottom: 0;
    background: #f0f7ff;
    z-index: 1055;
    /* padding: 10px; */
    -webkit-box-shadow: 0px 0 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0 10px 0px rgba(0, 0, 0, 0.2);
}

.lock-scroll {
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
}

.cat-bg-position {
    background-size: 100%;
    /* height: 480px; */
    background-position: center;
    background-repeat: no-repeat;
}

.mens-catalog-bnr {
    background-image: url("../images/mens-clothing-bnr.jpg");
}

.womens-catalog-bnr {
    background-image: url("../images/womens-clothing-bnr.jpg");
}

.kids-catalog-bnr {
    background-image: url("../images/kids-clothing.png");
}

.hats-catalog-bnr {
    background-image: url("../images/headwear.png");
}

.accessories-catalog-bnr {
    background-image: url("../images/accessories-bnr.jpg");
}

.hmliving-catalog-bnr {
    background-image: url("../images/home-living-bg.jpg");
}

.unisex-catalog-bnr {
    background-image: url("../images/unisex-clothing.png");
}

/* Catalog page CSS END */

/* Products list page css START */
/* Product colors list */
.coloropt {
    width: 28px;
    height: 28px;
    border-radius: 100px;
    border: 2px solid #edf2f7;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s linear 0s;
}

.coloropt+.coloropt {
    margin-left: calc(20 * -1px);
}

.colorbox:hover .coloropt+.coloropt {
    margin-left: calc(10 * -1px);
}

.productcard img {
    -webkit-animation: fade-in-bck 0.9s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-bck 0.9s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    /* max-height: 243px; */
    width: 100%;
    object-fit: contain;
}

.productcard h6 {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.productcard img+img {
    display: none;
    opacity: 0;
    transform: scale(0);
}

/* .productcard:hover img {
    display: none;
    opacity: 0;
    transform: scale(0);
} */

/* .productcard:hover img+img {
    display: block;
    opacity: 1;
    transform: scale(1);
} */

/* Products list page css END */

/* Product Detail page CSS START */
.productsizes span {
    height: 42px;
    max-width: 120px;
    border: 2px solid #eff0f7;
    background: #fcfcfc;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    margin-right: 4px;
    min-width: 42px;
    padding: 0 6px;
    transition: 300ms ease all;
}

.productsizes span:hover {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

/* .colors-radio {
    position: relative;
    margin-right: 10px;
    margin-top: 4px;
} */

/* .colors-radio label,
.colors-radio [type="radio"]:not(:checked)+label,
.colors-radio input[type="radio"]:checked+label {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 4px solid #D9DBE9;
    cursor: pointer;
    transition: all .2s ease-in-out;
} */

/* .colors-radio input[type="radio"]:checked+label::after,
.colors-radio input[type="checkbox"]:checked+label::after {
    content: '';
    display: inline-block;
    height: 28px;
    width: 28px;
    color: #e3e3e3;
    position: absolute;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    border: 4px solid #14142A;
    transition: all .2s ease-in-out;
} */

.colors-radio input[type="radio"]:checked+label::before {
    content: "\ec50";
    display: inline-block;
    font-size: 12px;
    /* line-height: 1; */
    font-family: "LineIconsPro Regular";
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    color: #f1f1f1;
    font-weight: bold;
    position: absolute;
    margin: -2px 4px;
    text-shadow: 0px 0px 1.5px #000000;
}

.colors-radio input[type="radio"]:checked+label {
    transform: scale(1.2);
}

.imgthumbs.carousel-indicators {
    position: relative;
    margin: 0;
    /* margin-top: 15px; */
}

.imgthumbs.carousel-indicators [data-bs-target] {
    width: 100%;
    height: 108px;
    max-width: 90px;
    border: 1px solid rgba(10, 10, 10, 0.16);
    border-radius: 8px;
    overflow: hidden;
}

.imgthumbs.carousel-indicators button img {
    display: block;
}

.imgthumbs.carousel-indicators .active {
    border: 1px solid #002925;
}

#carousel-inner {
    min-height: 524px;
}

#carousel-inner img {
    max-height: 524px;
    width: auto;
    margin: 0 auto;
    display: block;
}

/* Rating */
.stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 22px;
    line-height: 1;
}

.stars::before {
    content: "★";
    letter-spacing: 3px;
    background: linear-gradient(90deg,
            #ff9000 var(--percent),
            #e3e3e3 var(--percent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#product_info .accordion-button {
    background: #fcfcfc;
    border-radius: 4px;
}

.accordion-button:not(.collapsed) {
    color: var(--PrimaryBgColor);
}

.accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A0A0A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* .carousel-item {
    transition: transform 0.1s ease-in-out;
} */

/* .ven-heading {
    font-size: 12px;
    color: #37474F;
    text-transform: uppercase;
} */

.veninfo {
    font-size: 14px;
}

.venoptional {
    font-size: 10px;
    font-weight: 600;
    line-height: 18px;
}

.colorssmall span {
    height: 12px;
    width: 12px;
    display: inline-block;
    border-radius: 100px;
    margin-right: 2px;
    margin-top: 2px;
    border: 0.1px solid #c1c1c1;
}

.offerings-img {
    width: 68px;
    min-width: 68px;
    height: 68px;
    object-fit: cover;
}

.single-item .slick-list {
    margin: 0 20px;
}

.single-item .slick-dots {
    display: flex;
    margin: 0;
    position: absolute;
    left: 5px;
    right: auto;
    bottom: -26px;
}

.single-item .slick-dots li button {
    visibility: hidden;
}

.single-item .slick-dots li {
    opacity: 0.2;
    width: 10px;
}

.single-item .slick-dots li.slick-active {
    opacity: 1;
}

.single-item .slick-arrow {
    width: 28px;
    height: 28px;
    border: 1px solid #c8c8c8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -4px;
}

.single-item .slick-arrow
/* Product Detail page CSS END */

/* contact us CSS START */
.halfbg {
    background: var(--colorPrimary);
    position: relative;
    min-height: calc(100vh - 120px);
}

.halfbg::before {
    content: "";
    position: absolute;
    background-color: #e1e1e1;
    height: calc(100% - 55%);
    bottom: 0;
    width: 100%;
}

.topics-chk {
    border-radius: 8px;
    padding: 6.6px 12px;
    min-width: 20%;
}

.topics-chk .form-check-input {
    width: 1.4em;
    height: 1.4em;
}

.support-check {
    background: #ffe6b0;
    color: #946300;
}

.sales-check {
    background: #e3feff;
    color: #0576f0;
}

.media-check {
    background: #f2f0ff;
    color: #aa33ff;
}

.general-check {
    background: #f7f3ea;
    color: #82704c;
}

.contact-cards .shadow {
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.04) !important;
}

/* contact us CSS END */

/* collaborate CSS START */

/* Hide all steps by default: */
.collabstep {
    display: none;
}

button:hover {
    opacity: 0.8;
}

/* collaborate CSS END */

/* Terms and Policy page CSS START */
.page-section {
    margin-top: 5%;
}

.page-section::before {
    display: block;
    content: " ";
    margin-top: -124px;
    height: 124px;
    visibility: hidden;
    pointer-events: none;
}

.list-group-item {
    border: none;
    transition: 100ms ease all;
}

.list-group-item.active {
    color: #005bd4;
    background-color: transparent;
    border-color: none;
    border: none;
}

.navigation {
    width: 260px;
    top: 60px;
    font-size: 14px;
    padding-bottom: 50px;
    transition: 80ms ease all;
}

.navigation .accordion-button {
    background-color: #e7f1ff;
}

.navigation .navigation__link {
    padding: 8px 0;
    transition: 80ms ease all;
}

.navigation.fixed {
    position: fixed;
    height: 100%;
}

.navigation::before {
    display: block;
    content: " ";
    margin-top: -200px;
    height: 200px;
    visibility: hidden;
    pointer-events: none;
}

.navigation.fixed .onlymobile {
    padding-bottom: 240px;
    width: 100%;
    top: 38px;
    background: #fff;
    position: absolute;
    height: calc(100vh - 100px);
    overflow-y: auto;
    transition: 0ms ease all;
}

/* width */
.navigation.fixed .onlymobile::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.navigation.fixed .onlymobile::-webkit-scrollbar-track {
    background: #f7f7f7;
}

/* Handle */
.navigation.fixed .onlymobile::-webkit-scrollbar-thumb {
    background: rgb(207, 207, 207);
}

/* Handle on hover */
.navigation.fixed .onlymobile::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Pricing page css START*/
.pricingcard {
    border: 1px solid rgba(0, 41, 37, 0.16);
    border-radius: 12px;
    background: #f7f7fc;
    transition: 100ms ease all;
}

.productsizes span:hover {
    border-color: #1f7e6c;
    color: #1f7e6c;
}

.colors-radio {
    position: relative;
    margin-right: 10px;
    margin-top: 4px;
}

.colors-radio label,
.colors-radio [type="radio"]:not(:checked)+label,
.colors-radio input[type="radio"]:checked+label {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 4px solid #d9dbe9;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.colors-radio input[type="radio"]:checked+label::after,
.colors-radio input[type="checkbox"]:checked+label::after {
    content: "";
    display: inline-block;
    height: 28px;
    width: 28px;
    color: #e3e3e3;
    position: absolute;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    border: 4px solid #14142a;
    transition: all 0.2s ease-in-out;
}

.colors-radio input[type="radio"]:checked+label::before {
    content: "\ec50";
    display: inline-block;
    font-size: 10px;
    /* line-height: 1; */
    font-family: "LineIconsPro Regular";
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    margin: -2px 5px;
}

.pricingcard:hover .btn-outline-primary {
    background-color: var(--colorPrimary);
    color: #fff;
}

.pricing-badge {
    bottom: -13px;
    display: inline-flex;
    margin: 0 auto;
    width: auto;
    left: 0;
    right: 0;
    width: 105px;
    height: 24px;
    justify-content: center;
    align-items: center;
    background: linear-gradient(95.08deg,
            #f639d1 2.49%,
            #ab2eff 46.38%,
            #00c7ff 97.19%);
    border-radius: 8px;
}

/* New Pricing CSS START */
.pricing-hero {
    background-image: url("../images/dotted-pattern.png"),
        linear-gradient(95.08deg, #101010 2.49%, #002424 97.19%);
}

#pricetabs.nav-pills .nav-link.active {
    background: linear-gradient(95.08deg, #535664 2.49%, #202d3a 97.19%);
}

.price-text-1 {
    background: linear-gradient(95.08deg, #12abb9 2.49%, #16195d 97.19%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.price-text-2 {
    background: linear-gradient(95.08deg, #00baff 2.49%, #063ef9 97.19%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.points-gradient {
    background: linear-gradient(95.08deg, #ae5388 2.49%, #3d1052 97.19%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-clip: text;
}

.tbody-shadow::after {
    content: "";
    box-shadow: 0px 60px 70px rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, -1);
    width: 100%;
    height: 4px;
}

.pricingcard:hover,
.pricingcard.active {
    background: linear-gradient(95.08deg, #04056b 2.49%, #6091f7 97.19%);
    color: #fff !important;
}

.pricingcard:hover .price-text-1,
.pricingcard:hover .price-text-2 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.calc-text {
    background: linear-gradient(95.08deg,
            #fdfd9b 2.49%,
            #f9f906 46.38%,
            #c7c705 97.19%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.swagify-elite {
    background: linear-gradient(95.08deg, #535664 2.49%, #202d3a 97.19%);
}

.swagify-pro {
    background: linear-gradient(95.08deg, #ae5388 2.49%, #3d1052 97.19%);
}

.subscription-1 {
    background: linear-gradient(95.08deg, #e3f7ff 2.49%, #ffd8c3 97.19%);
    box-shadow: 18px 18px 0px 0px #535664, 18px 18px 0px 0px #202d3a;
}

.subscription-2 {
    background: linear-gradient(95.08deg, #edf7f8 2.49%, #b5c7e1 97.19%);
    box-shadow: 18px 18px 0px 0px #535664, 18px 18px 0px 0px #202d3a;
}

.subscription-3 {
    background: linear-gradient(95.08deg,
            #faceb8 2.49%,
            #e6afcc 33.56%,
            #c8bee5 64.63%,
            #acd1f1 97.19%);
    box-shadow: 18px 18px 0px 0px #535664, 18px 18px 0px 0px #202d3a;
}

/* Small screen pricing plans START */
.sm-plans.slick-initialized .slick-slide {
    /* opacity: 0.5; */
    transition: 200ms ease-in all;
    margin-left: 12px !important;
    /* min-width: 360px; */
    width: 340px !important;
}

.sm-plans.slick-slider .slick-track {
    width: 1476px !important;
}

/* Small screen pricing plans END */
/* Pricing page css END*/

/* Career Page CSS START */
.career-hero {
    background-image: url("../images/dotted-pattern.png"),
        linear-gradient(95.08deg, #101010 2.49%, #002424 97.19%);
}

.career-hero-img {
    box-shadow: -18px -18px 0px 0px #ffe6b0;
}

.blue-cirlce::after {
    content: "";
    background-image: url("../images/svg/blue-scribble-circled.svg");
    background-repeat: no-repeat;
    width: 232px;
    height: 100%;
    position: absolute;
    background-size: contain;
    left: -12px;
    top: 6px;
}

.career-sec-2 {
    background-image: url("../images/wave-2.png"),
        linear-gradient(95.08deg, #e0fff8 2.49%, #e0fff8 97.19%);
    background-repeat: no-repeat;
    background-position: bottom;
}

.process-timeline::before {
    content: "";
    background: #eff0f7;
    width: 94%;
    height: 6px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 12px;
}

.process-timeline div {
    position: relative;
    display: inline-block;
    text-align: center;
    top: 15px;
}

.process-timeline div::before {
    content: "";
    background: #002424;
    height: 16px;
    width: 16px;
    border-radius: 100%;
    position: absolute;
    top: -20px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.art-3 {
    right: 0;
    top: -96px;
    z-index: -1;
}

.art-2 {
    right: -86px;
    bottom: -60px;
    z-index: -1;
}

.job-hero {
    background-image: url("../images/it-support-manager-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#appyforjob .modal-content {
    background: #14142a;
}

#appyforjob .modal-content .modal-body .form-control {
    background-color: #262338;
    color: #a0a3bd;
    border-color: #262338;
}

#appyforjob .modal-content .modal-body .form-check-input {
    background-color: #262338;
    border-color: #262338;
    width: 1.5em;
    height: 1.5em;
    margin-top: 0em;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
    width: 4px;
}

/* Track */
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 12px;
}

/* Handle on hover */
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.dropzone {
    border: 2px dashed #4e4b66;
    background: #262338;
    border-radius: 16px;
    padding: 6px;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
}

.dropzone .dz-remove {
    color: #fff;
}

.dropzone .dz-preview.dz-image-preview {
    background: transparent;
}

.dropzone .dz-message {
    margin: 1em 0;
    font-size: 13px;
}

/* Career Page CSS END */

/* Hire a professional for CSS START */
.check-list-2 li {
    position: relative;
    list-style: none;
}

.check-list-2 li::before {
    content: "\ec50";
    display: inline-block;
    font-family: "LineIconsPro Regular";
    font-size: 24px;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    left: -36px;
    color: #007a70;
    font-weight: 900;
    top: 6px;
}

/* Hire a professional for CSS END */

/* collection pages CSS START */
.basketball {
    background-image: url("../images/basketball-collection-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* collection pages CSS END */

.cattitle {
    font-size: 26px;
}

.producttitle {
    font-size: 24px;
    line-height: 32px;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(0, 36, 36, 0.98);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.fixednav {
    background: rgba(0, 36, 36, 0.85) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
}

/* Slick Slider CSS START */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.variable-width .slick-slide {
    opacity: 0.4;
}

.slick-slide.slick-current.slick-active {
    opacity: 1;
}

.blogslider {
    width: 500px;
}

.slick-arrow {
    position: absolute;
    top: 35%;
    background: transparent;
    border: 0;
    font-size: 12px;
    font-weight: 800;
}

.slick-arrow i {
    font-weight: 800;
}

.slick-prev {
    left: -8px;
}

.slick-next {
    right: -8px;
}

/* Slick Slider CSS END */

/* range slider START */
.rs-container * {
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.rs-container {
    height: 45px;
    position: relative;
}

.rs-container .rs-bg,
.rs-container .rs-selected {
    background-color: #fcfcfc;
    border: 1px solid #fcfcfc;
    height: 4px;
    left: -14px;
    position: absolute;
    top: 8px;
    width: 105%;
    border-radius: 3px;
}

.rs-container .rs-selected {
    background-color: #fcfcfc;
    border: 1px solid #fcfcfc;
    transition: all 0.2s linear;
    width: 0;
}

.rs-container.disabled .rs-selected {
    background-color: #ccc;
    border-color: #bbb;
}

.rs-container .rs-pointer {
    background-color: #fcfcfc;
    border: 1px solid #fcfcfc;
    border-radius: 4px;
    cursor: pointer;
    height: 20px;
    left: 0px;
    position: absolute;
    top: 0;
    transition: all 0.2s linear;
    width: 20px;
    box-shadow: inset 0 0 1px #fff, inset 0 1px 6px #ebebeb,
        1px 1px 4px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.rs-container.disabled .rs-pointer {
    border-color: #ccc;
    cursor: default;
}

.rs-container .rs-pointer::after,
.rs-container .rs-pointer::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #fcfcfc;
    left: 4px;
    top: 24px;
    transform: rotate(45deg);
}

.rs-container .rs-pointer::after {
    /* left: auto; */
    right: 12px;
}

.rs-container.sliding .rs-pointer,
.rs-container.sliding .rs-selected {
    transition: none;
}

.rs-container .rs-scale {
    left: 0;
    position: absolute;
    top: 5px;
    white-space: nowrap;
    display: none;
}

.rs-container .rs-scale span {
    float: left;
    position: relative;
}

.rs-container .rs-scale span::before {
    background-color: #ededed;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 1px;
}

.rs-container.rs-noscale span::before {
    display: none;
}

.rs-container.rs-noscale span:first-child::before,
.rs-container.rs-noscale span:last-child::before {
    display: block;
}

.rs-container .rs-scale span:last-child {
    margin-left: -1px;
    width: 0;
}

.rs-container .rs-scale span ins {
    color: #333;
    display: inline-block;
    font-size: 12px;
    margin-top: 20px;
    text-decoration: none;
}

.rs-container.disabled .rs-scale span ins {
    color: #999;
}

.rs-tooltip {
    color: #14142b;
    width: auto;
    min-width: 32px;
    height: 30px;
    background: #fcfcfc;
    /* border: 1px solid #00969b; */
    border-radius: 4px;
    position: absolute;
    transform: translate(-62%, 28px);
    left: 13px;
    text-align: center;
    font-size: 13px;
    padding: 3px 5px;
    font-weight: 800;
}

.rs-container.disabled .rs-tooltip {
    border-color: #ccc;
    color: #999;
}

/* Range Slider END */

/* Funnel CSS START */
.integration-nav.nav-tabs .nav-item.show .nav-link,
.integration-nav.nav-tabs .nav-link.active {
    font-weight: 400;
    border-bottom: 0px;
    background: #002424;
    transform: scale(1.08);
}

.integration-nav.nav-tabs .nav-item.show .nav-link img,
.integration-nav.nav-tabs .nav-link.active img {
    -webkit-filter: invert(1) brightness(3);
    filter: invert(1) brightness(3);
}

.integration-nav.nav-tabs .nav-link {
    width: 204px;
    height: 136px;
    background: #f7f7fc;
    border-radius: 4px;
    transition: 200ms ease-in-out all;
}

.integration-nav.nav-tabs .nav-link img {
    width: 56px;
    height: auto;
}

.integration-nav.nav-tabs .nav-link:hover {
    opacity: 0.8;
}

.integration-progress.progress {
    height: 8px;
}

.integration-progress .progress-bar {
    background-color: var(--bs-primary);
    animation: indeterminateAnimation 2s infinite linear;
    transform-origin: 0% 50%;
}

@keyframes indeterminateAnimation {
    0% {
        transform: translateX(0) scaleX(0);
    }

    40% {
        transform: translateX(0) scaleX(0.4);
    }

    100% {
        transform: translateX(100%) scaleX(0.5);
    }
}

/* Funnel CSS END */

/* ------------------------------- New Home v2.0 (Jan 2024) page CSS START ------------------------------- */
.text-gradient-3 {
    background: linear-gradient(95deg, #12abb9 2.49%, #16195d 97.19%);
}

.text-gradient-4 {
    background: linear-gradient(103deg,
            #a058ae 0%,
            #fc6c75 54.59%,
            #feaaaa 84.71%);
}

.text-gradient-5 {
    background: linear-gradient(95deg, #52ee4f 2.49%, #059700 97.19%);
}

.text-gradient-6 {
    background: linear-gradient(95deg, #77C2F1 2.49%, #FFB4ED 97.19%);
}

.text-gradient-7 {
    background: linear-gradient(95deg, #6FD 2.49%, #099 97.19%);
}

.text-gradient-8 {
    background: linear-gradient(95.08deg, #C5FFAA 2.49%, #70E0E8 97.19%);
}

.text-gradient-9 {
    background: linear-gradient(91.84deg, #C5FFAA 13.91%, #00BAC6 104.27%);
}

.text-gradient-13 {
    background: linear-gradient(95deg, #6FD 0%, #2fbaba 2.19%);
}

.text-gradient-14 {
    background: linear-gradient(95.08deg, #12ABB9 2.49%, #16195D 97.19%);
}

.text-gradient-15 {
    background: linear-gradient(95.08deg, #3FA53C 2.49%, #006CD0 97.19%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-16 {
    background: linear-gradient(102.98deg, #FFAC66 0%, #FF7500 41.89%, #E56900 84.71%);
}

.text-gradient-17 {
    background: linear-gradient(94.89deg, #945BF1 33.63%, #BB48BF 63.8%, #F67E4D 97.28%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-18 {
    background: linear-gradient(265.88deg, #18959E 19.37%, #253E70 102.14%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-19 {
    background: linear-gradient(270.45deg, #12ABB9 -3.2%, #16195D 91.73%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-20 {
    background: linear-gradient(95.08deg, #918989 2.49%, #5C5757 97.19%);
}

.text-gradient-21 {
    background: linear-gradient(95.08deg, #AF45DB 2.49%, #EB7B96 97.19%);
}

.text-gradient-22 {
    background: linear-gradient(270.03deg, #18959E 4.88%, #002244 138.08%);
}

.text-gradient-23 {
    background: linear-gradient(95.08deg, #04056B 2.49%, #6091F7 97.19%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-24 {
    background: linear-gradient(270.6deg, #12ABB9 -17.81%, #16195D 134.55%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-25 {
    background: linear-gradient(95.08deg, #C5FFAA 2.49%, #00BAC6 97.19%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}



.text-gradient-3,
.text-gradient-4,
.text-gradient-5,
.text-gradient-6,
.text-gradient-7,
.text-gradient-8,
.text-gradient-9,
.text-gradient-13,
.text-gradient-14,
.text-gradient-16,
.text-gradient-20,
.text-gradient-21,
.text-gradient-22 {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


.card-gradient-1 {
    background: rgba(191, 228, 250, 0.36);
}

.card-gradient-2 {
    background: rgba(175, 117, 255, 0.08);
}

.card-gradient-3 {
    background: rgba(102, 49, 235, 0.08);
}

.card-gradient-4 {
    background: rgba(41, 180, 84, 0.06);
}

.card-gradient-5 {
    background: linear-gradient(312deg, rgba(255, 255, 255, 0.72) 26.85%, rgba(217, 242, 246, 0.72) 87.32%);
}

.card-gradient-1,
.card-gradient-2,
.card-gradient-3,
.card-gradient-4,
.card-gradient-5 {
    border-radius: 8px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.shadow-xs {
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.02);
}

.wsmenu-list li .btn {
    padding: 9px 13px;
    border-radius: 8px;
}

.btn-primary-2 {
    background: #005757;
    border-color: #005757;
}

/* .fixednav .wsmain .wsmenu>.wsmenu-list>li>a {
    color: var(--bs-dark);
}

.fixednav .wsmain .wsmenu>.wsmenu-list>li .btn-outline-light {
    color: var(--bs-dark);
    border-color: var(--bs-dark);
}

.fixednav .wsmain .smllogo img {
    filter: invert(1);
} */

.herov2 {
    background: linear-gradient(180deg, #002925 0%, #14142b 100%);
    overflow: hidden;
}

.herov8 {
    background: linear-gradient(316.92deg, #535664 -11.31%, #112E45 -11.3%, #002925 64.17%);
}

.herov4 {
    background: linear-gradient(316.92deg, #535664 -11.31%, #112E45 -11.3%, #002925 64.17%);
}

.herov5 {
    background: linear-gradient(180.3deg, #535664 -1.13%, #112E45 -1.12%, #002925 99.74%);
}

.herov7 {
    background: linear-gradient(180.3deg, #535664 -1.13%, #112E45 -1.12%, #002925 99.74%);
}

.herov12 {
    background: linear-gradient(116.07deg, #112E45 0.39%, #002925 111.24%);
}


.font-xxl {
    font-size: 48px;
    line-height: 64px;
}

#typing-container {
    background: linear-gradient(95deg, #77c2f1 2.49%, #ffb4ed 97.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    min-width: 13ch;
    text-align: left;
}

@media (max-width: 767.98px) {
    #typing-container {
        display: inline;
        min-width: 0;
    }
}

#typing-container::after {
    content: "|";
    font-weight: 100;
}

.email-form.input-group {
    max-width: 740px;
}

.email-form.input-group .form-control {
    height: 48px;
    border: 2px solid #cbffae;
    border-radius: 8px !important;
}

.email-form.input-group .btn {
    border-radius: 8px !important;
    z-index: 4;
}

.slider-img {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-img::after {
    content: "";
    background: linear-gradient(360deg,
            rgba(20, 20, 43, 0.7) 0%,
            rgb(0, 41, 37, 0.54) 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.slider-img img {
    position: absolute;
    bottom: 0;
    animation: moveUp 30s linear infinite;
    transform-origin: bottom center;
}

@keyframes moveUp {

    0%,
    100% {
        transform: translateY(50%);
    }

    50% {
        transform: translateY(0);
    }
}

.bg-img-1 {
    background-image: url("../images/homev2/section-1-bg.webp");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.bg-img-gradient-1 {
    background-image: linear-gradient(45deg, #FFFFFF99, #FFFFFF99), url("../images/homev2/section-1-bg.webp");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.bg-img-gradient-2 {
    background-image: linear-gradient(45deg, #CCE5FA96, #CCE5FA96), url(../images/homev2/section-1-bg.webp);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.bg-img-gradient-3 {
    background-image: linear-gradient(45deg, #DEEAF3B2, #DEEAF3B2), url(../images/homev2/section-1-bg.webp);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.three-arrows::before {
    content: " ";
    background: url("../images/svg/3-arrow.svg");
    background-repeat: no-repeat;
    position: absolute;
    left: -48px;
    top: -50px;
    width: 65px;
    height: 54px;
}

#video-container {
    position: relative;
    width: 640px;
    /* Set your desired width */
}

.custom-controls {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.play-pause {
    display: block;
    background-color: rgba(0, 65, 172, 1);
    color: #fff;
    height: 48px;
    width: 48px;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: 300ms ease-in-out all;
}

.play-pause:hover {
    background-color: rgba(0, 65, 172, 0.99);
}

.bg-img-2 {
    background-image: url("../images/homev2/section-2-bg.webp");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.cat-cards {
    transition: 300ms ease-in-out all;
}

.cat-cards img {
    width: 36px;
}

.cat-cards:hover {
    /* transform: translateY(-10px); */
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.bg-gradient-1 {
    background: linear-gradient(180deg, #535664 -1.13%, #112E45 -1.12%, #002925 99.74%);
}

.bg-gradient-7 {
    background: linear-gradient(269.06deg, #18959E -26.25%, #002244 147.94%);
}

.bg-default {
    background: #002424;
}

.testimonial {
    /* background: url("/images/homev2/user-review.webp"); */
    background: linear-gradient(360deg, rgba(64, 76, 76, 1) 0%, rgb(0, 0, 0, 0.35) 100%), url("../images/homev2/user-review.webp");
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
    overflow: hidden;
}

.bs-title {
    margin-bottom: 130px;
}

.bs-title:after {
    border-top: 1px solid #D9DBE9;
    content: "";
    position: absolute;
    right: 0;
    top: 10px;
    width: 100%;
    max-width: calc(100% - 110px);
}

.bg-img-3 {
    background-image: url("../images/homev2/section-3-bg.webp");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.swagify-reels {
    width: 124px;
    height: 172px;
    min-width: 124px !important;
    min-height: 172px !important;
    object-fit: cover;
    max-height: 172px !important;
}

.waves::after {
    content: "";
    background: url("../images/svg/waves.svg");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -36px;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
}

.waves-top::after {
    content: "";
    background: url("../images/svg/waves.svg");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -36px;
    width: 100%;
    height: 100%;
    left: 0;
}

.waves-2::after {
    content: "";
    background: url("../images/svg/waves2.svg");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -36px;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
}

.three-lines::after {
    content: " ";
    background: url("../images/svg/three-lines.svg");
    background-repeat: no-repeat;
    position: absolute;
    left: -95px;
    top: -35px;
    width: 100%;
    height: 100%;
}

/* .overlay{
    background-color: rgba(255, 255, 255, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */
.input-error {
    position: absolute;
    bottom: -28px;
}

.carousel-item {
    transition: transform 800ms ease-in-out;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transition: opacity 0.3s 800ms;
}

/* ------------------------------- New Home v2.0 (Jan 2024) page CSS END ------------------------------- */
/* ------------------------------- New Home v3.0 (July 2025) page CSS START ------------------------------- */
/* bg colors  */
.bg-light-5 {
    background-color: #0079FF14;
}

.bg-g-light {
    background-color: #EAF2F4;
}

.bg-g-light2 {
    background-color: #E8F3F1;
}

.bg-g-light3 {
    background-color: #DBE8EF;
}

.bg-g-light4 {
    background-color: #D9EDED;
}

.bg-g-light5 {
    background-color: #EDF7F7;
}

.bg-primary-light {
    background-color: #00575712;
}

.bg-l-green {
    background-color: #CBFFAE;
}

.sky-light-12 {
    background: #DAEBF3;
}

.sky-light-13 {
    background: #E6F1F5;
}

.sky-light-14 {
    background: #E3F1F5;
}

.sky-light-15 {
    background: #E8F1F2;
}

.bg-gradient-5 {
    background: radial-gradient(114.87% 188.21% at 50% 50%, #CBF3E5 0%, rgba(255, 232, 255, 0.3) 100%);
}

.bg-gradient-6 {
    background: radial-gradient(114.87% 188.21% at 50% 50%, #E1F0FF 0%, #E3F1F5 100%);
}


.bg-white-opacity {
    background: #FFFFFF96;
}

.bg-opacity-29 {
    background: #FFFFFF29;
}


/* text color  */
.text-dark-11 {
    color: #14142BB2;
}

.text-dark2 {
    color: #181915;
}

.text-neon-blue {
    color: #485AFF;
}

.text-danger2 {
    color: #AD1D20;
}

.text-primary-2 {
    color: #005757;
}

.text-dark-10 {
    color: #14142B80;
}

.text-dark4 {
    color: #57555B;
}

.text-dark5 {
    color: #171619;
}

.text-dark6 {
    color: #1E1E1E;
}

.text-dark7 {
    color: #64748B;
}

.text-light3 {
    color: #C4D7DB;
}

.text-light-4 {
    color: #87A1A6;
}

.text-light-5 {
    color: #062B2F;
}

.text-light-6 {
    color: #5E6161;
}

.text-opacity-20 {
    --bs-text-opacity: 0.20;
}

.neon-border {
    border: 2px solid #54DEDE45;
}

.img-filter {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

.c-badg {
    height: 37px;
}

.text-truncate-6 {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-8x {
    padding: 8px;
}

/* .btn {
    height: 42px;
} */

.vid-card .btn {
    height: auto;
}

.bg-img-4 {
    background: linear-gradient(45deg, #a1e0ed2b, #a1e0ed2b), url(../images/homev2/section-4-bg.webp);
    background-repeat: no-repeat;
    background-position: top;
    background-size: inherit;
}

.bg-img-10 {
    background: url(../images/grow-business/section-bg-10.webp);
    background-repeat: no-repeat;
    background-position: 100%;
    background-size: cover;
}

.pink-green-gradient {
    background: url(../images/svg/ellipse-layer.svg);
    background-repeat: no-repeat;
    background-size: 90% 100%;
    background-position: right;
}

.gradient-bg-5 {
    background: url(../images/svg/ellipse-layer.svg) no-repeat right / 90% 100%, linear-gradient(180.3deg, #535664 -1.13%, #112E45 -1.12%, #002925 99.74%);
}

.radial-g-green1 {
    background: radial-gradient(114.87% 188.21% at 50% 50%, #CBF3E5 0%, rgba(255, 232, 255, 0.3) 60%);
}

.img-filter:after {
    content: "";
    width: 100%;
    height: 41%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    background: linear-gradient(0deg, #DBE8EF 15.76%, #DBE8EF 33.55%, rgb(219 232 239 / 96%) 49.73%, rgba(219, 232, 239, 0) 72%);
    z-index: 0;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.img-filter3:after {
    content: "";
    width: 100%;
    height: 41%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    background: linear-gradient(0deg, #dbe8ef 15.76%, #dbe8ef 21.55%, rgb(219 232 239 / 98%) 49.73%, rgba(219, 232, 239, 0) 72%);
    z-index: 0;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.rounded-24 {
    border-radius: 24px;
}

.title-label {
    width: fit-content;
    margin: auto;
    padding: 14px 58px;
    top: -26px;
    position: absolute;
    left: 0;
    right: 0;
    background: url(../images/svg/skew-bg.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.title-label-mob {
    width: fit-content;
    margin: auto;
    padding: 14px 54px;
    background: url(../images/svg/skew-bg.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 18px !important;
    font-weight: 500 !important;
}

.gradient-bg-4 {
    background: linear-gradient(269.98deg, #295C60 -8.66%, #002244 108.63%);
}

.scale-cards {
    box-shadow: 0px 4px 94px 0px #0F5B851F;
}

.custom-dots {
    list-style: none;
    /* Remove default bullets */
    padding: 0;
    margin: 0;
}

.custom-dots li {
    position: relative;
    padding-left: 15px;
    width: fit-content;
    margin: auto;
}

.custom-dots li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    /* Dot size */
    height: 7px;
    background-color: #3E3E51;
    /* Custom color */
    border-radius: 50%;
    /* Circle shape */
}

.v-border {
    border: 12px solid #CADBE3;
    border-radius: 12px;
}

.v-border2 {
    border: 12px solid #CADBE3;
    border-radius: 12px;
}

#product-flow-tabs.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #DAEBF3;
    color: #14142b !important;
}

#product-flow-tabs.nav-pills .nav-link.active .active-clr {
    color: #4E4B66 !important;
}

#product-flow-tabs.nav-pills .nav-link {
    text-align: left;
    color: #595959 !important;
    border: 1px solid #E2E2E2;
    margin-bottom: 8px;
    border-radius: 12px;
}

.btn-group.custom-pill-tabs {
    border: 1px solid #ffffff38;
    border-radius: 38px;
    background: #FFFFFF29;
    padding: 2.5px 3px;
    box-shadow: 8px 4px 64px 0px #0000007A;
    backdrop-filter: blur(177px);
}

.custom-pill-tabs .btn {
    border-radius: 999px;
    font-size: 15px;
    /* Lock individual button widths to prevent font-swap CLS */
    min-width: 120px;
    text-align: center;
    white-space: nowrap;
    /* This bar paints before Poppins' deferred stylesheet registers its
       @font-face (see the preload+onload swap trick in header.php), so the
       webfont always arrives as a late swap here - min-width above can't
       stop it because the labels are already wider than 120px in Poppins.
       Pin these labels to system fonts (always instantly available, no
       @font-face involved) so there's no swap to shift against, ever. */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.custom-pill-tabs .btn.active {
    background-color: #F0F9BE;
    color: #000;
    border-radius: 50px !important;
}

.custom-pill-tabs .btn {
    border: none;
    padding: 9px 20px !important;
}

.custom-pill-tabs .btn:focus {
    box-shadow: none;
}

/* Reserve space for the hero tab bar wrapper to prevent font-swap CLS */
#home-top-tabs {
    height: 74px;
    /* mobile */
}

@media (min-width: 992px) {
    #home-top-tabs {
        height: 78px;
        /* desktop */
    }
}

/* logo table  */
.logo-table {
    box-shadow: 0px 4px 64px 0px #00000024;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 0px;
}

.logo-table tbody tr td {
    padding: 16px;
    line-height: 18px;
}

.logo-table thead tr th {
    padding: 20px 16px;
}

.logo-table td:first-child {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    /* Optional: Adjust color if needed */
}

.logo-table td {
    border-bottom: 1px solid #EAECF0;
    color: #14142B !important;
}

.logo-table td:not(:first-child) {
    font-size: 13px;
    font-weight: 400;
    color: #333;
    /* Optional: Adjust color if needed */
}

.logo-table table {
    margin-bottom: 0px;
}

.logo-table th {
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #EAECF0;
    color: #14142B !important;
}

.logo-table tr:last-child td {
    border-bottom: none;
}

/* Alternating row colors */
.logo-table tbody tr:nth-child(odd) {
    background-color: #FFFFFF;
}

.logo-table tbody tr:nth-child(even) {
    background-color: #FAFBFB;
}

/* Single Prod slider */
.single-prod-slider {
    overflow: hidden;
    background: #FFFFFF24;
    text-align: center;
}

.single-prod-slider .slick-slide {
    margin: 0 10px;
}

/* Prefix-based custom classes */
.single-prod-prev,
.single-prod-next {
    background: transparent;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 5px;
    cursor: pointer;
}

.single-prod-slider-btn .slick-prev,
.single-prod-slider-btn .slick-next {
    background-color: #FFFFFF;
    border-radius: 30px;
    width: 28px;
    height: 28px;
    z-index: 2;
    box-shadow: 0px 2px 44px 0px #0000000F;

}

.filter-invert {
    filter: invert(1);
}

/* Remove unwanted space on edges */
.single-prod-slider .slick-list {
    margin: 0 -10px;
}

/*----------------- Profit calculation ---------------*/
.scroll-buttons::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for clean UI */
}

.scroll-buttons {
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
    scroll-behavior: smooth;
    white-space: nowrap;
}

.scroll-buttons .active {
    color: #14142b;
    border-color: #f0f9be;
    background: #f0f9be;
}

.profit-btn-group .btn:focus {
    box-shadow: none !important;
    outline: none;
}

.profit-calc .form-control {
    width: 72px;
    height: 32px;
    text-align: end;
    border-radius: 6px;
}

.profit-calc input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 50px;
    background: linear-gradient(102.98deg, #A058AE 0%, #FC6C75 54.59%, #FEAAAA 84.71%) 0% 0% / var(--progress, 40%) 100% no-repeat,
        #FFFFFF17;
    /* Gradient fill + transparent track */
    outline: none;
    /* transition: background 0.3s ease; */
}

.profit-calc input[type=range]::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 50px;
    background: transparent;
}

.profit-calc input[type=range]::-moz-range-track {
    height: 6px;
    border-radius: 50px;
    background: transparent;
}

.profit-calc input[type=range]::-ms-track {
    height: 6px;
    border-radius: 50px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.profit-calc input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #fff;
    border: 0px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    margin-top: -5px;
    cursor: pointer;
    box-shadow: 0px 6px 13px 0px #0000001F;
    margin-top: -7px;
}

.profit-calc input[type=range]::-moz-range-thumb {
    background: #fff;
    border: 0px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 6px 13px 0px #0000001F;
    margin-top: -7px;
}

.profit-calc input[type=range]::-ms-thumb {
    background: #fff;
    border: 0px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 6px 13px 0px #0000001F;
    margin-top: -7px;
}

.qout-text {
    line-height: 26px;
}

/* ------------------------------- New Home v3.0 (July 2025) page CSS START ------------------------------- */
/* ------------------------------- New Pricing (July 2025) page CSS START ------------------------------- */
.btn.h-46 {
    height: 46px;
    width: 200px;
}

.feature-label {
    position: absolute;
    top: -13px;
    left: 0;
    right: 0;
    margin: auto;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0px 22px;
    border-radius: 50px;
    background: linear-gradient(95.08deg, #3fa53c 2.49%, #006cd0 97.19%);
    font-size: 12px;
}

.green-object1 {
    background-image: url(../images/green-object2.png);
    background-position: top right;
    background-size: 600px;
    background-repeat: no-repeat;
}

.mob-label-popular {
    display: none;
}

.pricing .card-body {
    background: #FFFFFFAB;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    backdrop-filter: blur(64px);
}

.gradient-b1 {
    background: linear-gradient(88.09deg, #3ca245 1.61%, #036fca 98.41%);
    padding: 1px;
    border-radius: 6px;
}

.z-1 {
    z-index: 1 !important;
}

.number-box .font-xxl {
    font-size: 40px !important;
    font-weight: 700 !important;
}

.pricing .form-check-input:checked {
    background: #eff8bf;
    border: 4px solid #181915;
    box-shadow: none;
    margin-top: 0;
}

.pricing .form-check-input {
    background: #d9dbe900;
    margin-top: 0;
    border: 2px solid #14142b66;
}

.pricing .form-check-input[type="radio"] {
    padding: 3px
}

.pricing .card {
    border-radius: 8px;
}

.check-icon {
    min-width: 15px;
    min-height: 14px;
    margin-top: -4px;
}

.number-box {
    width: fit-content;
    text-align: center;
}

.slick-prev.disabled,
.slick-next.disabled {
    opacity: 0.1;
    pointer-events: none;
}

.slick-custom-arrows .slick-arrow i {
    font-weight: 400;
}

/* Succes slider css  */
.success-slider .slick-prev,
.success-slider .slick-next {
    width: 48px;
    height: 48px;
    z-index: 999;
    background: #FFFFFF05;
    border-radius: 100px;
    text-decoration: none;
    font-size: 20px;
}

.slick-custom-arrows .slick-prev {
    background: #012926 !important;
}

.slick-custom-arrows .slick-next {
    background: #012926 !important;
}

.success-slider .slick-slide {
    background: #E4EDF1;
    margin: 0 20px;
    padding: 31px 24px;
    border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Remove unwanted space on edges */
.success-slider .slick-list {
    margin: 0 -20px;
}

.slick-custom-arrows .slick-arrow {
    position: relative;
    width: 48px;
    height: 48px;
}

.blend-mode {
    mix-blend-mode: luminosity;
}

/* Home success slider */
.success-slider.home-succuss-slider .slick-slide {
    background: linear-gradient(167.09deg, rgba(255, 255, 255, 0.08) 8.52%, rgba(255, 255, 255, 0.03) 82.63%);
}

.slick-custom-arrows.custom-arrow-home .slick-next {
    background: #A3F4FF1F !important;
}

.slick-custom-arrows.custom-arrow-home .slick-prev {
    background: #A3F4FF1F !important;
}

/* carosel slider on mobile  */
#carouselManage .tab {
    width: 100%;
    height: 6px;
    background: #D9D9D9;
    border-radius: 30px;
}

#carouselManage .tab.active {
    background: #002424;
}

/* ------------------------------- New HPricing (July 2025) page CSS START ------------------------------- */
/* ------------------------------- Grow my business page CSS START ------------------------------- */
.single-prod-slider-btn .slick-prev.disabled,
.single-prod-slider-btn .slick-next.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ------------------------------- Grow my business page page CSS START ------------------------------- */
/* ------------------------------- Sell to my Fans page CSS START ------------------------------- */
.vedio-text {
    bottom: 0;
    margin: auto;
    width: 100%;
    background: linear-gradient(270deg, rgba(230, 241, 245, 0) 0%, rgba(230, 241, 245, 0) 36%, rgb(230 241 245 / 97%) 47.82%, #E6F1F5 55.91%, #E6F1F5 78.28%, #E6F1F5 101.35%);
    display: flex;
    align-items: center;
}

.vedio-text {
    height: 100%;
    position: absolute;
    top: 0;
}

.product-video {
    width: 52%;
}

.card-gradient-50 {
    background-color: #FFFFFF8C;
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(4px);
}

.coming-soon-wraper {
    cursor: pointer;
    position: relative;
}

.image-blur {
    transition: filter 0.3s ease;
}

.coming-soon-hidden {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blue-bluish-purple2 {
    background-color: #F0F9BE;
}

.coming-soon-wraper:hover .image-blur {
    filter: blur(4px);
}

.coming-soon-wraper:hover .coming-soon-hidden {
    opacity: 1;
}

/* ------------------------------- Sell to my Fans page CSS END ------------------------------- */
/* ------------------------------- Lab Design page CSS START ------------------------------- */
.no-scratch {
    background: url(../images/design-lab/design-template.webp), linear-gradient(180deg, #032A2B 0%, #032A2B 100%);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}

#create-launch-sell .bg-light-green.active {
    background: #E3F1F5;
}

/* ------------------------------- Lab Design page CSS END ------------------------------- */

/* ------------------------------- New Catalog v2.0 (November 2024) page CSS START ------------------------------- */
.text-grey {
    color: #6E7191;
}

.text-grey3 {
    color: #4E4B66;
}

.bg-grey2 {
    background-color: #6E7191 !important;
}

.text-white-light {
    color: #FCFCFC;
}

.text-light-2 {
    color: #EFF0F6;
}

.bg-grey-light {
    background-color: #EFF0F6;
}

.text-pink {
    color: #CA024F;
}

.text-warn2 {
    color: #EAAC30;
}

.text-darkgrey {
    color: #14142B;
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-25 {
    letter-spacing: 0.25px;
}

.ls-75 {
    letter-spacing: 0.75px;
}

.gx-36 {
    --bs-gutter-x: 36px;
}

.filter-shad {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

.btn-outline-primary2 {
    color: #14142b !important;
    border-color: #14142b;
    transition: 300ms ease-in-out all;
}

.btn-outline-primary2:hover {
    color: #fff !important;
    background-color: #14142b !important;
}

.link-deco:hover {
    text-decoration: underline;
}

.new-badge {
    background: #005757;
    color: #FCFCFC;
    border-radius: 4px 4px 4px 3px;
    /* width: 59px; */
    height: 24px;
    font-size: 12px;
    text-align: center;
    position: absolute;
    left: -9px;
    letter-spacing: .25px;
    top: 14px;
}

.badge-wraper:before {
    content: "";
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 1px;
    background: #002424;
    bottom: -7px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.heading-line {
    background-color: #D9DBE9;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.heading-absolute {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    background: white;
    width: fit-content;
    padding-left: 20px;
    padding-right: 20px;
}

.product-list-card {
    border-color: #D9DBE9;
    border-style: solid;
}

.product-tag-1 {
    background: #EFF0F6;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 11px;
    letter-spacing: .25px;
}

.product-tag-2 {
    background: linear-gradient(94.14deg, #0F0C29 2.06%, #302B63 97.23%);
    padding: 4px 12px;
    font-size: 11px;
    letter-spacing: .25px;
}

.bg-grey-light .heading-absolute {
    background: #eff0f6 !important;
}

.bg-combined {
    background: linear-gradient(90deg, #CFF6F7 25.21%, rgba(255, 255, 255, 0) 53.33%),
        url(../images/catalog/png/bg-blue.png) center center / cover no-repeat;
}

.discover-more .cat-cards img {
    width: 34px;
}

.discover-more .cat-cards img {
    padding-top: 12px;
    padding-bottom: 12px;
}

.discover-more .card-gradient-5 {
    background: linear-gradient(318.79deg, rgba(255, 255, 255, 0.72) 47.4%, rgba(217, 242, 246, 0.72) 88.8%);
}

.discover-more .cat-cards {
    color: #14142B;
}

/* ------------------------------- New Catalog v2.0 (November 2024) page CSS END ------------------------------- */

/* ------------------------------- Enterprise v2.0 (November 2024) page CSS START ------------------------------- */
.enterprise-header.headerfull {
    height: 74px;
}

.enterprise-header .smllogo img {
    width: 252px;
    height: 42px;
}

.enterprise-header .wsmenu {
    width: 70%;
}

.talk-btn {
    border: 1px solid #FCFCFC;
    color: #FCFCFC;
    font-size: 15px;
    letter-spacing: .25px;
    font-weight: 500;
}

.talk-btn:hover {
    background-color: #005757;
    color: #FCFCFC;
}

/* .herov3 {
    background: linear-gradient(316.92deg, #535664 -11.31%, #112E45 -11.3%, #002925 64.17%), 
                url(../images/enterprise/hero-bg.webp);
    background-size: contain, contain; 
    background-position: center right, center right;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: overlay; 
} */
.hero-gradient-4 {
    background: linear-gradient(316.92deg, #535664 -11.31%, #112E45 -11.3%, #002925 64.17%);
}

.herov3:after {
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/enterprise/hero-bg.webp);
    position: absolute;
    right: 0;
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
}

.bg-border {
    border: 1px solid #FFFFFF12;
    background: #FFFFFF0A;
    width: fit-content;
    padding: 6px 18px;
}

.yellow-btn {
    border-radius: 12px;
    font-size: 13px;
    font-weight: 400;
    padding: 0.59rem 0.75rem;
    background: #cbffae;
    color: #14142B !important;
    line-height: 23px;
}

.yellow-btn:hover {
    background: #8cb178;
}

.cursor-pointer {
    cursor: pointer;
}

.green-light-bg {
    background-color: #02181C;
}

.logo-slick-slider .slick-slide {
    margin-right: 40px;
}

.logo-slick-slider .slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 72px;
}

.logo-slick-slider img {
    max-height: 52px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1);
}

.gradient-bg-1 {
    background: linear-gradient(111.84deg, #E2FFF3 2.53%, #EDFDFF 54.8%, #E2FFF3 98.63%);
}

.text-b-green {
    color: #172127;
}

.text-grey-light {
    color: #A0A3BD;
}

.text-light-grey {
    color: #8E9292;
}

.text-grey2 {
    color: #D9DBE9;
}

.bg-green-light {
    background-color: #ECF1F3;
}

.rounded-16 {
    border-radius: 16px;
}

.shadow-1 {
    box-shadow: 0px 2px 54px 0px #0000000F;
}

.gradient-bg-2 {
    background: linear-gradient(180.3deg, #535664 -1.13%, #112E45 -1.12%, #002925 99.74%);
}

.bg-opc-98 {
    background-color: #FFFFFF08;
}

.logos .logo-img-area {
    border: 1px solid #E2E9E9;
    width: 170px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

/* enterprise cutom filed  */
/* Custom Dropdown Container */
.dropdown-container {
    position: relative;
    background-color: #fff;
    padding: 0;
    border: 1px solid var(--bs-grey1, #ccc);
    border-radius: 5px;
}

span.arrow {
    position: absolute;
    right: 4px;
    font-size: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
}

.dropdown-button {
    padding: 4px 12px;
    font-size: 14px;
    color: #A0A3BD;
    outline: none;
    background: #ffffff00 !important;
}

.dropdown-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid var(--bs-grey1, #ccc);
    border-radius: 5px;
    z-index: 10;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-options li {
    padding: 8px 12px;
    border-bottom: 1px solid var(--bs-grey2, #eee);
}

.dropdown-options li:last-child {
    border-bottom: none;
}

.dropdown-container.active .dropdown-options {
    display: block;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
}

.form-check-text {
    line-height: normal;
}

/*---------------------------- How a few of our client......... Css start --------------------*/
.testimonial-slider-bg {
    margin-top: 130px;
    background: #E9F2F2;
}

.sliderContainer {
    position: relative;
}

.slick-prev:before,
.slick-next:before {
    color: black;
}

.slick-dots {
    bottom: -30px;
}

.progressBarContainer {
    position: absolute;
    top: 20px;
    width: 100%;
    left: 0px;
}

.progressBarContainer div {
    display: block;
    width: 21%;
    padding: 0;
    cursor: pointer;
    float: left;
    text-align: center;
    margin-left: 2%;
    margin-right: 2%;
}

.progressBarContainer div img {
    height: 72px;
    width: 45%;
    object-fit: contain;
    opacity: 30%;
    filter: grayscale(1);
}

.merce-logo {
    width: 77% !important;
}

.progressBarContainer div span.progressBar {
    width: 100%;
    height: 4px;
    background-color: #DFE5E5;
    display: block;
    border-radius: 100px;
}

.progressBarContainer div span.progressBar .inProgress {
    background: #005757;
    width: 0%;
    height: 4px;
    margin-left: 0px !important;
    margin-right: 0px !important;
    border-radius: 100px;
}

.progressBarContainer .item h3.active img {
    opacity: 100%;
    filter: grayscale(0);
}

/*------------ Enterprise modal css  ------------------*/

.modal-head-logo {
    border: 1px solid #D9DBE9;
    text-align: center;
    /* height: 150px; */
    display: flex;
    padding: 40px 10px;
    border-radius: 12px;
    background: #FCFCFC;
}

.college-bg {
    background: url(../images/enterprise/college-hunks-bg.webp);
    background-size: 100%;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: overlay;
    background-position-y: center;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.college-bg .btn-close {
    width: 17px;
    height: 17px;
    padding: 0;
    color: #000;
    filter: invert(1);
    opacity: 1;
    background-size: 40%;
    border: 2px solid white;
    border-color: black;
}

/*--------- Step form css start  ------------*/
.was-validated .form-control:invalid {
    border-color: #dc3545;
    /* Red border for invalid input */
}

.was-validated .form-control:invalid~.invalid-feedback {
    display: block;
    /* Show invalid-feedback on invalid input */
}

.shadow-8 {
    box-shadow: 0px 8px 72px 0px #0000001A;
    backdrop-filter: blur(10px)
}

.rounded-12 {
    border-radius: 12px;
}

.rounded-25 {
    border-radius: 25px;
}

.gradient-brn-1 {
    background: linear-gradient(283.68deg, #112E45 1.16%, #002925 89.08%);
}

.form-step-2,
.form-step-1 {
    cursor: pointer;
}

.active .step-circle {
    background: #005757;
    font-size: 13px;
    color: white;
    display: flex;
    justify-content: center;
    border-radius: 50px;
    align-items: center;
    font-weight: 500;
}

.step-circle {
    background: #ffffff00;
    width: 28px;
    height: 28px;
    font-size: 13px;
    color: #A0A3BD;
    display: flex;
    justify-content: center;
    border-radius: 50px;
    align-items: center;
    font-weight: 500;
    border: 1px solid #A0A3BD;
    line-height: 4px;
}

.step-title {
    color: #6E7191;
}

.active .step-title {
    color: #005757;
}

.active-after .step-circle {
    background: #6E7191;
    width: 28px;
    height: 28px;
    font-size: 13px;
    color: #ffffff;
}

#enterprise-form .form-control {
    border-radius: 12px !important;
    background: transparent;
}

#enterprise-form .form-select {
    border: 1px solid #D9DBE9 !important;
    border-radius: 12px !important;
    background: transparent;
    color: #A0A3BD;
    font-weight: 400;
}

#enterprise-form .text-area-label {
    color: #A0A3BD;
    font-weight: 400;
}

.phone-input-container input {
    width: 100%;
    border-radius: 12px;
    /* border: 1px solid #e0e0e0; */
    padding: 24px 50px 8px 48px;
    font-size: 16px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
    height: 58px;
}

.phone-input-container .form-floating>label {
    top: -15px;
    left: 65px;
}

.steps-line {
    width: 100px;
    height: 1.5px;
    opacity: 1;
    background-color: #005757;
}

.form-select {
    appearance: auto !important;
    -webkit-appearance: auto !important;
    padding-right: 2.5rem;
    background-image: none;
}

.form-select {
    padding-right: 2.25rem;
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* steps form end  */
.bg-light-4 {
    background-color: #FFFFFF0A;
}

/*-------------- Branded product css  --------------*/
.branded-products-slider .slick-track {
    align-items: center;
    display: flex;
    height: 385px;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.branded-products-slider .slick-slide.slick-cloned {
    opacity: 0;
}

.branded-products-slider .slick-slide {
    height: auto;
    padding: 10px;
    transition: all .3s ease-in-out;
}

.branded-products-slider .slick-slide.slick-active {
    display: block !important;
    filter: contrast(.2);
    opacity: 1
}

.branded-products-slider .slick-slide.slick-active.slick-center {
    filter: contrast(1);
    opacity: 1;
    transition: all .3s ease-in-out;
    width: 220px !important
}

.branded-products-slider .slick-slide img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
}

.branded-products-slider {
    background: url(../images/enterprise/globe.webp);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 364px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.branded-products-slider .slider-img {
    height: auto !important;
    border-radius: 16px;
}


/* ------------------------------- Enterprise v2.0 (November 2024) page CSS END ------------------------------- */
/* ------------------------------- Bulk Order v2.0 (December 2024) page CSS START ------------------------------- */
.bg-light-green.active {
    background: #E6F4EF;
}

.bg-light-green {
    background-color: #ffffff00;
}

.radial-gradient-1 {
    background: radial-gradient(45.42% 79.77% at 50% 50%, #E1EDE9 0%, #EFF9FB 100%);

}

.bg-green-3 {
    background: #DCF4CE;
}

.rounded-10 {
    border-radius: 10px;
}

.lh-28 {
    line-height: 28px;
}

.btn.h-52 {
    height: 56px;
}

.icon-cards {
    width: 72px;
    height: 72px;
}

.gx-80 {
    --bs-gutter-x: 80px;
}

.bg-opacity-90 {
    --bs-bg-opacity: 0.90;
}

.border-grey1 {
    border: 1px solid #D9DBE9 !important;
}

.product-list:hover {
    text-decoration: underline;
}

.form-control:focus,
.form-select:focus {
    border-color: initial;
}

/* ------------------------------- Bulk Order v2.0 (December 2024) page CSS END ------------------------------- */

/* ------------------------------- Suppliers Page v2.0 (December 2024) page CSS END ------------------------------- */
.search-icon {
    right: 14px;
    top: 6px;
    bottom: 0;
    margin: auto;
    height: fit-content;
}

.font-lh-24 {
    font-size: 24px;
    line-height: 24px;
}

.search-form input {
    width: 338px;
    height: 48px;
    background: #FCFCFC;
    border: 0px;
    box-shadow: 0px 4px 44px 0px #00000014 !important;
}

.shadow-9 {
    box-shadow: 0px 4px 44px 0px #00000014;
}

.supliers-logos {
    width: 48px;
    height: 48px;
}

.supplier-pagination .page-item .page-link {
    width: 36px;
    height: 36px;
    border-radius: 4px !important;
    background: #FCFCFC;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #313131;
    font-size: 14px;
}

.supplier-pagination .page-item.active .page-link {
    z-index: 3;
    color: #fff !important;
    background-color: #002424 !important;
    border-color: #002424;
}

/* ------------------------------- Suppliers Page v2.0 (December 2024) page CSS END ------------------------------- */

/* ------------------------------- Transfer to SwagifyPOD  v2.0 (December 2024) page CSS START ------------------------------- */

.radial-gradient-2 {
    background: radial-gradient(45.42% 79.77% at 50% 50%, #D1F0E5 0%, #EFF9FB 100%);
}

.radial-gradient-3 {
    background: radial-gradient(114.87% 188.21% at 50% 50%, #CBF3E5 0%, rgba(255, 232, 255, 0.3) 63%);
}

.form-shadow-2 {
    box-shadow: 0px 8px 72px 0px #0000001A;
    backdrop-filter: blur(10px)
}

.gradient-btn-1 {
    background: linear-gradient(283.68deg, #112E45 1.16%, #002925 89.08%);
    color: #FCFCFC;
}

.gradient-btn-1:hover {
    background: linear-gradient(283.68deg, #002925 1.16%, #112E45 89.08%);
    color: #FCFCFC;
}

.bottom-wave {
    background: url(../images/transfer-swagify/bottom-wave.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}

#faqs .accordion-button::after {
    width: 24px;
    height: 26px;
    background-size: 20px;
    background-repeat: no-repeat;
}

/* Default icon (collapsed – plus) */
#faqs .accordion-button::after {
    background-image: url('../images/svg/plus.png') !important;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s;
    opacity: 1;
}

/* Expanded icon (minus) */
#faqs .accordion-button:not(.collapsed)::after {
    background-image: url('../images/svg/minus.png') !important;
    transform: none;
}

#faqs .faq-accordion .accordion-button {
    color: #101828;
}

.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
    width: 48px;
    height: 48px;
    z-index: 999;
    background: #FFFFFF05;
    border-radius: 100px;
    text-decoration: none;
    font-size: 20px;
}

.testimonials-slider .slick-slide {
    background: #E8F1F2;
    margin: 0 12px;
    padding: 16px;
}

.testimonial-item-content {
    min-height: 150px;
}

/* Remove unwanted space on edges */
.testimonials-slider .slick-list {
    margin: 0 -12px;
}

.custom-arrow-test.custom-arrow-home .slick-prev {
    background: #005757 !important;
}

.custom-arrow-test.custom-arrow-home .slick-next {
    background: #005757 !important;
}

/* ------------------------------- Transfer to SwagifyPOD v2.0 (December 2024) page CSS END ------------------------------- */

/* ------------------------------- Supplier Products list Page v2.0 (December 2024) page CSS START ------------------------------- */

.supliers-logos-thumbnail {
    width: 64px;
    height: 64px;
}

.star-fill {
    color: #EAAC30;
}

.rounded-4 {
    border-radius: 4px;
}

.sort-btn {
    height: 48px;
    background: white !important;
    box-shadow: 0px 4px 24px 0px #0000000F;
}

.shadow-11 {
    box-shadow: 0px 4px 24px 0px #0000000F;
}

/* ------------------------------- Supplier Products list Page v2.0 (December 2024) page CSS End ------------------------------- */
/* -------------------------------Early access Page v2.0 (December 2024) page CSS START ------------------------------- */
.w-80-img {
    width: 80px;
    height: 80px;
}

.lh-22 {
    line-height: 22px;
}

.text-blue2 {
    color: #005BD4;
}

.text-blue3 {
    color: #0041AC;
}

.bg-blue2 {
    background: #005BD4;
}

.bg-light-blue {
    background-color: #DBEFFF;
}

.lh-16 {
    line-height: 16px;
}

.font-28 {
    font-size: 28px;
}

.gradient-bg-3 {
    background: linear-gradient(97.45deg, #F4AD65 -10.48%, #F96DF6 107.34%);
}

/* ------------------------------- Early access Page v2.0 (December 2024) page CSS END ------------------------------- */
/* ------------------------------- Early access Product Page v2.0 (December 2024) page CSS Start ------------------------------- */
.product-detail .nav-tabs .nav-link {
    background: transparent !important;
    padding: 0px 0px 3px 0px;
    color: #A0A3BD !important;
}

.product-detail .nav-tabs .nav-link.active {
    border-bottom: 2px solid #14142B !important;
    color: #14142B !important;
}

.text-prime {
    color: #14142B;
}

.offer-cards {
    border: 1px solid transparent;
    box-shadow: 0px 2px 32px 0px #0000001A;
}

.offer-cards:hover {
    border: 1px solid #E0D6E4;
    background-color: #EBECFE;
}

.offer-cards:hover .hover-bg-white {
    background-color: #FCFCFC !important;
}

.offer-card-head,
.offer-card-body,
.offer-card-footer {
    padding: 12px 12px 12px 12px;
}

.offer-card-color {
    padding: 4px 12px 12px 12px;
}

.offer-card-description {
    padding: 15px 12px 0px 12px;
}

.offer-card-line {
    background-color: #D9DBE9;
    opacity: 1;
    margin: 0px;
}

.color-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #ddd;
}

.bg-red {
    background-color: #AD0000;
}

.bg-green {
    background-color: #007822;
}

.bg-green {
    background-color: #007822;
}

.bg-white-light {
    background-color: #ECECEC;
}

.bg-pink {
    background-color: #FF80CC;
}

.bg-voilet {
    background-color: #8B89FF;
}

.bg-yellow {
    background-color: #FFD600;
}

.bg-brown {
    background-color: #451900;
}

.bg-pink2 {
    background-color: #FF6363;
}

.bg-brown2 {
    background-color: #A0826C;
}

.bg-purple2 {
    background-color: #500584;
}

.bg-purple4 {
    background-color: #8B069D;
}

.bg-blue3 {
    background-color: #171CA9;
}

.bg-brown-light {
    background-color: #A889BF;
}

.bg-blue-5 {
    background-color: #20A5D9;
}

.bg-green-5 {
    background-color: #24FD83;
}

.bg-orange-2 {
    background-color: #F55C1A;
}

.bg-green-6 {
    background-color: #8AF34C;
}

.bg-dark-blue {
    background-color: #8AF34C;
}

.grid-layout,
.list-layout {
    height: 484px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #c8c9d6 #f1f1f1;
}

.grid-layout::-webkit-scrollbar {
    width: 4px;
    /* Width of the scrollbar */
}

.grid-layout::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background of the scrollbar track */
    border-radius: 4px;
    /* Rounded edges for the track */
}

.grid-layout::-webkit-scrollbar-thumb {
    background-color: #007bff;
    /* Color of the scrollbar thumb */
    border-radius: 4px;
    /* Rounded edges for the thumb */
    border: 2px solid #f1f1f1;
    /* Adds a border to the thumb */
}

.grid-layout::-webkit-scrollbar-thumb:hover {
    background-color: #0056b3;
    /* Color of the thumb on hover */
}

.grid-layout-btn {
    font-size: 24px;
    border: none;
    background: transparent;
}

.layout-btn {
    font-size: 24px;
    border: none;
    background: transparent;
    color: #6E7191;
}

.layout-btn .active {
    color: #000000 !important;
}

.view-all-label {
    border-top: 1px solid #8DE9FF;
    background: #E3FEFF;
    z-index: 1;
    position: relative;
    padding: 13px 5px;
    color: #0576F0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .25px;
}

.offer-card-overlay {
    background: #fcfcfcd9;
}

.bg-gradient-4 {
    background: linear-gradient(102.98deg, #FFAC66 0%, #FF7500 41.89%, #E56900 84.71%);
}

.lock-icon {
    width: 44px;
    height: 44px;
    margin: 10px auto;
}

.overlay-btn {
    background: linear-gradient(94.14deg, #0F0C29 2.06%, #302B63 97.23%);
    color: white;
    font-size: 13px;
    border-radius: 6px;
    padding: 7px 13px;
}

.overlay-btn:hover {
    color: white;
}

/* list view css  */
.offer-card-head.list-view {
    width: 25%;
}

.offer-card-footer.list-view {
    width: 20%;
}

.offer-card-color.list-view {
    width: 30%;
}

.offer-card-description.list-view {
    width: 25%;
    padding: 15px 12px 15px 12px;
}

.offer-card-footer.list-view .d-flex {
    display: block !important;
}

.offer-card-footer.list-view {
    display: flex;
    justify-content: center;
}

.offer-card-description.list-view .mb-1 {
    margin-bottom: 0px !important;
}


/* faqs tab css  */
.faq-accordion.accordion-flush .accordion-item,
.faq-accordion.accordion-flush .accordion-item .accordion-button {
    border: 0;
    border-radius: 0;
    font-weight: 500;
    font-size: 15px;
}

.accordion-header {
    border-top: 1px solid #eaecf0;
    margin-bottom: 0;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: 0 0;
    box-shadow: none;
    color: #14142B;
}

.accordion-button:after {
    background-size: 12px;
    opacity: .5;
}

.faq-accordion .accordion-body {
    padding-top: 0;
}

.faq-accordion .accordion-button {
    border-radius: 16px;
    color: #14142B;
}

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

/* faq tab end  */
.img-61 {
    width: 61px;
}

.rounded-top-8 {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

#shipping .tab-btn {
    background: #EFF0F6 !important;
    border-radius: 50px;
    border: none !important;
    font-size: 13px;
    letter-spacing: .25px;
    color: #14142B;
    padding: 4px 15px;
    font-weight: 500 !important;
}

#shipping .tab-btn.active {
    background: #002424 !important;
    color: #FCFCFC !important;
}

/* .offer-card-overlay-inner {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
} */
.offer-blur .offer-logo,
.offer-blur .brand-name,
.offer-blur .offer-card-description,
.offer-blur .offer-card-color,
.offer-blur .view-detail {
    filter: blur(5px);
}

.text-green3 {
    color: #008A00;
}

.bg-green3 {
    background-color: #EAF9DE;
}

.list-view .sku-title {
    display: none;
}

.sku-number {
    visibility: visible;
}

.list-view .sku-number {
    visibility: hidden;
}

.option-title {
    display: none;
}

.list-view .option-title {
    display: block !important;
}

.desc-list {
    padding-left: 0px;
    list-style-type: none;
}

.list-view .desc-list {
    padding-left: 22px;
    list-style-type: disc;
}

.offer-card-collapse {
    width: 22px;
    height: 22px;
    background: #EFF0F6;
    border-radius: 50px;
    color: #14142B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding-top: 3px;
    z-index: 9;
}

.is-invalid {
    border-color: red !important;
}

/* ------------------------------- Early access Page product v2.0 (December 2024) page CSS end ------------------------------- */

/* ------------------------------- New POD Droshipping page CSS START ------------------------------- */
.pod-hero {
    background: linear-gradient(180deg, #002925 0%, #14142b 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}

.pod-hero .container {
    background: url("../images/pod/pod-hero-bnr.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.start-deisnging {
    background: url(../images/design-lab/start-designing.webp), linear-gradient(180deg, #E3F1F5 0%, #E3F1F5 100%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
}

.card-dark {
    border-radius: 8px;
    border: 1px solid #2B2D4A;
    background: #081F23;
}

.bg-img-5 {
    background: url("../images/section-integrations-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-gradient-2 {
    background: linear-gradient(118deg, #12ABB9 -35.58%, #16195D 79.34%);
}

.white-card-end,
.white-card-start {
    min-height: 270px;
    position: relative;
}

.white-card-end {
    left: -30px;
}

.white-card-start {
    right: -30px;
}

.bg-img-6 {
    background: url("../images/pod/demo-page-bg.webp"), linear-gradient(226deg, rgba(18, 24, 42, 1) 5.4%, rgba(14, 28, 41, 0.93) 30.95%, #022826 63.09%);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.blur-grid {
    background-color: rgba(64, 233, 233, 0.1);
    background-size: 10%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
}

.arrow-down::after {
    content: url('../images/svg/arrow-down.svg');
    position: absolute;
    margin: 4px 10px;
}

.arrow-up::after {
    content: url('../images/svg/arrow-down.svg');
    position: absolute;
    margin: 4px 10px;
    transform: rotate(180deg) scaleX(-1);
    bottom: 0;
}

/* ------------------------------- New POD Droshipping page CSS END ------------------------------- */

/* ------------------------------- integrations CSS START ------------------------------- */
.integration-img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.hover-effect {
    transition: 300ms ease-in-out all;
}

.hover-effect:hover {
    transform: scale(1.02);
}

.info-card,
.info-card .info-card-details {
    transition: 300ms ease-in-out all;
}

.info-card-des {
    opacity: 0;
    visibility: hidden;
}

.info-card-details {
    border-radius: 8px;
    padding: 12px 14px;
    bottom: -100px;
}

.info-card:hover .info-card-details {
    background: rgba(11, 11, 11, 0.49);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    bottom: 0;
}

.info-card:hover .info-card-details .info-card-des {
    opacity: 1;
    visibility: visible;
}

/* ------------------------------- integrations CSS END ------------------------------- */

/* ------------------------------- How Swagify Works? START ------------------------------- */
.elements-1::after {
    content: " ";
    background: url("/images/icons/yellow-lines.webp");
    background-repeat: no-repeat;
    position: absolute;
    left: 68%;
    top: 65%;
    width: 100%;
    height: 100%;
    background-size: 157px;
}

.elements-1::before {
    content: " ";
    background: url("/images/icons/element-1.webp");
    background-repeat: no-repeat;
    position: absolute;
    left: 65%;
    top: 4%;
    width: 100%;
    height: 100%;
    background-size: 228px;
}

#swagifyworks .nav-item .nav-link {
    color: #6E7191;
    font-size: 24px;
    border-bottom: 3px solid transparent;
}

#swagifyworks .nav-item .nav-link.active {
    color: #14142B;
    background: transparent;
    border-bottom: 3px solid #6FD;
}

.bg-img-7 {
    background-image: url("../images/how-works/bg-5.webp");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#choose-swagify {
    line-height: 50px;
}

#choose-swagify.check-list li::before {
    color: #1e7b73;
    background: linear-gradient(103deg, #a058ae 0%, #fc6c75 54.59%, #feaaaa 84.71%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.herovid {
    background: linear-gradient(180deg, #002925 0%, #14142b 100%), url("../images/videos/how-swagify-works.mp4");
}

/* ------------------------------- How Swagify Works? END ------------------------------- */
#product_info {
    display: none;
}

/* Other later updates */
#productDescription div.font-13 {
    padding: 0px 10px;
}

#sizeGuide,
#careInfo {
    display: none;
}

/* ------------------------------- Training videos START ------------------------------- */

.vid-card img {
    /* min-width: 116px; */
    border-radius: 8px;
}

.play-btn {
    background-color: #CDFFBAC2;
    color: #000;
    height: 60px;
    width: 60px;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: 300ms ease-in-out all;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filterlinks li {
    padding: 8px 18px;
    cursor: pointer;
    font-size: 15px;
    color: #14142B;
    font-weight: 500;
    border: 1px solid #E3E3DB;
    border-radius: 50px;
    white-space: nowrap;
    margin-bottom: 10px;
    transition: 300ms ease-in-out all;
}

.filterlinks li:hover,
.filterlinks li.active {
    background: var(--bs-primary);
    color: #fff;
}

/* ------------------------------- Training videos END ------------------------------- */

/* Responsive CSS START */
@media (min-width: 768px) {
    button#show-all {
        display: none;
    }
}

@media (min-width: 991px) {
    .vh-lg-90 {
        height: 90vh;
    }

    .contact-cards {
        position: absolute;
    }

    .case-study-modal .modal-lg {
        max-width: 900px;
    }
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        margin-top: 0;
    }

    /* .navbar .nav-item:hover .nav-link{ color: #fff;  } */
    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 180%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: 0.3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }

    .vh-center {
        height: 100vh;
        display: flex;
        align-items: center;
    }
}

@media (min-width: 1400px) {
    .arc-bg:before {
        content: "";
        position: absolute;
        background-image: url(../images/svg/arc.svg);
        background-position: top;
        background-repeat: no-repeat;
        width: 170px;
        height: 131px;
        left: 39px;
        z-index: -1;
        bottom: 0px;
        background-size: cover;
    }

    .case-study-modal .modal-lg {
        max-width: 958px;
    }

    .scale-cards.dash::before,
    .scale-cards.dash::after {
        content: "";
        width: 75px;
        height: 1px;
        background-image: repeating-linear-gradient(to right,
                #669A9A 0,
                #669A9A 5px,
                transparent 5px,
                transparent 10px);
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        z-index: -1;
    }

    .scale-cards.dash::before {
        right: -78px;
    }

    .scale-cards.dash::after {
        left: -78px;
    }

    .logo-table td:first-child {
        min-width: 170px;
    }

    #old-new-ways .col-xxl-4 {
        width: 36%;
    }

    #old-new-ways .col-xxl-8 {
        width: 64%;
    }
}

@media (max-width: 1320px) {
    .font-xxl {
        font-size: 50px;
        line-height: 64px;
    }

    .font-20 {
        font-size: 16px;
        line-height: 28px;
    }

    .vedio-text {
        height: 100%;
        position: relative;
        top: 0;
        padding-top: 32px;
        padding-bottom: 32px;
        background: #e6f1f5;
    }

    .product-video {
        display: none;
    }
}

@media (max-width: 1200px) {
    .largetext {
        font-size: 54px;
        line-height: 64px;
    }

    .withshadow,
    .ak-img {
        position: relative;
        margin-right: 0;
    }

    .font-xxl {
        font-size: 36px;
        line-height: 58px;
    }

    .wsmenu>.wsmenu-list>li>a {
        padding: 12px 4px 12px 4px;
    }

    #swagifyworks .nav-item .nav-link {
        font-size: 20px;
    }

    /* catalog-page css  */
    .lead-profit .mb-2-5,
    .trend-prod .mb-2-5,
    .supplier-rated .mb-2-5 {
        margin-bottom: .50rem !important;
    }

    #carousel-inner {
        min-height: 300px;
    }

    .font-60 {
        font-size: 48px;
        line-height: 58px;
    }

}

@media (max-width: 992px) {

    .navbar-collapse {
        position: absolute;
        background: rgb(255, 255, 255);
        left: 0px;
        right: 0px;
        width: 100vw;
        height: calc(100vh - 60px) !important;
        top: 62px;
        text-align: center;
        line-height: 44px;
        padding: 15px 0px;
        font-size: 24px !important;
        transition: 300ms ease-in-out all;
        transform: scale(0);
        z-index: 10;
        overflow-y: scroll;
    }

    .navbar-collapse.collapse.show {
        transform: scale(1);
    }

    /* .hero-bnr {
        height: 445px;
    } */

    .hero-img::before,
    .hero-img::after,
    .how-works::after,
    .alight::after {
        content: none;
    }

    .squre-bg {
        height: auto;
    }

    .signupbg {
        background-image: linear-gradient(0deg,
                rgba(0, 0, 0, 1),
                rgba(0, 41, 37, 0.1)),
            url("../images/signup-graphic.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        color: #fff;
    }

    .loginbg {
        background-image: linear-gradient(0deg,
                rgba(0, 0, 0, 1),
                rgba(0, 41, 37, 0.1)),
            url("../images/login-graphic.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        color: #fff;
    }

    .loginbg .form-area,
    .signupbg .form-area {
        background: rgba(0, 41, 37, 89%);
        padding: 20px;
        border-radius: 14px;
        border: 1px solid #002925;
    }

    .signupbg h3,
    .signupbg a,
    .loginbg h3,
    .loginbg a {
        color: #d6d6d6;
    }

    .forgot-passbg {
        background-image: linear-gradient(0deg,
                rgba(0, 0, 0, 1),
                rgba(0, 41, 37, 0.1)),
            url("../images/forgot-pass-bg.jpg");
    }

    .mheading {
        font-size: 30px;
    }

    .dots::before {
        content: none;
    }

    .pricingcard .font-18 {
        font-size: 14px;
    }

    .pricingcard .font-20 {
        font-size: 16px;
    }

    .integration-nav.nav-tabs .nav-link {
        width: 160px;
        height: 136px;
    }

    .white-card-end,
    .white-card-start {
        left: 0;
        right: 0;
        top: -60px;
        max-width: 90%;
        margin: 0 auto;
    }

    #swagifyworks .nav-item .nav-link {
        font-size: 14px;
    }

    .font-48 {
        font-size: 36px;
        line-height: 46px;
    }

    .font-100 {
        font-size: 70px;
        line-height: 60px;
    }

    .white-card-end,
    .white-card-start {
        min-height: 100px;
    }

    /* catalog page css  */
    .stick-banner h2 {
        font-size: 22px !important;
        line-height: 28px;
    }

    .case-study-modal .modal-lg {
        max-width: 700px;
        margin-top: 72px;
    }

    .modal-head-logo {
        padding: 32px 10px;
    }

    .gx-80 {
        --bs-gutter-x: 15px;
    }

    .enterprise-header.headerfull {
        height: auto;
    }

    .title-label {
        width: fit-content;
        margin: auto;
        padding: 14px 30px;
    }

    .font-60 {
        font-size: 46px;
        line-height: 58px;
    }

    .start-deisnging {
        background-image: none;
        background-color: #e3f1f5;
    }

    .font-32 {
        font-size: 24px;
        line-height: 32px;
    }

    .font-24 {
        font-size: 20px;
        line-height: 28px;
    }

    .font-18 {
        font-size: 16px;
        line-height: 24px;
    }

    .font-16 {
        font-size: 14px;
        line-height: 22px;
    }

    .font-14 {
        font-size: 12px;
        line-height: 20px;
    }

    .font-14.font-14-mob {
        font-size: 14px !important;
        line-height: 22px !important;
    }

    .font-13 {
        font-size: 11px;
        line-height: 18px;
    }

    .font-12 {
        font-size: 10px;
        line-height: 16px;
    }
}

@media (max-width: 991px) {

    /* New navigation CSS START */
    .headerfull {
        height: 0;
    }

    .wsmobileheader {
        height: 50px;
        /* z-index: 1000; */
    }

    .wsmobileheader>.smllogo {
        width: auto;
        margin: 0;
        float: left;
        padding: 10px 13px;
    }

    .wsanimated-arrow {
        padding: 0;
        margin: 22px 40px;
        right: 0;
        left: auto;
    }

    .wsactive .wsmobileheader,
    .wsactive .wsmenucontainer {
        margin-left: 0;
    }

    .wsmenu>.overlapblackbg {
        width: 100%;
    }

    .wsactive .wsmenu>.overlapblackbg {
        -webkit-transition: opacity 0.5s ease-in-out;
        -moz-transition: opacity 0.5s ease-in-out;
        -ms-transition: opacity 0.5s ease-in-out;
        -o-transition: opacity 0.5s ease-in-out;
        transition: opacity 0.5s ease-in-out;
    }

    .wsmenu>.wsmenu-list {
        margin-right: -260px;
        position: fixed;
        right: 0;
        top: 42px;
        padding-top: 12px;
        height: 100%;
        overflow: scroll;
        padding-bottom: 60px;
    }

    .wsactive .wsmenu>.wsmenu-list {
        margin-right: 0;
    }

    .wsmenu>.wsmenu-list>li>.wsmenu-click>i {
        margin: 14px 21px 0px 0px;
    }

    .wsmenu>.wsmenu-list>li>.wsmenu-click.ws-activearrow>i {
        margin-top: 20px;
    }

    .wsmenu .wsmenu-list>li>.wsshoptabing>.wsshopwp>.wstabitem>li>.wsmenu-click02 i {
        margin: 10px 21px 0px 0px;
    }

    .wsmenu .wsmenu-list>li>.wsshoptabing>.wsshopwp>.wstabitem>li>.wsmenu-click02.ws-activearrow02>i {
        margin-top: 14px;
    }

    .wsmenu .wsmenu-list>li>.wsshoptabing>.wsshopwp>.wstabitem>li>.wsmenu-click02 {
        height: auto;
        background-color: transparent;
        border-left: 0;
    }

    .wsmenu .wsmenu-list>li>.wtsbrandmenu>.wsshoptabingwp>.wstabitem02>li>.wsmenu-click03 {
        height: auto;
        background-color: transparent;
        border-left: 0;
    }

    .wsmenu .wsmenu-list>li>.wtsbrandmenu>.wsshoptabingwp>.wstabitem02>li>.wsmenu-click03 i {
        margin: 8px 21px 0px 0px;
    }

    .wsmenu .wsmenu-list>li>.wtsbrandmenu>.wsshoptabingwp>.wstabitem02>li>.wsmenu-click03.ws-activearrow03>i {
        margin-top: 12px;
    }

    .wsmenu>.wsmenu-list>li>.wsmenu-click {
        height: 36px;
    }

    .wsmenu>.wsmenu-list>li>.wsshoptabing,
    .wsmenu>.wsmenu-list>li>.wsmegamenu {
        top: 0;
    }

    .wsmenu>.wsmenu-list>li>.wsshoptabing>.wsshopwp>.wstabitem>li>a {
        padding: 20px 14px;
        font-weight: 400;
    }

    .wsmenu>.wsmenu-list>li>.navtext {
        padding-left: 8px;
    }

    .wsmenu>.wsmenu-list>li>.navtext::after {
        content: "";
    }

    .smllogo img {
        width: 110px;
        height: 30px;
        /* filter: invert(1); */
    }

    .wsmenu>.wsmenu-list>li>a,
    .wsmenu>.wsmenu-list>li:hover>a {
        color: var(--bs-primary);
    }

    .wsmenu>.wsmenu-list>li>a {
        padding: 12px 4px 12px 10px;
    }

    .wsmenu>.wsmenu-list>li:hover>a {
        background-color: rgb(244 244 244);
    }

    .wsmain .wsmenu>.wsmenu-list>li .btn-outline-light {
        color: var(--bs-dark);
        border-color: var(--bs-dark);
    }

    .enterprise-header-mobile {
        background-color: #002424 !important;
    }

    .enterprise-header-mobile.wsmobileheader>.smllogo {
        padding: 3px 5px;
    }

    .enterprise-header-mobile .smllogo img {
        width: 183px;
        height: 30px;
    }

    .enterprise-header-mobile .wsanimated-arrow span,
    .enterprise-header-mobile .wsanimated-arrow span:after,
    .enterprise-header-mobile .wsanimated-arrow span:before {
        background: #ffffff;
    }

    .font-20 {
        font-size: 15px;
        line-height: 28px;
    }

    section#smart-features .font-22 {
        font-size: 17px !important;
        font-weight: 500 !important;
    }

    /* New navigation CSS END */
}

@media (max-width: 768px) {
    h2 {
        font-size: 24px;
        line-height: 32px;
    }

    h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .catalog-hero-bnr h1 {
        font-size: 28px;
        line-height: 42px;
    }

    .catfilters {
        padding: 10px;
    }

    .categorislist {
        position: fixed;
        top: 0;
        height: 100%;
        z-index: 999;
        left: 0;
        background-color: #10101073;
        width: 100%;
        transition: 100ms ease all;
        visibility: hidden;
    }

    .categorislist #categories-list {
        width: 250px;
        overflow-y: scroll;
        padding-bottom: 25px;
        padding-top: 10px !important;
        background: #ffffff;
        height: 100%;
        position: relative;
        transition: 300ms ease all;
        left: -260px;
        padding: 0 10px;
    }

    .categorislist.active {
        visibility: visible;
    }

    .categorislist.active #categories-list {
        left: 0;
        transition: 300ms ease all;
    }

    .catfilters.active {
        background-color: var(--PrimaryBgColor);
        color: #fff;
        font-weight: 500;
    }

    .navigation {
        padding-bottom: 0;
        width: 100%;
        max-height: 270px;
    }

    .navigation.fixed {
        top: 94px;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
        background: #e7f1ff;
        height: 40px;
    }

    .navigation.fixed .onlymobile {
        padding-bottom: 15px;
        height: 200px;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

    .mheading {
        font-size: 22px;
    }

    .blogslider {
        width: 250px;
    }

    .integration-nav.nav-tabs .nav-link {
        width: 115px;
        height: 115px;
    }

    .form-switch .form-check-input {
        width: 3.3em;
    }

    .btn {
        font-size: 14px;
    }

    .form-control,
    .form-select,
    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="number"],
    input[type="tel"],
    input[type="url"],
    input[type="search"],
    select,
    textarea {
        font-size: 16px !important;
    }

    .cattitle {
        font-size: 20px;
    }

    .producttitle {
        font-size: 20px;
        line-height: 28px;
        margin-top: 12px;
    }

    #swagifyworks .nav-item {
        flex: 0 0 auto;
        width: 25%;
    }

    .font-40,
    .font-48 {
        font-size: 28px;
        line-height: 36px;
    }

    /* catalog page css  */
    .stick-banner h2 {
        font-size: 20px !important;
        line-height: 26px;
        margin-bottom: 7px !important;
    }

    .heading-line {
        width: 100%;
    }

    .herov3 {
        background-blend-mode: unset;
    }

    .progressBarContainer div img {
        height: 60px;
        width: 82%;
    }

    .college-bg {
        background-size: cover;
    }

    .modal-head-logo {
        padding: 20px 10px;
    }

    .logos .logo-img-area {
        border: 1px solid #E2E9E9;
        width: 130px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
    }

    .herov3:after {
        content: none;
        background-color: none;
    }

    .font-36 {
        font-size: 26px;
        line-height: 36px;
    }

    #choose-free-plan .font-36 {
        font-size: 24px;
        line-height: 34px;
    }

    .search-form input {
        width: 100%;
    }

    .number-box {
        width: 100%;
        text-align: center;
    }

    .number-box:not(:last-child) {
        margin-bottom: 35px;
    }

    .feature-label {
        display: none;
    }

    .mob-label-popular {
        width: fit-content;
        padding: 0px 21px;
        border-radius: 50px;
        background: linear-gradient(95.08deg, #3fa53c 2.49%, #006cd0 97.19%);
        font-size: 12px;
        margin-bottom: 14px;
        display: block;
    }

    #advantage .border-bottom,
    #advantage .border-end {
        border: 0px !important;
    }

    section#smart-features .font-22 {
        font-size: 14px !important;
    }

    .scroll-cards-mobile {
        width: 300px;
    }

    #create-launch-mobile .font-24 {
        font-size: 24px !important;
        line-height: 34px !important;
    }

    #create-launch-mobile .font-18 {
        font-size: 18px !important;
        line-height: 26px !important;
    }

    #carouselManage .carousel-item {
        padding-right: 15px;
    }

    #carouselManage .carousel-inner {
        padding-left: 15px;
    }

    .font-24-mob {
        font-size: 24px;
    }

    .font-mob-18 {
        font-size: 18px;
    }

    /* table dropdown view css  */
    .table-itms {
        display: flex;
        justify-content: space-between;
        border: 1px solid #D9DBE9;
        border-radius: 8px;
    }

    .table-itms-left {
        background-color: #DFEBF1;
        border-right: 1px solid #D9DBE9;
        border-top-left-radius: 7px;
        border-bottom-left-radius: 7px;
        width: 50%;
        padding: 15px 8px;
    }

    .table-itms-right {
        background-color: white;
        border-top-right-radius: 7px;
        border-bottom-right-radius: 7px;
        width: 50%;
        padding: 15px 8px;
    }

    .flex-width-50 {
        width: 50%;
    }

    .logo-select {
        padding: 10px 10px;
    }

    .table-section {
        opacity: 0;
        transition: opacity 0.1s ease-in-out;
        display: none;
    }

    .table-section.show {
        display: block;
        opacity: 1;
    }

    #design-lab-fit.bg-gradient-5 {
        background: linear-gradient(180deg, #E1ECF8 0%, #EAF7F2 100%);
    }

    div#mobile-transform-design img {
        width: 228px;
    }

    .slick-dots {
        bottom: -25px;
    }

    .slick-dots li button:before {
        color: #000;
        font-size: 12px;
    }

    /* Hide text inside slick dots and show as plain circles */
    .testimonials-slider-mobile .slick-dots li button {
        font-size: 0;
        line-height: 0;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #D9DBE9;
        /* Customize color */
        padding: 0;
        border: none;
    }

    .testimonials-slider-mobile .slick-dots li.slick-active button {
        background-color: #005757;
        min-width: 20px;
        border-radius: 30px;
    }

    .testimonials-slider-mobile .slick-dots li {
        margin: 0 4px;
    }

    .testimonials-slider-mobile .slick-dots {
        bottom: -25px;
        display: flex;
        list-style-type: none;
        justify-content: center;
        margin-top: 8px;
    }

    .testimonials-slider-mobile .slick-slide {
        margin-right: 10px;
    }

    .testimonials-slider-mobile .slick-list {
        margin-right: -10px;
    }

    .testimonials-slider-mobile .test-slider-content-mob h5 {
        max-height: 76px;
    }

    .test-slider-content-mob p {
        max-height: 60px;
    }

    .test-slider-content-mob h5,
    .test-slider-content-mob p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        /* Limit to 3 lines */
        -webkit-box-orient: vertical;
    }

    .testimonials-slider-mobile .slick-slide {
        width: 100%;
    }

    form#contactform .font-18 {
        font-size: 22px;
        line-height: 33px;
    }

    .img-filter3:after {
        height: 42%;
        background: linear-gradient(0deg, #dbe8ef 15.76%, #dbe8ef 21.55%, rgb(219 232 239 / 89%) 49.73%, rgba(219, 232, 239, 0) 72%);
    }
}

@media (max-width: 767px) {
    .font-100 {
        font-size: 30px;
        line-height: 36px;
    }

    /* Pricing cards hide show  */
    .hide-show-more-feature {
        display: none;
    }

    #show-less {
        display: none;
    }

    section#smart-tool .neon-border {
        border: none;
    }

    .no-scratch {
        background-image: none;
        background-color: #032a2b;
    }


}

@media (max-width: 576px) {

    /* catalog page css  */
    .top-sell .font-20 {
        font-size: 20px;
    }

    .top-sell .font-15 {
        font-size: 14px;
        line-height: 22px;
    }

    .lead-profit .font-24,
    .trend-catagories .font-24,
    .trend-prod .font-24,
    .supplier-rated .font-24 {
        font-size: 18px;
    }

    .lead-profit .font-15,
    .trend-catagories .font-15,
    .trend-prod .font-15,
    .supplier-rated .font-15 {
        font-size: 14px;
        line-height: 22px;
    }

    .heading-absolute {
        padding-left: 15px;
        padding-right: 15px;
    }

    .stitch-banner-mob .btn {
        position: absolute;
        top: 28%;
        left: 0;
        right: 0;
        width: fit-content;
        margin: auto;
    }

    .product-list-card {
        padding: 12px !important;
        align-items: center;
    }

    .product-list-card .p-list-img-area {
        width: 24%;
        margin-right: 4%;
    }

    .product-list-card .product-description {
        width: 72%;
    }

    .text-truncate-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2em;
        max-height: 2.4em;
        white-space: normal;
    }

    .text-truncate-4 {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }



    .gx-36 {
        --bs-gutter-x: 20px;
    }

    .heading-line {
        width: 100%;
    }

    .product-list-card .mb-2-5 {
        margin-bottom: 5px !important;
    }

    .mobile-block {
        display: block;
        height: 46px;
        line-height: 27px;
    }

    .bg-combined {
        background-position: bottom right;
    }

    .discover-more .font-32 {
        font-size: 20px;
    }

    .discover-more .font-18 {
        font-size: 14px;
    }

    .progressBarContainer div img {
        height: 42px;
        width: 100%;
        object-fit: contain;
    }

    .merce-logo {
        width: 100% !important;
    }

    .testimonial-slider-bg {
        margin-top: 93px;
    }

    .branded-products-slider {
        min-height: 309px;
    }

    .modal-head-logo {
        padding: 22px 10px;
    }

    .steps-line {
        display: none;
    }

    .logos .logo-img-area {
        width: 108px;
        height: 53px;
    }

    /* .case-study-slider .single-item .slick-list {
        margin: 0 0px;
    } */
    .step-circle {
        width: 26px;
        height: 26px;
    }

    .product-look .font-16 {
        font-size: 14px;
    }

    .product-look .font-40 {
        font-size: 22px;
        line-height: 32px;
    }

    .mobile-step-images .font-20 {
        font-size: 20px !important;
    }

    .herov4 {
        background: linear-gradient(0deg, #535664 -11.31%, #112E45 -11.3%, #002925 64.17%);
    }

    .mob-grey {
        color: #A0A3BD !important;
    }

    .icon-cards {
        width: 64px;
        height: 64px;
    }

    .icon-cards img {
        width: 42px !important;
        height: 42px !important;
    }

    .herov5 {
        background: linear-gradient(0deg, #535664 -1.13%, #112E45 -1.12%, #002925 99.74%);
    }

    .herov7 {
        background: linear-gradient(180.3deg, #535664 -1.13%, #112E45 -1.12%, #002925 99.74%);
    }

    .font-mob-24 {
        font-size: 24px !important;
        line-height: 34px;
    }

    .font-36 {
        font-size: 18px;
        line-height: 28px;
    }

    .taste-card .mb-2-5.mb-0 {
        margin-bottom: 0px !important;
    }

    .search-form input {
        width: 100%;
        height: 48px;
        background: #FCFCFC;
        box-shadow: 0px 4px 24px 0px #0000001F !important;
    }

    .shadow-9 {
        box-shadow: 0px 4px 24px 0px #0000001F;
    }

    .truncate-text-6 {
        display: -webkit-box;
        -webkit-line-clamp: 6;
        /* Limit to 6 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 15px;
    }

    .w-80-img {
        width: 61px;
        height: 61px;
    }

    .quick-guide .font-13 {
        font-size: 15px !important;
    }

    .art-template-table,
    .shipping-table {
        font-size: 12px;
    }

    .art-template-table th,
    .art-template-table td,
    .shipping-table th,
    .shipping-table td {
        line-height: 16px;
    }

    #description span.material-symbols-outlined.font-32 {
        font-size: 32px !important;
    }

    #description .font-13 {
        font-size: 15px !important;
    }

    .nav-tabs.mobile-scroll {
        overflow: scroll;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: left !important;
        overflow-y: hidden;
        border-radius: 15px 15px 0px 0px !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
        white-space: nowrap;
        border-bottom: 0;
    }

    .nav-tabs.mobile-scroll::-webkit-scrollbar {
        display: none;
    }

    .product-detail .mobile-scroll .nav-link.active {
        border-bottom: 0;
        color: #FCFCFC !important;
        background: #14142B !important;
        border-radius: 50px;
        padding: 4px 15px;
        opacity: 1;
    }

    .product-detail .mobile-scroll .nav-link {
        border-bottom: 0;
        color: #4E4B66 !important;
        background: #EFF0F6 !important;
        border-radius: 50px;
        padding: 4px 15px;
        opacity: 1;
        width: fit-content !important;
    }

    .success-slider .slick-slide {
        padding: 24px 20px;
    }

    .waves-2::after {
        bottom: -4px;
        height: 8px;
    }

    section#online-tool .font-16 {
        font-size: 13px !important;
        font-weight: 600 !important;
        line-height: 22px;
    }

    section#scale-fast .font-16,
    section#showcase-brand .font-16,
    section#creator-love .font-18,
    section#creator-love .font-15,
    section#your-fans-ready .font-18 {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    section#scale-fast h5 {
        font-size: 20px !important;
        font-weight: 600 !important;
    }

    section#sell-to-fans-hero .font-18 {
        font-size: 14px;
    }

    section#experience-it .font-36 {
        font-size: 28px !important;
        line-height: 34px;
    }

    section#grow-business-hero .font-18,
    section#more-sales .font-18,
    section#existing-merch .font-18,
    section#showcase-brand .font-18,
    section#tools-apps-hero .font-18 {
        font-size: 14px !important;
        line-height: 24px !important;
    }

    section#existing-merch .font-20 .font-18 {
        font-size: 18px !important;
        line-height: 26px !important;
    }

    section#smart-tool .font-60 {
        font-size: 28px;
        line-height: 36px;
    }

    .arrow-down-half {
        margin-top: -15px;
        margin-right: 15px;
    }

    .waves-top::after {
        bottom: -4px;
        width: 100%;
        height: 8px;
    }

    .font-14-mobile.font-16 {
        font-size: 14px !important;
    }

    .font-14-mobile.font-16.fw-500 {
        font-weight: 400 !important;
    }

    #feature .font-22 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.27px;
    }

    section#your-fans-ready .font-36 {
        font-size: 24px;
        line-height: 34px;
    }

    .font-18.font-14-mob {
        font-size: 14px;
    }

    .font-60.font-mob-24 {
        font-size: 24px !important;
        line-height: 34px !important;
    }

    img.check-icon {
        width: 18px;
        height: 18px;
    }

    .font-40.font-28-mob {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    .single-prod-slider .font-20 {
        font-size: 20px;
    }

    .font-20.font-16-mob {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .font-18.font-mob-18 {
        font-size: 18px !important;
        line-height: 26px !important;
    }

    .font-15.font-14-mob {
        font-size: 14px !important;
        line-height: 22px !important;
    }

    section#experience-simple-creating .font-18 {
        font-size: 14px !important;
        line-height: 22px !important;
    }

    .number-box .font-18 {
        font-size: 16px !important;
    }

    .bg-img-gradient-2 {
        background-image: linear-gradient(45deg, #ffffffcc 0%, #eaf7f2 100%), url(../images/homev2/section-1-bg.webp);
        background-position: center;
        background-size: cover;
    }

    .bg-gradient-6 {
        background: linear-gradient(180deg, #DEEAF6 0%, #EAF7F2 100%);
    }

    .bg-img-gradient-3 {
        background-image: linear-gradient(180deg, #DEEAF6 0%, #EAF7F2 100%), url(../images/homev2/section-1-bg.webp);
    }

    .yellow-btn {
        padding: 0.77rem 0.75rem;
        font-size: 15px !important;
    }

    form#contactform .font-12 {
        font-size: 13px;
        line-height: 20px;
    }

    div#carouselExampleFade img {
        object-fit: cover;
        max-height: 200px;
    }

    #contactform label.font-15 {
        font-size: 12px !important;
    }

    #contactform input#phone {
        font-size: 16px !important;
    }

    .phone-input-container .form-floating>label {
        top: -10px;
        left: 65px;
    }
}

@media (max-width: 575px) {
    .m-top {
        margin-top: 40px;
    }

    /* .hero-bnr {
        height: 318px;
    } */

    h1 {
        font-size: 34px;
        line-height: 46px;
    }

    .warms::before,
    .warms::after,
    .how-works::after {
        display: none;
    }

    .brush-bg::after {
        top: -18px;
    }

    .how-works {
        margin: 28% 0 0;
    }

    .integrations-bg {
        height: auto;
    }

    .largetext {
        font-size: 42px;
        line-height: 54px;
    }

    .cat-sec h6 {
        font-size: 15px;
    }

    .mheading {
        font-size: 15px;
    }

    .toplinks {
        font-size: 11px;
    }

    #pricetabs .nav-item {
        width: 50%;
        border: 1px solid #dee2e6;
    }

    .integration-nav.nav-tabs .nav-link {
        width: 70px;
        height: 70px;
    }

    .font-24 {
        font-size: 18px;
        line-height: 26px;
    }

    .font-18 {
        font-size: 15px;
    }

    .font-xxl {
        font-size: 24px;
        line-height: 36px;
    }

    br {
        display: none;
    }

    .font-32 {
        font-size: 18px;
        line-height: 26px;
    }

    .swagify-reels {
        min-width: 100px !important;
    }

    #swagifyworks .nav-item {
        flex: 0 0 auto;
        width: 50%;
        border: 1px solid #dedede;
        border-radius: 0;
    }

    #swagifyworks .nav-item .nav-link {
        font-size: 13px;
    }

    #swagifyworks .nav-item .nav-link.active {
        border-bottom: none;
        background: rgba(53, 150, 106, 0.2);
    }

    .font-40,
    .font-48 {
        font-size: 24px;
        line-height: 34px;
    }

    .logo-slick-slider .slick-slide {
        margin-right: 20px;
    }

    .vid-card img {
        object-fit: cover;
    }

    .title-label {
        padding: 14px 23px;
    }

    .custom-pill-tabs .btn {
        font-size: 13px;
        padding: 9px 8px !important;
    }

    .font-60 {
        font-size: 28px;
        line-height: 36px;
    }

    .profit-calc .font-32 {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    section#smart-tool.herov5 {
        background: linear-gradient(179deg, #535664 -1.13%, #112E45 -1.12%, #002925 99.74%) !important;
    }
}

@media (max-width: 395px) {
    .custom-pill-tabs .btn {
        font-size: 12px;
        padding: 9px 7px !important;
    }

    section#smart-features .font-22 {
        font-size: 13px !important;
    }
}

/* PRODUCT DETAIL REDESIGN STYLES */
#product-detail .breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

#product-detail .breadcrumb a:hover {
    color: #000;
}

/* .promo-banner { background-color: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 15px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; } */
/* .promo-banner .logo { height: 30px; } */

.product-img-wrapper {
    background-color: #f1f1f1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid #D9DBE9;
}

.side-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-thumbnails img {
    width: 60px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.side-thumbnails img.active {
    border: 2px solid #000;
}

.bold-graphics-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #eee;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.bold-graphics-banner img {
    height: 60px;
}

.print-technique-btn {
    border: 2px solid #E4E5EC;
    background: #fff;
    padding: 6px 6px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    color: #4E4B66;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .print-technique-btn {
        flex: none;
        width: 210px;
    }
}

/* .print-technique-btn:hover,
.print-technique-btn.active {
    border-color: var(--colorPrimary, #002424) !important;
    color: var(--colorPrimary, #002424) !important;
} */

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
    position: relative;
    margin-bottom: 4px;
}

.color-swatch.active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid #000;
    border-radius: 50%;
}

.size-box {
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #4E4B66;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    min-width: 45px;
    text-align: center;
    margin-right: 8px;
    margin-bottom: 4px;
    font-weight: 600;
    display: inline-block;
}

.size-box:hover,
.size-box.active {
    border-color: #4E4B66;
    font-weight: 600;
}

.start-designing-btn {
    background-color: var(--colorPrimary, #002424);
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.start-designing-btn:hover {
    background-color: #1a4242;
    color: #fff;
    opacity: 0.9;
}

.custom-tabs .nav-link {
    color: #6c757d;
    background-color: #EFF0F6;
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 13px;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 10px;
    border: none;
    white-space: nowrap;
}

.custom-tabs .nav-link.active {
    background-color: var(--colorPrimary, #002424);
    color: #fff;
}

.vendor-card {
    background-color: #e8f4f8;
    border-radius: 12px;
    padding: 20px;
}

.coming-soon-vendor {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

.info-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.info-card-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 15px;
}

#sizeGuideTabs .nav-link,
#printGuideTabs .nav-link {
    background-color: transparent;
    color: #4E4B66;
    border: none;
    transition: all 0.3s ease;
}

#sizeGuideTabs .nav-link.active,
#printGuideTabs .nav-link.active {
    background-color: var(--colorPrimary, #002424) !important;
    color: #fff !important;
}

/* Top Selling Products Slider Styling */
.top-selling-slider .px-2 .position-relative {
    /* width: 160px; */
    /* height: 160px; */
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.top-selling-slider .px-2 .position-relative img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Prevent vertical stack/FOUC before Slick Slider initializes */
.top-selling-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
    justify-content: start;
}

.top-selling-slider:not(.slick-initialized)>div {
    flex: 0 0 auto;
    width: 160px;
    margin-right: 10px;
}

.top-selling-slider .px-2 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

/* Product Card Hover Overlay Styling */
.productcard .position-relative {
    position: relative;
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    pointer-events: none;
}

.productcard:hover .product-card-overlay {
    opacity: 1;
    pointer-events: auto;
}

.btn-overlay {
    width: 160px;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.btn-add-design {
    background-color: #E2F89C;
    /* light lime color */
    color: #002424 !important;
    border: none;
}

.btn-add-design:hover {
    background-color: #D4F274;
    transform: translateY(-1px);
}

.btn-view-details {
    background-color: #ffffff;
    color: #002424 !important;
    border: 1px solid #D9D9D9;
}

.btn-view-details:hover {
    background-color: #f7f7f7;
    transform: translateY(-1px);
}

/* Iubenda Cookie Banner Contrast Overrides */
#iubenda-cs-banner .iubenda-cs-accept-btn,
#iubenda-cs-banner .iubenda-cs-btn-primary {
    background-color: #002424 !important;
    color: #ffffff !important;
    border-color: #002424 !important;
}

#iubenda-cs-banner .iubenda-cs-accept-btn:hover,
#iubenda-cs-banner .iubenda-cs-btn-primary:hover {
    background-color: #005757 !important;
    border-color: #005757 !important;
}

#iubenda-cs-banner .iubenda-cs-reject-btn,
#iubenda-cs-banner .iubenda-cs-btn-secondary {
    background-color: #f7f7f7 !important;
    color: #002424 !important;
    border-color: #d9d9d9 !important;
}

#iubenda-cs-banner .iubenda-cs-reject-btn:hover,
#iubenda-cs-banner .iubenda-cs-btn-secondary:hover {
    background-color: #eeeeee !important;
}