:root {
    --white: #ffffff;
    --black: #000000;
    --text: #474747;
    --primary-color: #FFCB0C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    font-weight: 400;
    scroll-behavior: smooth;
}

a,
.btn,
button,
.button,
img {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

a {
    text-decoration: none !important;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.form-control:focus,
.form-select:focus,
.btn-close:focus {
    border-color: var(--primary-color) !important;
    outline: 0;
    box-shadow: unset;
}

/* scrollbar styling */
/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    /* display: none; */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

@-moz-document url-prefix() {
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) transparent;
    }
}

::selection {
    color: #fff;
    background: var(--primary-color);
}

.header {
    position: sticky;
    z-index: 99;
    top: 0;
    width: 100%;
    background-color: var(--white);
}

.navScrolled {
    -webkit-box-shadow: 0px 4px 24px 0px #5D59490F;
    box-shadow: 0px 4px 24px 0px #5D59490F;
    animation: scrollSticky 0.5s ease-out;
    -webkit-animation: scrollSticky 0.5s ease-out;
}

@keyframes scrollSticky {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header .navbar-nav li .nav-link {
    position: relative;
    color: var(--black);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 0;
    display: flex;
    align-items: center;
}

.header .navbar-nav li .nav-link i,
.header .navbar-nav li .nav-link svg {
    font-size: 12px;
    margin-left: 8px;
    transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -ms-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
}

.header .navbar-nav li:hover a i,
.header .navbar-nav li:hover a svg {
    transform: rotate(180deg);
}

.header .navbar-nav {
    gap: 40px;
    align-items: center;
}

.header .navbar-nav li:hover .nav-link,
.header .navbar-nav li .nav-link:hover,
.header.navScrolled .navbar-nav li .nav-link:hover,
.header .navbar-nav li .nav-link.active {
    color: var(--primary-color);
}

.header_drop .dropdown_box {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-transform: uppercase;
    background-color: var(--black);
    overflow: hidden;
}

.header_drop .dropdown_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #fff;
}

/* .header_drop .dropdown_box::after {
    position: absolute;
    content: '\f078';
    font-family: "FontAwesome";
    border: unset;
    right: -22px;
    color: #000;
} */

.header_drop .dropdown-menu {
    min-width: 170px;
    border: unset;
    margin-top: 10px;
    box-shadow: 0px 0px 40px 0px #0000000D;
}

.header_drop .dropdown-menu li a {
    font-size: 13px;
    font-weight: 600;
}

.header_drop .dropdown-menu li a:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.text_red {
    color: #FF0000 !important;
}

.head_btn {
    display: flex;
    padding: 8px 12px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--black);
    border: 1px solid #E4E4E4;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.head_btn:hover {
    border-color: var(--primary-color);
}

.primary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: unset;
    font-size: 19px;
    font-weight: 400;
    background-image: radial-gradient(black 1px, transparent 1px);
    background-size: 6px 6px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    color: var(--white);
    background-color: transparent;
}

.primary-btn span {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    background-color: var(--black);
    color: var(--white);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    border: 1px solid var(--black);
}

.primary-btn:hover span {
    top: -10px;
    left: 10px;
}

.primary-btn-w span {
    color: var(--black);
    border-color: var(--black);
    background-color: var(--white);
}

.btn-dot {
    background-image: radial-gradient(white 1px, transparent 1px);
}

.btn-p {
    padding: 20px 48px !important;
}

.home_banner_btn .primary-btn {
    min-width: 201px;
}
.home_banner_btn .primary-btn span {
    width: 100%;
}

.comman-py {
    padding: 100px 0;
}

.custom-toggler {
    border: none;
    background: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 99999;
}

.custom-toggler:focus {
    box-shadow: unset;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.navbar-toggler.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.offcanvas {
    background-color: var(--white);
    transition: transform 0.6s ease;
    width: 100% !important;
}

.mega-menu_list {
    position: absolute;
    top: 52px;
    right: auto;
    opacity: 0;
    min-width: 220px;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.25s linear;
    background-color: var(--white);
    box-shadow: 0px 0px 40px 0px #0000001A;
    border-radius: 10px;
    padding: 15px 20px;
}

.mega-menu:hover .mega-menu_list {
    opacity: 1;
    visibility: visible;
}

.mega-menu_list li .mega-menu_list_link {
    color: var(--black) !important;
}

.mega-menu_list li .mega-menu_list_link .mega-menu_list_icon {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: var(--white);
}

.mega-menu_list li .mega-menu_list_link:hover {
    color: var(--primary-color) !important;
}

.store-img {
    margin-top: -26px;
}

.home-area {
    padding: 100px 0 200px 0;
    background-image: url('../img/home-bg-1.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 0% -113px;
}

.title,
h1 {
    font-size: 134px;
    line-height: 160px;
    color: var(--black);
    font-weight: 800;
    font-family: "Wix Madefor Display", sans-serif;
}

.home-area .title-text {
    font-size: 18px;
    line-height: 30px;
}

.title-text {
    font-size: 23px;
    line-height: 39px;
    color: var(--text);
}

.hls-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 120px;
    border-radius: 10px;
    background-color: #F1F1F1;
    flex-shrink: 0;
}

.hls-track {
    gap: 40px;
    animation: scrollLeft 20s linear infinite;
}

/* Scroll left */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Scroll right */
@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.heading-box {
    max-width: 1020px;
    margin: auto;
}

.heading, h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 15px;
    color: var(--black);
    font-family: "Wix Madefor Display", sans-serif;
    font-weight: 800;
}

.heading-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
    color: var(--text);
    font-family: "Open Sans", sans-serif;
}

.mb-70 {
    margin-bottom: 70px;
}

.wm-box {
    padding: 40px;
    border-radius: 50px;
    height: 100%;
    background-color: var(--white);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    box-shadow: 0px 0px 80px 0px #0000000F;
}

.wm-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

/* .wm-bg-1{
    background-color: #EFFFF5;
} */
.wm-bg-1 .wm-icon {
    background-color: #C0FFDA;
}

.wm-bg-1 .wm-title {
    color: #129C4A;
}

/* .wm-bg-2{
    background-color: #F3F3FF;
} */
.wm-bg-2 .wm-icon {
    background-color: #CED0FF;
}

.wm-bg-2 .wm-title {
    color: #4C52E3;
}

/* .wm-bg-3{
    background-color: #FFF0F0;
} */
.wm-bg-3 .wm-icon {
    background-color: #FFC4C5;
}

.wm-bg-3 .wm-title {
    color: #DB3A3A;
}

.wm-bg-1 .wm-title,
.wm-bg-2 .wm-title,
.wm-bg-3 .wm-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.wm-title,
h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    font-family: "Wix Madefor Display", sans-serif;
}

.wm-text {
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: #323232;
    margin-bottom: 0;
}

.wm-box:hover .wm-icon {
    -webkit-animation: rotate-vert-center 0.9s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation: rotate-vert-center 0.9s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

@-webkit-keyframes rotate-vert-center {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

@keyframes rotate-vert-center {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

.comman-py-100 {
    padding: 100px 0;
}

.bg-gray-color {
    background-color: #F1F1F1;
}

.sell-more-container {
    max-width: 1320px;
    margin: auto;
}

.sell-more-box {
    border: 1px solid #9F9F9F;
    background-color: #F1F1F1;
    padding: 10px;
    border-radius: 20px;
}

.sell-more-left .nav-tabs {
    flex-direction: column;
    gap: 10px;
}

.sell-more-left .nav-tabs li a {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 23px;
    font-weight: 400;
    color: var(--black);
    padding: 45px 30px;
    border: 1px solid #9F9F9F;
    border-radius: 15px;
}

.sell-more-left .nav-tabs li a.active {
    background-color: var(--white);
}

.sm-tab-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #F5F5F5;
    flex-shrink: 0;
}

.sell-more-right {
    height: 100%;
    padding: 30px;
    border-radius: 15px;
    background-color: var(--white);
}

.sell-more-right-top {
    gap: 20px;
    margin-bottom: 30px;
}

.smrt-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.bg-purple {
    background-color: #9747FF;
}

.bg-green {
    background-color: #129C4A;
}

.bg-red {
    background-color: #DB3A3A;
}

.bg-blue {
    background-color: #4C52E3;
}

.sell-more-right-top p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.theme-store-track {
    gap: 25px;
}

.scroll-left {
    animation: scrollLeft 20s linear infinite;
}

.scroll-right {
    animation: scrollRight 20s linear infinite;
}

.theme-store-slider {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.light-green-bg {
    background-color: #CEF5D9;
}

.aio-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 257px;
    height: 120px;
    border-radius: 20px;
    background-color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.aio-box:hover {
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.aio-mainbox {
    margin-top: 140px;
}

.your-store-main {
    background-image: url('../img/dot-bg.png'), url('../img/dot-bg-2.png');
    background-repeat: no-repeat;
    background-position: left top, right bottom;
    background-size: auto;
    background-color: #222222;
    border-radius: 60px;
}

.step-area .heading-box {
    max-width: 889px;
}

.step-main-box {
    display: flex;
    gap: 85px;
    padding-bottom: 200px;
}

.step-main-box .wm-title::before,
.step-main-box::after {
    position: absolute;
    content: '';
}

.step-main-box .wm-title::before {
    top: 14px;
    left: -48px;
    width: 18px;
    height: 18px;
    background-color: var(--black);
    border-radius: 50%;
}

.step-main-box::after {
    top: 14px;
    left: -40px;
    width: 1.5px;
    height: 100%;
    background-color: var(--black);
}

.step-main-box .wm-title {
    position: sticky;
    top: 120px;
    height: fit-content;
    margin: 0;
    min-width: 170px;
}

.step-main-cont p {
    font-size: 20px;
    line-height: 34px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 30px;
    max-width: 928px;
}

.step-main-cont .primary-btn span {
    padding: 10px 15px;
}

.step-main {
    padding-left: 180px;
}

.border-bottom-radius {
    position: relative;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    box-shadow: 0px 12px 15px 0px #00000099;
}

.footer {
    padding: 164px 0 50px 0;
    background-color: #222222;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-top,
.footer-middle {
    margin-bottom: 60px;
}

.footer-top p {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
}

.footer-link-box h2 {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    font-family: "Wix Madefor Display", sans-serif;
    line-height: normal;
}

.footer-link-ul li a {
    font-size: 18px;
    line-height: 40px;
    font-weight: 400;
    color: var(--white);
}

.footer-bottom {
    padding-top: 40px;
}

.footer-bottom::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 1px;
    width: 78px;
    background-color: #ffffff80;
}

.footer-bottom-left,
.footer-bottom-right {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}

.social-ul li a {
    font-size: 30px;
    color: var(--white);
}

.footer-link-ul li a:hover,
.social-ul li a:hover {
    color: var(--primary-color);
}

.mob-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--black);
    border: 1px solid var(--black);
}

.mob-btn:hover {
    color: var(--white);
    background-color: var(--black);
}

.bg-yellow-img,
.bg-yellow-img2 {
    background-image: url('../img/home-bg-1.png'), url('../img/home-bg-3.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 0% -113px, 100% 100%;
}

.bg-yellow-img2 {
    background-image: url('../img/home-bg-1.png');
    background-position: 0% -113px;
}

.bg-yellow-img1 {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: -1;
}

.bg-yellow-img3,
.bg-yellow-img4 {
    position: absolute;
    top: 100px;
    right: 0;
    z-index: -1;
}

.signin-box {
    max-width: 580px;
    margin: auto;
    padding: 40px 65px;
    border-radius: 50px;
    background-color: var(--white);
    box-shadow: 0px 4px 20px 0px #B4B4B466;
}

.signin-logo {
    margin-bottom: 60px;
}

.signin-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 30px;
    font-family: "Wix Madefor Display", sans-serif;
}

.signin-form .form-control {
    font-size: 18px;
    font-weight: 400;
    padding: 16px 20px;
    border-radius: 0;
    color: var(--black);
    border-color: #E4E4E4;
    /* background-color: #F8F8F8; */
    font-family: "Wix Madefor Display", sans-serif;
}

.signin-form .form-control::placeholder {
    color: #B8B8B8;
}

.eye {
    top: 19px;
    right: 20px;
    cursor: pointer;
}

.frgt {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    font-family: "Wix Madefor Display", sans-serif;
}

.signin-form .primary-btn span {
    padding: 12px 28px;
}

.or-line {
    margin: 30px 0;
}

.or-line::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #E4E4E4;
}

.or-line span {
    position: relative;
    font-size: 20px;
    font-weight: 400;
    padding: 0 20px;
    color: #B8B8B8;
    z-index: 1;
    background-color: var(--white);
    font-family: "Wix Madefor Display", sans-serif;
}

.signin-with {
    margin-bottom: 40px;
}

.signin-with-box {
    width: 108px;
    height: 60px;
    border-radius: 7px;
    background-color: #F1F1F1;
}

.signin-bottom-text {
    font-size: 16px;
    font-weight: 400;
    color: #949494;
    font-family: "Wix Madefor Display", sans-serif;
}

.signin-bottom-text a {
    color: var(--black);
}

.signin-bottom-text a:hover {
    text-decoration: underline !important;
}

.signin-form .form-check-input {
    border-radius: 0;
    border-color: var(--black);
}

.signin-form .form-check-input:checked {
    background-color: #000000;
}

.signin-form .form-check-input:focus {
    box-shadow: unset;
}

.iti {
    display: block;
    --iti-path-flags-1x: url('../img/flags.webp');
    --iti-path-flags-2x: url('../img/flags@2x.webp');
}

.iti__selected-country-primary:hover {
    background-color: transparent !important;
}

.iti__selected-country::before {
    position: absolute;
    right: -12px;
    content: '';
    width: 1px;
    height: 35px;
    background-color: #B8B8B8;
}

.iti .form-control {
    padding-left: 105px !important;
}

.iti__search-input {
    padding: 5px;
    border-color: #dddddd;
}

.-mt-50 {
    margin-top: -50px;
}

.month-year-tab {
    max-width: 404px;
    margin: auto;
    padding: 13px 15px;
    border-radius: 15px;
    border: 1px solid #E4E4E4;
    background: #fff;
}

.month-year-btn {
    font-size: 18px;
    font-weight: 400;
    min-width: 170px;
    padding: 15px 60px;
    border-radius: 10px;
    border: unset;
    background-color: transparent;
    color: var(--black);
    font-family: "Wix Madefor Display", sans-serif;
    min-height: 54px;
}

.month-year-btn.active {
    color: var(--white);
    background-color: var(--black);
}

.plan-card-box {
    height: 100%;
    padding: 40px;
    border: 1px solid #EEEEEE;
    background-color: var(--white);
    box-shadow: 0px 4px 50px 0px #B4B4B44D;
}

.plan-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--black);
    font-family: "Wix Madefor Display", sans-serif;
}

.plan-head-left p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
}

.green {
    color: #129C4A !important;
}

.red {
    color: #DB3A3A !important;
}

.blue {
    color: #4C52E3 !important;
}

.plan-head {
    margin-bottom: 28px;
}

.pp-text {
    font-size: 16px;
    font-weight: 400;
    color: #777777;
    font-family: "Wix Madefor Display", sans-serif;
}

.pp-price {
    font-size: 60px;
    font-weight: 700;
    color: var(--black);
    font-family: "Open Sans", sans-serif;
}

.passwordField::-ms-reveal {
    display: none;
}

.plan-features h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    font-family: "Open Sans", sans-serif;
}

.plan-features-ul li {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    font-family: "Open Sans", sans-serif;
}

.plan-features-ul li:not(:last-child) {
    margin-bottom: 20px;
}

.most-popular {
    position: absolute;
    right: 0;
    bottom: -24px;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    font-family: "Open Sans", sans-serif;
    padding: 5px 24px;
    border-radius: 10px 10px 0 0;
}

.scale-box {
    max-width: 1484px;
    margin: auto;
    padding: 30px 50px;
    border: 1px solid #E6E6E6;
    border-radius: 30px;
    background-image: url('../img/dot-bg-3.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.demo-slider {
    padding: 30px 0;
    background-color: var(--primary-color);
}

.demo-title {
    font-weight: 400;
}

.faq-main,
.ready-area .heading-box {
    max-width: 1142px;
}

.faq-main .accordion .accordion-item {
    border: unset;
    border-bottom: 1px solid #BDBDBD;
    color: var(--black);
    background-color: transparent;
    padding: 50px 0;
}

.faq-main .accordion .accordion-item .accordion-button:not(.collapsed) {
    color: var(--black);
    box-shadow: unset;
}

.faq-main .accordion .accordion-item .accordion-button::after {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--black);
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 144L48 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0 0 144c0 17.7 14.3 32 32 32s32-14.3 32-32l0-144 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-144z'/%3E%3C/svg%3E");
}

.faq-main .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    background-color: var(--black);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M416 208H32c-17.67 0-32 14.33-32 32s14.33 32 32 32h384c17.67 0 32-14.33 32-32s-14.33-32-32-32z'/%3E%3C/svg%3E");
}

.faq-main .accordion .accordion-item .accordion-button {
    padding: 0;
    color: var(--black);
    background-color: transparent;
    gap: 15px;
}

.faq-main .accordion .accordion-item .accordion-button:focus {
    color: var(--black);
    box-shadow: unset;
    background-color: unset;
}

.faq-main .accordion .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed,
.faq-main .accordion .accordion-item:last-of-type {
    border-radius: 0;
}

.faq-main .accordion .accordion-item .accordion-body {
    padding: 12px 0 0 0;
    max-width: 90%;
}

.faq-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    font-family: "Wix Madefor Display", sans-serif;
}

.faq-main .heading-text {
    font-size: 18px;
}

.ready-area .heading-text {
    max-width: 820px;
    margin: auto;
}

.pt-100 {
    padding-top: 100px;
}

.all-theme-tab {
    border-bottom: 1px solid #E6E6E6;
}

.all-theme-main .nav-tabs {
    gap: 80px;
    flex-wrap: nowrap;
    overflow: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.all-theme-main .nav-tabs::-webkit-scrollbar {
    display: none;
}

.all-theme-main .nav-tabs li {
    flex-shrink: 0;
}

.all-theme-main .nav-tabs li a {
    display: inline-flex;
    font-size: 20px;
    font-weight: 400;
    color: #808080;
    padding-bottom: 40px;
    border-bottom: 5px solid transparent;
    font-family: "Wix Madefor Display", sans-serif;
}

.all-theme-main .nav-tabs li a.active {
    color: var(--black);
    border-bottom-color: var(--black);
}

.all-theme-main .nav-tabs li a:hover {
    color: var(--black);
}

.all-theme-img {
    height: 320px;
    overflow: hidden;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
    border: 1px solid #E6E6E6;
}

.all-theme-img img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.all-theme-box {
    display: block;
    /* margin-bottom: 100px; */
}

.all-theme-box:hover .all-theme-img img {
    transform: scale(1.03);
}

.scale-box-2 {
    padding: 80px 70px;
    border-radius: 60px;
}

.scale-box-2 .signin-title {
    font-size: 50px;
    font-weight: 800;
}

.scale-box-2 .scale-left .heading-text {
    max-width: 730px;
}

.feature-head-area .heading-box {
    max-width: 1082px;
}

.light-lavender-bg {
    background-color: #BDC6FF;
}

.light-skyblue-bg {
    background-color: #BDEDFF;
}

.light-cyan-bg {
    background-color: #E6FDFF;
}

.light-yellow-bg {
    background-color: #FFFDF5;
}

.light-azure-bg {
    background-color: #EAF9FF;
}

.feature-card-box {
    padding: 85px 70px;
    border-radius: 60px;
}

.fc-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 70px;
    color: var(--black);
    margin-bottom: 20px;
    font-family: "Wix Madefor Display", sans-serif;
}

.feature-card-main .feature-card-box:not(:last-child) {
    margin-bottom: 90px;
}

.feature-card-main .feature-card-box:nth-child(1) {
    position: sticky;
    top: auto;
    height: auto;
    bottom: 20px;
    z-index: 3;
}

.feature-card-main .feature-card-box:nth-child(2) {
    position: sticky;
    top: auto;
    height: auto;
    bottom: 20px;
    z-index: 2;
}

.feature-card-main .feature-card-box:nth-child(3) {
    position: sticky;
    top: auto;
    height: auto;
    bottom: 20px;
    z-index: 1;
}

.feature-card-left {
    max-width: 709px;
}

.feature-discovery-area .heading-box {
    max-width: 717px;
}

.feature-vision-area .sell-more-box {
    background-color: var(--white);
}

.feature-vision-area .sell-more-right {
    padding: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E6E6E6;
}

.feature-vision-area .sell-more-left .nav-tabs li a {
    position: relative;
    overflow: hidden;
    padding: 22px;
    background-color: #F1F1F1;
}

.feature-vision-area .sell-more-left .nav-tabs li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 0%;
    background-color: var(--black);
    transition: none;
}

.feature-vision-area .sell-more-left .nav-tabs li a.active {
    background-color: var(--white);
}

.feature-vision-area .sell-more-left .nav-tabs li a.active::before {
    animation: tabProgress 5s linear forwards;
}

.fv-tab-cont h5 {
    font-size: 25px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 8px;
    font-family: "Wix Madefor Display", sans-serif;
}

.fv-tab-cont p {
    font-size: 12px;
    font-weight: 400;
    color: #323232;
}

@keyframes tabProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.fm-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #B9EDF2;
}

.fm-cont h5 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    font-family: "Wix Madefor Display", sans-serif;
}

.fm-cont p {
    font-size: 22px;
    font-weight: 400;
    color: #323232;
}

.feature-management-main .col:not(:last-child) {
    /* margin-bottom: 136px; */
}

.feature-reach-box {
    height: 100%;
    padding: 60px 50px;
    border-radius: 30px;
    background-color: #F1F1F1;
}

.fr-cont h5 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 11px;
    font-family: "Wix Madefor Display", sans-serif;
}

.fr-cont p {
    font-size: 22px;
    line-height: 35px;
    font-weight: 400;
    color: #323232;
}

.integration-slider {
    position: relative;
    padding: 20px 0;
    background-color: #FFEFAF;
    transform: rotate(-3.36deg);
}

.integration-slider::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFEFAF;
    opacity: 40%;
    transform: rotate(3.36deg);
}

.integration-track {
    gap: 160px;
}

.gateway-box {
    /* min-height: 340px; */
    height: 100%;
    border-radius: 30px;
    padding: 30px;
    border: 2px solid #EEEEEE;
    background-color: var(--white);
}

.testimonial-navi {
    margin-top: 100px;
}

.testimonial-navi .swiper-button-next,
.testimonial-navi .swiper-button-prev,
.swiper-pagination-fraction {
    position: unset;
    width: auto;
    height: auto;
    margin-top: unset;
}

.testimonial-navi .swiper-button-prev::after,
.testimonial-navi .swiper-button-next::after {
    content: '';
    width: 56px;
    height: 20px;
    font-family: unset;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.testimonial-navi .swiper-button-prev::after {
    transform: rotate(180deg);
    background-image: url('../img/arrow.svg');
}

.testimonial-navi .swiper-button-next::after {
    background-image: url('../img/arrow.svg');
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    width: auto;
}

.policy_main .policy_main_box:not(:last-child) {
    margin-bottom: 50px;
}



.sticky-section {
    position: sticky;
    z-index: 9;
    top: 102px;
    width: 100%;
    box-shadow: unset !important;
    animation: unset !important;
}

.sticky-section-Scrolled {
    -webkit-box-shadow: 0px 4px 24px 0px #5D59490F;
    box-shadow: 0px 4px 24px 0px #5D59490F;
    animation: scrollSticky 0.5s ease-out;
    -webkit-animation: scrollSticky 0.5s ease-out;
}

.ready-area .both-btn .primary-btn .btn-p {
    min-width: 214px;
}

/* Pricing Features list */

.pricing_accordion_area .accordion-item {
    padding: 10px;
    border: 1px solid #E6E6E6;
    border-radius: 20px;
    background-image: url('../img/dot-bg-3.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
}

.pricing_accordion_area .faq-heading {
    font-size: 20px;
    background: transparent !important;
    color: #000;
    width: 100%;
    padding: 22px;
    display: block;
    border-bottom: 1px solid #e6e6e6;
}

.pricing_accordion_area .faq-heading:focus {
    box-shadow: none;
}

.pricing_accordion_area .accordion {
    max-width: 991px;
    margin: auto;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.pricing_accordion_area ul {
    display: grid;
    gap: 15px;
    padding-left: 2rem;
}

.pricing_accordion_area ul,
.pricing_accordion_area li {
    text-decoration: none;
    list-style: none;
}

.pricing_accordion_area li {
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.pricing_accordion_area .included::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0px;
    background: url('../img/included.svg');
    background-repeat: repeat;
    background-size: auto;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.pricing_accordion_area .not-included::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0px;
    background: url('../img/not-included.svg');
    background-repeat: repeat;
    background-size: auto;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.pricing_accordion_area .accordion .accordion-item .ecommerce_features {
    background-color: #f2f2f2;
    border-radius: 10px;
    padding: 16px;
    width: fit-content;
}

.pricing_accordion_area .accordion .accordion-item .accordion-body .addon-list li .addon-content .addon-title {
    font-size: 14px;
    font-weight: 500;
}

.pricing_accordion_area .accordion .accordion-item .accordion-body .addon-list li .addon-content .addon-description {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

.pricing_accordion_area li.not-included {
    color: #1f211d6e;
}

.pricing_accordion_area .pricing-table th,
.pricing_accordion_area .pricing-table td {
    vertical-align: middle;
    text-align: center;
    padding: 16px;
}

.pricing_accordion_area .pricing-table th:first-child,
.pricing_accordion_area .pricing-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.pricing_accordion_area .check {
    font-size: 18px;
}

.pricing_accordion_area .cross {
    font-size: 18px;
}

.pricing_accordion_area .table-wrapper {
    overflow-x: auto;
}

.pricing_accordion_area .pricing-table thead th {
    font-size: 20px;
    font-weight: 600;
}

.pricing_accordion_area .pricing-table {
    border-collapse: collapse;
    min-width: 700px;
}

.pricing_accordion_area .pricing-table tr {
    border-bottom: 1px solid #ddd;
}

.pricing_accordion_area .pricing-table tr:last-child,
.pricing_accordion_area .pricing-table tr:last-child td {
    border-bottom: none;
}



.pricing_accordion_area .pricing-table thead tr th {
    border-bottom: 1px solid #ddd;
}

.pricing_accordion_area .pricing-table td:last-child,
.pricing_accordion_area .pricing-table th:last-child {
    background: #db3a3a17;
}

.pricing_accordion_area .pricing-table td:nth-last-child(2),
.pricing_accordion_area .pricing-table th:nth-last-child(2) {
    background: #4c52e31a;
}

.pricing_accordion_area .pricing-table td:nth-last-child(3),
.pricing_accordion_area .pricing-table th:nth-last-child(3) {
    background: #129c4a12;
}

.pricing_accordion_area .pricing-table td.check {
    color: #129C4A !important;
}

.pricing_accordion_area .pricing-table td.cross {
    color: #DB3A3A !important;
}

.pricing_accordion_area .pricing-table tr:nth-child(odd) {
    background-color: #ffffff !important;
}

.pricing_accordion_area .pricing-table tr:nth-child(even) {
    background-color: #f5f5f5 !important;
}

.special_services_add_ons_card .addon-title {
    font-size: 14px;
    font-weight: 600;
}

.special_services_add_ons_card .addon-description {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

.special_services_add_ons_card {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
}

.special_services_add_ons_card.note_bg {
    background: #fff21a80;
}


#toast-container>div {
    width: max-content !important;
}

.toast.toast-success,
.toast.toast-error,
.toast.toast-warning {
    opacity: 1 !important;
}

@media (min-width: 241px) and (max-width: 480px) {
    #toast-container .toast-message {
        font-size: 13px !important;
    }

    #toast-container .toast-message {
        font-size: 12px !important;
    }
}


.home-area h1.title {
    font-size: 60px;
    line-height: 76px;
}

.home-area h2.title {
    font-size: 40px;
    line-height: normal;
}

.small_heading {
    font-size: 38px;
    line-height: 50px;
    margin-bottom: 15px;
    max-width: 800px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 100%;
}

.list_style_dot li {
    position: relative;
    padding-left: 20px;
}

.list_style_dot li::before {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 100%;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
}

.light_yellow_card {
    background: #F79F3126;
}

.scale_bg_1,
.scale_bg_2,
.scale_bg_3,
.scale_bg_4 {
    position: absolute;
    z-index: -1;
}

.scale_bg_1 {
    top: 30px;
    left: 0px;
}

.scale_bg_2 {
    top: -40px;
    right: 22%;
}

.scale_bg_3 {
    top: 0px;
    right: 3%;
}

.scale_bg_4 {
    bottom: -40px;
    right: 18%;
}

.designed_convert_box {
    padding: 30px;
    border-radius: 12px;
    background-color: var(--white);
    border: 0.5px solid #00000033;
    box-shadow: 0px 0px 40px 0px #00000008;
}

.designed_convert_top h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
}

.designed_convert_top p {
    color: #323232;
}

.dcb_bg_1 {
    background-color: #FEF8DD;
}

.dcb_bg_2 {
    background-color: #CAF1DE;
}

.dcb_bg_3 {
    background-color: #FFE7C7;
}

.dcb_bg_4 {
    background-color: #FFEAEA;
}

.designed_convert_bottom {
    padding: 50px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.make_truly_feature_list li {
    padding: 4px 6px;
    color: var(--black);
    font-weight: 600;
    border-radius: 40px;
    border: 2px solid #FFFFFF;
}

.make_truly_feature_list_bg_1 {
    background-color: #FAF5FF;
}

.make_truly_feature_list_bg_2 {
    background-color: #EEF2FF;
}

.make_truly_feature_list_bg_3 {
    background-color: #EFF6FF;
}

.gateway-logo {
    min-height: 70px;
}

.steps_fantiex_tabs_cont::before {
    position: absolute;
    content: '';
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80%;
    border-left: 1px dashed var(--black);
}

.fantiex_work_cont h2 {
    font-size: 38px;
    line-height: normal;
    font-weight: 700;
}

.after-bg {
    position: relative;
}

.after-bg::after {
    position: absolute;
    bottom: -20px;
    content: '';
    height: 200px;
    width: 100%;
    z-index: -1;
    background-color: #222222;
}

.about-slide-text {
    font-size: 26px;
    color: var(--black);
    font-weight: 700;
    flex-shrink: 0;
    text-transform: capitalize;
    font-family: "Wix Madefor Display", sans-serif;
}

.we_focus_icon {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background-color: var(--white);
    border: 1px solid #1515151A;
    box-shadow: 0px 0px 40px 0px #00000014;
}

.we_focus_icon_bg {
    border-color: #CEF5D9;
    background-color: #073143;
}

.we_focus_box2 {
    position: relative;
}

.we_focus_box2::before {
    position: absolute;
    content: '';
    width: 140px;
    height: 50px;
    top: 35px;
    right: -75px;
    background-image: url('../img/swing_arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.why_fastCartify_built_img {
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #FFFFFF;
    background-color: #FFFFE580;
    box-shadow: 0px 0px 40px 0px #0000000D;
}

.scalable_technology_box {
    position: relative;
    border-radius: 12px;
    padding: 25px 25px 25px 40px;
    border: 0.5px solid #00000033;
    box-shadow: 0px 0px 40px 0px #00000008;
}

.scalable_technology_box::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    border-left: 1px dashed #00000033;
    top: 0;
    left: 20px;
}

.scalable_technology_box::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    width: 2px;
    height: 40px;
    background-color: var(--black);
}

.scalable_technology_icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid #1515151A;
    box-shadow: 0px 0px 40px 0px #00000014;
}

.st_bg_1 {
    background-color: #FEF8DD80;
}

.st_bg_2 {
    background-color: #CAF1DE80;
}

.st_bg_3 {
    background-color: #FFE7C780;
}

.st_bg_4 {
    background-color: #FFEAEA80;
}

.contact_form_box {
    padding: 40px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: 0px 0px 40px 0px #0000000D;
}

.select2-container .select2-selection--single {
    height: auto;
    border-color: #E4E4E4;
    border-radius: unset;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: normal;
    color: var(--black);
    padding: 12px 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 12px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 12px;
    width: 20px;
}

.select2-container .select2-selection--single .select2-selection__rendered span {
    display: flex;
    gap: 10px;
    align-items: center;
}

.form-grp .select2-container {
    width: 100% !important;
}

.select2-dropdown {
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0px 0px 40px 0px #0000000D;
}

.select2-container--default .select2-search--dropdown {
    position: relative;
}

.select2-container--default .select2-search--dropdown::before {
    position: absolute;
    content: '\f002';
    font-family: "FontAwesome";
    top: 12px;
    left: 14px;
    font-size: 12px;
    color: #7e7e7e;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: unset;
    background-color: #F7F7F7;
    padding: 7px;
    font-size: 12px;
    padding-left: 30px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
    outline: unset;
    box-shadow: unset;
}

.select2-container--default .select2-results__option--highlighted {
    color: var(--white);
    background-color: var(--black);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    position: relative;
    border: unset;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b::before {
    position: absolute;
    content: '\f078';
    font-family: "FontAwesome";
    border: unset;
    font-size: 14px;
    top: -11px;
    right: -11px;
    color: #000;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b::before {
    transform: rotate(180deg);
}

.contact-form .form-control {
    padding: 10px;
    border-radius: 12px;
    border-color: #61656B33;
}

.contact-form .select2-container .select2-selection--single {
    border-radius: 12px;
}

.contact-form .form-control::placeholder,
.contact-form .form-select::placeholder {
    color: #B0B2B5;
    font-size: 14px;
}

.contact-form .form-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    text-transform: capitalize;
}

.contact_form_box2 {
    border: 3px solid var(--white);
    background-image: url('../img/direct_contact_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.direct_contact_bottom {
    padding: 15px;
    border-radius: 15px;
    background-color: #128C7E;
    background-image: url('../img/direct_contact_bottom_bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 100% 8px;
}

.direct_contact_list li:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #FFFFFF;
}

.direct_contact_list_icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #FFCB0C;
}

.commerce_differently_icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.commerce_differently_row .col:not(:last-child) {
    border-right: 1px dashed #00000026;
}

.commerce_differently_box .designed_convert_top {
    max-width: 400px;
    margin: auto;
}

.power_simplicity_table .table-responsive {
    border-radius: 15px;
    border: 1px solid #02152633;
    box-shadow: 0px 0px 40px 0px #0000000D;
}

.power_simplicity_table .table thead tr th,
.power_simplicity_table .table tbody tr td {
    padding: 20px;
    vertical-align: middle;
}

.power_simplicity_table .table thead tr th {
    width: 0%;
    color: var(--white);
    background-color: var(--black);
}

.power_simplicity_table .table tbody tr td {
    font-weight: 500;
    color: var(--text);
}

.table_bg_th {
    background-color: #000000d9 !important;
}

.table_bg_light {
    background-color: #F1F1F1 !important;
}

.power_simplicity_timeline {
    padding: 30px;
    border-radius: 12px;
    background-color: #F9FAFC;
}

.ps_timeline_count {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white);
    font-size: 26px;
    font-weight: 500;
}

.ps_timeline_count_bg_1 {
    background-color: #F248DC;
}

.ps_timeline_count_bg_2 {
    background-color: #EC5152;
}

.ps_timeline_count_bg_3 {
    background-color: #0CCC81;
}

.ps_timeline_line {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 65%;
    height: 1px;
    border-bottom: 1px dashed #000000;
}

.real_sellers_box {
    height: 100%;
    border-radius: 12px;
    padding: 120px 40px 40px 40px;
}

.real_sellers_bg_1 {
    background-color: #FFEBE180;
}

.real_sellers_bg_2 {
    background-color: #DAFF9980;
}

.real_sellers_bg_3 {
    background-color: #CAE2FF80;
}

.real_sellers_img {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.real_sellers_main {
    margin-top: 100px;
}

.industry_structure_area {
    background-color: #FFFCEE;
}

.industry_structure_box {
    height: 100%;
    border-radius: 18px;
    padding: 160px 25px 25px 25px;
}

.industry_structure_bg_1 {
    background-color: #FFEBE1;
}

.industry_structure_bg_2 {
    background-color: #DAFF99;
}

.industry_structure_bg_3 {
    background-color: #CAE2FF;
}

.industry_structure_box h4 {
    position: absolute;
    top: 0;
    left: -50px;
    line-height: 1;
    font-size: 150px;
    font-weight: 700;
}

.industry_structure_box .designed_convert_top h6 {
    position: relative;
    font-weight: 600;
    color: var(--black);
}

.industry_structure_box .designed_convert_top h6::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    left: 22px;
    width: calc(100% - 22px);
    height: 1px;
    background-color: var(--black);
}

.why_industry_box {
    height: 100%;
    padding: 25px;
    border-radius: 12px;
    border: 3px solid var(--white);
    box-shadow: 0px 0px 40px 0px #00000014;
}

.why_industry_bg_1 {
    background-color: #FDF1F5;
}

.why_industry_bg_2 {
    background-color: #EEFDF4;
}

.why_industry_bg_3 {
    background-color: #EDFAFF;
}

.why_industry_bg_4 {
    background-color: #FFF4EF;
}

.why_industry_bg_5 {
    background-color: #FEFCE9;
}

.why_industry_bg_6 {
    background-color: #FBF4FF;
}

.why_industry_bg_7 {
    background-color: #F9FAFC;
}

.why_industry_img {
    padding: 5px;
    border-radius: 12px;
    background-color: var(--white);
}

.why_industry_box .make_truly_list li .heading-text {
    font-size: 18px;
    color: #323232;
}

.across_industries_box {
    padding: 25px;
    border-radius: 100px;
    border: 1px solid transparent;
    background-color: var(--white);
    box-shadow: 0px 0px 40px 0px #0000000D;
}

.across_industries_box_1 {
    border-color: #FFD70080;
}

.across_industries_box_2 {
    border-color: #FF007F80;
}

.across_industries_box_3 {
    border-color: #40E0E080;
}

.across_industries_box_4 {
    border-color: #0088FF80;
}

.across_industries_box_5 {
    border-color: #00990080;
}

.across_industries_box_6 {
    border-color: #F36A3E80;
}

.blog_box {
    position: relative;
    overflow: hidden;
    padding: 25px;
    border-radius: 12px;
    background-color: var(--white);
    border: 1px solid #0000001A;
    box-shadow: 0px 0px 40px 0px #0000000D;
}

.blog_box_top {
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.blog_box_top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_date {
    font-size: 14px;
    color: #787877;
}

.blog_date span::before {
    position: absolute;
    content: '';
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #787877;
    top: 50%;
    transform: translateY(-50%);
    left: 2px;
}

.scaling_smarter_inner.scale-box-2 {
    padding: 60px 30px;
    background-color: #DEE9FC;
}

.modal-backdrop.show {
    opacity: 0.9;
}

.modal {
    backdrop-filter: blur(10px);
}

.modal .modal-content {
    border-radius: 15px;
}

.modal .payment_sccessfull_box {
    max-width: 100%;
}

.logout_modal .modal-dialog,
.process_published_modal .modal-dialog {
    max-width: 600px;
}

.payment_sccessfull_box {
    max-width: 700px;
    margin: auto;
    border-radius: 12px;
    padding: 80px 50px;
    background-image: url('../img/payment_sccessfull_bg_1.png'), url('../img/payment_sccessfull_bg_2.png');
    background-position: left bottom, right top;
    background-repeat: no-repeat no-repeat;
    background-size: auto auto;
    box-shadow: 0px 0px 40px 0px #0000000D;
}

.logout_modal .payment_sccessfull_box {
    background-image: url('../img/logout_bg_1.png'), url('../img/logout_bg_2.png');
}

.payment_sccessfull_box h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--black);
}

.payment_sccessfull_box p {
    font-size: 16px;
}

.logout_modal .payment_sccessfull_box .primary-btn span {
    background-color: #FF0000;
    border-color: #FF0000;
}

.logout_modal .payment_sccessfull_box .primary-btn-w span {
    background-color: #FFF3F3;
    border-color: #000000;
}

.mw-170 {
    min-width: 170px;
}

.btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    opacity: 1;
    background-color: #FF0000;
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
}

.btn-close:hover {
    background-color: var(--black);
    opacity: 1;
}

.payment_sccessfull_box h4 {
    font-size: 30px;
    font-weight: 700;
    color: var(--black);
}

.payment_sccessfull_box p {
    font-size: 16px;
}

.otp-input {
    width: 50px;
    height: 50px;
    padding: 5px !important;
    text-align: center;
}

.llg_box {
    height: 100%;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #0000001A;
    box-shadow: 0px 0px 40px 0px #0000000D;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.llg_box_bg_1 {
    background-image: url('../img/llg_bg_1.png');
}

.llg_box_bg_2 {
    background-image: url('../img/llg_bg_2.png');
}

.llg_box_bg_3 {
    background-image: url('../img/llg_bg_3.png');
}

.llg_box_bg_4 {
    background-image: url('../img/llg_bg_4.png');
}

.llg_icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background-color: var(--white);
}

.guides_box {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #38388A1F;
    background-color: var(--white);
    box-shadow: 0px 16px 32px 0px #00000029;
}

.guides_inner {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.guides_inner_bg_1 {
    background-color: #EFFAFD;
}

.guides_inner_bg_2 {
    background-color: #FEFAED;
}

.guides_inner_bg_3 {
    background-color: #FEF1FF;
}

.guides_inner_bg_4 {
    background-color: #EEFBF6;
}

.guides_inner_bg_5 {
    background-color: #F8F7FA;
}

.help-search {
    max-width: 300px;
}

.help-search .form-control::placeholder {
    color: #323232;
}

.help-search .form-control {
    padding: 10px;
    border-radius: 40px;
    border-color: #E7E7E9;
    padding-left: 40px;
    box-shadow: 0px 0px 40px 0px #00000012;
}

.help-search i,
.help-search svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 14px;
    color: #787877;
}

.sendOTPdiv .form-control {
    padding-right: 100px;
}

.sendOTP {
    position: absolute;
    top: 6px;
    right: 0px;
    color: var(--primary-color);
    padding: 6px 12px;
    border: unset;
    background-color: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    font-family: "Wix Madefor Display", sans-serif;
}

.otp_box .wm-text {
    color: #b9b9b9;
}

.otp_box .frgt {
    color: var(--black);
    font-weight: 500;
}

label.error {
    font-size: 14px;
    color: red;
}

.sendOTP:hover,
.otp_box .frgt:hover {
    color: var(--primary-color);
}

.help_center_list .help_center_list_items {
    position: relative;
    border-radius: 12px;
    padding: 30px 30px 30px 140px;
    border: 1px solid #0000001A;
    background-color: var(--white);
    box-shadow: 0px 0px 40px 0px #0000000D;
}

.help_center_list .help_center_list_items .designed_convert_top span {
    font-size: 35px;
    color: #0000001A;
    font-weight: 600;
    line-height: 1;
    font-family: "Wix Madefor Display", sans-serif;
}

.help_center_list .help_center_list_items .help_center_icon {
    position: absolute;
    top: -13px;
    left: 18px;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: unset;
    box-shadow: none !important;
    border-color: var(--bs-form-invalid-border-color) !important;
}

.min_w_180 span {
    min-width: 180px;
}

.header_profile_img {
    border-radius: 100%;
    overflow: hidden;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
}

.header_profile_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}

.save_upto {
    font-size: 12px;
    color: #db3a3a;
}

.month-year-btn.active .save_upto {
    font-size: 12px;
    color: #FFCB0F;
}

.offer-text {
    /* font-size: 40px;
  font-weight: bold; */
    /* text-align: center; */
    color: #fff;
    background: linear-gradient(90deg, #ff0000, #ff9900, #ff0000);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s linear infinite, pulse 1.5s infinite;
    transform-origin: left center;
}

/* Gradient animation */
@keyframes gradientMove {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 200%
    }
}

/* Pulse effect */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }

    100% {
        transform: scale(1);
    }
}