* {
    /* font-family: SF ; */
}

[class^="i-"] {
    font-weight: 600 !important;
}

.error {
    color: red !important;
}

.breadcrumb-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 1.25rem;
}

.breadcrumb-title .breadcrumb-left h4 {
    margin-bottom: 0px !important;
}

textarea.form-control {
    height: calc(1.5em + 0.75rem + 2px);
}

.list-grid {
    margin: 0 -15px;
}

.list-grid .list-item {
    width: 20%;
    padding: 0 15px;
}

table.dataTable {
    border-collapse: collapse !important;
}

@media (max-width:1440px) {
    .select2-container {
        width: 100% !important;
    }
}

@media (max-width:992px) {
    .breadcrumb-title .breadcrumb-left h4 {
        font-size: 16px;
    }

    .list-grid .list-item {
        width: 33.333%;
    }
}

@media(max-width:767px) {
    .breadcrumb-title {
        display: block;
    }

    .breadcrumb-left {
        margin-bottom: 10px;
    }

    .breadcrumb-right {
        display: inline-block;
    }
}

@media(max-width:575px) {
    .list-grid .list-item {
        width: 50%;
    }
}

.select2-container .select2-selection--single {
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
}

/* Increase the height of each dropdown option */
.select2-container .select2-results__option {
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px !important;
}

.select2-container--default .select2-selection--single {
    border-radius: 5px !important;
}

.dark-blue-card .error {
    color: #D6445E !important;
}

/* TOGGLE STYLING */
.toggle {
    margin: 0 0 1.5rem;
    box-sizing: border-box;
    font-size: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.toggle input {
    width: 0;
    height: 0;
    position: absolute;
    left: -9999px;
}

.toggle input+label {
    margin: 0;
    padding: 0.5rem 0.1rem;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    border: solid 1px #DDD;
    background-color: #FFF;
    font-size: 1rem;
    line-height: 140%;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transition: border-color 0.15s ease-out, color 0.25s ease-out, background-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.toggle input+label:first-of-type {
    border-radius: 6px 0 0 6px;
    border-right: none;
}

.toggle input+label:last-of-type {
    border-radius: 0 6px 6px 0;
    border-left: none;
}

.toggle input:hover+label {
    border-color: #213140;
}

.toggle input:checked+label {
    background-color: #4B9DEA;
    color: #FFF;
    box-shadow: 0 0 10px rgba(102, 179, 251, 0.5);
    border-color: #4B9DEA;
    z-index: 1;
}

.toggle input:focus+label {
    outline: dotted 1px #CCC;
    outline-offset: 0.45rem;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    display: none;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

@media (max-width: 800px) {
    .toggle input+label {
        padding: 0.75rem 0.25rem;
        flex: 0 0 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* custom header css */
.container {
    width: 1540px;
    max-width: 96%;
}

.top-bar {
    background: #2A2742;
}

.logo img {
    width: 145px;
}

.cust-nav-link {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 23px;
    color: #3c4852;
    margin-left: 1.4rem;
    margin-right: 1.4rem;
    position: relative;
    padding: 35px 0;
}

.cust-nav-link::before {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 25px;
    background: #fff;
    transition: 0.5s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
    background: #2D81F7;
    transform-origin: 100% 50%;
}

.cust-nav-link:hover::before,
.cust-nav-link.active::before {
    transform: scale3d(1, 1, 1);
    transform-origin: 0 50%;
}

.topbar-link.cust-nav-link::before {
    content: none;
}

.dropdown a.cust-nav-link {
    padding: 10px 0;
}

.dropdown a.cust-nav-link::before {
    bottom: 7px;
}

.cust-nav-link:hover {
    color: #2D81F7;
}

.topbar-link {
    color: #3c4852;
    padding: 0;
}

.topbar-link:hover {
    color: #3c4852;
}

.currency_link {
    padding: 15px 0;
}

.main-header-front {
    width: 100%;
    position: absolute;
    background: transparent;
    border-bottom: 1px solid #dee2e6;
    z-index: 5;
}

.sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 22px 35px -18px;
}

.main-header-front .pink-btn {
    margin-left: 1.4rem;
    margin-right: 1.4rem;
    margin-bottom: 0;
}

.main-header-front .pink-btn:hover {
    border: none;
}

.custom-footers {
    background: #2A2742;
    color: #FFF;
    padding-top: 50px;
}

.custom-footers h4,
.custom-footers a {
    color: #fff;
}

.custom-footers a,
.custom-footers p {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
}

.custom-footers p {
    font-size: 16px;
}

.custom-footers h4 {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 27px;
}

.custom-footers h4::after {
    content: "";
    border-bottom: 2px solid #D94B62;
    max-width: 80px;
    padding-top: 15px;
    display: block;
}

footer hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: 0;
    border-top: 1.5px solid rgba(255, 255, 255, 0.5);
    height: 0;
}

.main-content>* {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
}

.cust-btn {
    background: transparent;
    border: none;
}

.cust-btn:focus {
    outline: none;
}

#currency {
    border: none;
    -webkit-appearance: none;
    /* Safari and Chrome */
    -moz-appearance: none;
    /* Firefox */
    appearance: none;
    background: transparent;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    color: #FFF;
    padding: 5px 20px;
    background: url('../../../storage/Logo_Settings/down-arrow.png') no-repeat;
    background-size: 15px;
    background-position: 100% 10px;
    cursor: pointer;
}

#currency.open {
    background: url('../../../storage/Logo_Settings/up-arrow.png') no-repeat;
    background-size: 15px;
    background-position: 100% 10px;
    cursor: pointer;
}

#currency option {
    background-color: #2A2742;
    /* Change the background color to your desired color */
}

#currency:focus {
    outline: none;
}

.menu-cart {
    top: -6px;
    left: 0;
    position: absolute;
}

.minicart {
    position: absolute;
    left: 10px;
}

#toast-top-right {
    top: 100px;
}

.btn-pink {
    background: #D94B62;
    border-radius: 8px;
    padding: 10px;
    color: #FFF;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
}

.btn-pink:hover,
.btn-dark-blue:hover {
    color: #FFF;
}

.btn-dark-blue {
    background: #2A2742;
    border-radius: 8px;
    padding: 10px;
    color: #FFF;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
}

.razorpay-payment-button {
    display: none;
}

.user-dashboard-list-grp .list-group-item {
    font-size: 16px;
}

.user-dashboard-list-grp .list-group-item.active {
    background: #2d81f7;
    border-color: #2d81f7;
}

.btn-copy {
    background: transparent;
    border: 1px solid;
    position: relative;
}

.btn-copy img {
    width: 18px;
}

/* plan pricing css */
.packages {
    margin: 20px;
    width: 30%;
    padding-bottom: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    flex-wrap: wrap;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 50px 0;
}

.list li {
    font-size: 20px;
    list-style: none;
    border-bottom: 1px solid #f4f4f4;
    padding-inline-start: 0;
    border-width: 1px;
    padding: 10px;
}

.first {
    margin-top: 40px;
    border-top: 1px solid #f4f4f4;
}

.list {
    width: 80%;
}

ol,
ul {
    padding: 0;
}

.top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* .pink_blue_grad_button {
    padding: 10px 30px;
    text-decoration: none;
    font-size: 15px;
    margin: 15px 15px;
    border-radius: 10px;
    background: linear-gradient(180deg, #2B2842 0%, #D6445E 100%);
    color: #f4f4f4;
    transition: all 0.3s ease 0s;
} */
.pink_blue_grad_button {
    padding: 10px 30px;
    text-decoration: none;
    font-size: 15px;
    margin: 15px 15px;
    border-radius: 10px;
    background-image: linear-gradient(to right, #2B2842, #D6445E, #2B2842, #D6445E);
    color: #f4f4f4;
    background-size: 300% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.pink_blue_grad_button:hover {
    color: #f4f4f4;
    background-position: 99% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1e2321;
    -webkit-transition: 0.4s;
    box-shadow: 2px 6px 25px #1e2321;
    transform: translate(0px, 0px);
    transition: 0.6s ease transform, 0.6s box-shadow;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked+.slider {
    background-color: #50bfe6;
}

input:focus+.slider {
    box-shadow: 0 0 1px #50bfe6;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.package-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.packages:nth-child(odd) {
    margin-top: 150px;
}

.hero_section::before {
    content: '';
    background: url('../../../storage/homepage/hero_bg.svg');
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-size: contain;
    z-index: -1;
}

.hero_bold_title {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 23px;
    margin-top: 150px;
    color: #000000;
    margin-bottom: 23px;
}

.pink-text {
    color: #D1295F !important;
}

.blue-text {
    color: #2A2742 !important;
}

.hero_main_head {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 40px;
    line-height: 50px;
    color: #D1295F;
    margin-top: 0;
    margin-bottom: 10px;
}

.hero-small-text {
    font-family: 'Mulish';
    font-style: normal;
    margin-bottom: 24px;
    font-weight: 600;
}

.hero_content {
    width: 1120px;
    max-width: 100%;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 40px;
}

.hero_content.hero_typed_text {
    font-size: 20px;
}

/* .dark-blue-btn{
    background: #2A2742;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 23px;
    padding: 17.5px 44.5px;
    color: #fff;
    transition: all 0.3s ease 0s;
} */
.dark-blue-btn {
    background: #2d81f7;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 23px;
    padding: 17.5px 44.5px;
    color: #fff;
    transition: all 0.3s ease 0s;
    background-size: 300% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.dark-blue-btn:hover {
    color: #fFF;
    background-position: 99% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.pink-btn {
    background: #D94B62;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 23px;
    padding: 10px 44.5px;
    margin-bottom: 35px;
    color: #fff;
    transition: all 0.3s ease 0s;
    background-image: linear-gradient(to right, #D6445F, #D6445F, #2B2842);
    background-size: 300% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.pink-btn:hover {
    color: #fFF;
    border: 0.2px solid #FFF;
    background-position: 99% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.summary {
    position: relative;
    text-align: center;
}

.summary img {
    margin-top: 79px;
    margin-bottom: 120px;
}

.summary::before {
    content: '';
    background: url(../../../storage/homepage/left_side_shape.svg);
    position: absolute;
    width: 330px;
    height: 32%;
    background-repeat: no-repeat;
    top: 24%;
    left: 70px;
    z-index: -1;
    background-size: contain;
}

.summary::after {
    content: '';
    background: url(../../../storage/homepage/right_side_shape.svg);
    position: absolute;
    width: 415px;
    height: 47%;
    background-repeat: no-repeat;
    top: 125px;
    right: 65px;
    z-index: -1;
    background-size: contain;
}

.feature_heading {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    color: #182433;
    margin: 80px 0 85px;
}

.plan_feature_image {
    margin-bottom: 29px;
}

.plan-feature-heading {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #182433;
    margin: 0 0 20px;
}

.plan-feature-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #767D86;
    margin-bottom: 37px;
}

.plan_feature_card_inner::before {
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    transition: 0.5s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
    background: #2A2742;
    transform-origin: 100% 50%;
}

.plan_feature_card_inner:hover::before {
    transform: scale3d(1, 1, 1);
    transform-origin: 0 50%;
}

.plan_features_card {
    margin-bottom: 100px;
}

.main_feature_inner p {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 32px;
    color: #2A2742;
    margin-bottom: 0;
}

.main_feature_inner .card {
    background: #FFFFFF;
    box-shadow: 4px 4px 100px rgba(47, 58, 83, 0.08);
    border-radius: 10px;
    padding: 18.5px 43.5px;
    height: 101px;
    align-items: center;
    align-items: center;
    justify-content: center;
}

.main_feature_inner .card.active {
    background: #2A2742;
}

.main_feature_inner .card.active P {
    color: #fff;
}

.main_feature {
    margin-bottom: 100px;
    margin-top: 50px;
}

.online-sell.second {
    margin: 100px 0;
}

.online-sell_inner {
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 0px 20px;
}

.online_sell_heading {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    color: #D1295F;
    margin-bottom: 0;
}

.online_sell_subheading {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    margin-bottom: 50px;
    margin-top: 30px;
    position: relative;
}

.online-sell-text-right {
    padding-left: 50px;
}

.online-sell-text-left {
    padding-right: 50px;
}

.online_sell_subheading::after {
    content: '';
    width: 100px;
    height: 4px;
    left: 0;
    position: absolute;
    top: 120%;
    background: #D6445E;
}

.online_sell_text {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 15px;
}

.online-sell .online_sell_text:first-child {
    margin-bottom: 20px !important;
}

.online_sell_btn.pink_blue_grad_button {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 0;
}

.plan_pricing {
    background: #2A2742;
    border-radius: 10px;
}

.plan_pricing .pink_blue_grad_button {
    margin-bottom: 30px;
    padding: 10px 30px;
}

.plan_pricing .dark-blue-btn {
    margin-bottom: 50px;
    background-image: linear-gradient(to right, #2B2842, #2B2842, #D6445E, #2B2842);
}

.plan_pricing_features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.plan_pricing_features li::before {
    content: '';
    background: url(../../../storage/Logo_Settings/check-mark.png);
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    width: 17px;
    height: 17px;
    left: 0;
    display: block;
}

.plan_card_active .plan_pricing_features li::before {
    content: '';
    background: url(../../../storage/Logo_Settings/check-mark-white.png);
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    width: 17px;
    height: 17px;
    left: 0;
    display: block;
}

.plan_pricing_page.plan_pricing {
    border-radius: 0;
}

.plan_pricing_heading {
    padding-top: 84px;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 52px;
    color: #FFFFFF;
    margin-bottom: 0;
}

.plan_pricing_text {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    margin-top: 25px;
    margin-bottom: 35px;
}

.plan_pricing_text a:hover {
    text-decoration: underline;
}

.plan_pricing .pill-container {
    margin: 0 auto 68px;
    display: flex;
    width: 254px;
}

.plan_pricing .pill-container input[type=radio] {
    opacity: 0;
    position: fixed;
    width: 0;
}

.plan_pricing .pill-container .option-a {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.plan_pricing .pill-container .selector:last-child {
    height: 38px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.plan_pricing .selector {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 27px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    cursor: pointer;
    background: #fff;
    border-right: 0;
}

.plan_pricing input[type=radio]:checked+label {
    background: linear-gradient(180deg, #2B2842 0%, #D6445E 100%);
    color: white;
}

.plan_card {
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
    border-radius: 23px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.plan_heading {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 39px;
    color: #182433;
    padding-top: 41px;
    margin-bottom: 0;
}

.plan_text {
    margin-top: 32px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #767D86;
}

.currency {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #182433;
    margin-left: 10px;
}

.per_order {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    color: #182433;
    margin: 0;
}

.plan_price {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    line-height: 69px;
    margin-bottom: 0;
    color: #182433;
}

.plan_btn {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid #385173;
    border-radius: 24px;
    padding: 13px 21.5px;
    margin-bottom: 42.5px;
    margin-top: 20px;
    transition: all 0.3s ease 0s;
}

.plan_btn:hover {
    transform: scale(1.2);
}

.plan_pricing_features {
    list-style: none;
    padding: 0 20px 60.5px;

}

.w-35 {
    width: 35% !important;
}

.plan_pricing_features {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: #767D86;
}

.plan_card_active {
    background: linear-gradient(279deg, #2B2842 -25%, #D6445E 100%);
    box-shadow: 0px 4.86667px 36.5px rgba(0, 0, 0, 0.05);
    border-radius: 27.9833px;
    padding: 0 20px;
}

.plan_card_active .plan_heading {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 31.6333px;
    color: #FFFFFF;
    padding-top: 49.9px;
}

.plan_card_active .plan_text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin-top: 38.9px;
    margin-bottom: 45px;
}

.plan_card_active .plan_price {
    margin-top: 35.53px;
}

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

.plan_card_active .currency {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 21.9px;
    line-height: 33px;
    color: #FFFFFF;
}

.plan_card_active .plan_price {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 66.9167px;
    line-height: 84px;
    color: #FFFFFF;
}

.plan_card_active .plan_btn {
    background: #2A2742;
    border-radius: 29.2px;
    color: #fff;
}

.plan_card_active .plan_pricing_features {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
    padding-bottom: 80px;
}

.plan_pricing_inner {
    padding-bottom: 79.3px;
}

.last_card::before {
    content: '';
    background: url(../../../storage/homepage/right_side_shape.svg);
    position: absolute;
    width: 100%;
    height: 33%;
    background-repeat: no-repeat;
    top: 28%;
    right: -185px;
    z-index: 0;
    background-position: bottom right;
}

.first_card::before {
    content: '';
    background: url(../../../storage/homepage/left_side_shape.svg);
    position: absolute;
    width: 100%;
    height: 33%;
    background-repeat: no-repeat;
    top: 28%;
    left: -165px;
    z-index: 0;
}

.faq {
    margin-top: 70px;
    margin-bottom: 253px;
}

.faq-heading-row {
    max-width: 30%;
}

.faq_heading {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 55px;
    color: #D1295F;
    margin-bottom: 70px;
}

.faq-faq-row {
    width: 100%;
    max-width: 70%;
}

.faq-link {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #000000;
    margin-top: 18.96px;
    margin-bottom: 23.91px;
    transition: all 0.3s ease 0s;
    padding-left: 30px;
}

.faq-link:hover {
    color: #000000;
}

#faqAccordian .card-header {
    background: transparent;
    border: none;
    padding: 25px 0;
}

#faqAccordian .card {
    border-bottom: 1px solid #D1295F;
}

#faqAccordian .card-body {
    padding: 1.25rem 0;
}

.faq-link::before {
    content: '';
    background: url(../../../storage/homepage/faqdot.svg);
    position: absolute;
    width: 19px;
    height: 19px;
    left: 0;
    top: 29px;
    transition: 0.2s ease;
}

.faq-link::after {
    content: '';
    background: url(../../../storage/homepage/down-arrow.svg);
    position: absolute;
    width: 10px;
    height: 14px;
    right: 24px;
    top: 31px;
}

.collapsed.faq-link::after {
    transform: rotate(180deg);
}

.faq-para {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    font-size: 13.19px;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.64);
    margin-bottom: 32px;
    margin-top: 0;
}

.second_row {
    margin-top: 111px;
}

.fixed_footer_heading {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    line-height: 41px;
    color: #182433;
    padding-top: 56px;
    padding-bottom: 69px;
    position: relative;
}

.fixed_footer_heading::after {
    content: '';
    width: 130px;
    height: 7px;
    background: #D1295F;
    position: absolute;
    border-radius: 3.5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 130px;
}

.fixed_footer_card {
    background: #FFFFFF;
    box-shadow: 0px 50px 70px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    border: 2px solid #7B74B7;
    position: absolute;
    top: -155px;
    left: 0;
    right: 0;
    padding: 0 20px;
}

.fixed_footer_para {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: #767D86;
    margin-top: 0;
    margin-bottom: 53px;
}

.fixed_footer_para.first {
    margin-bottom: 0;
    border: none;
}

.fixed_footer_link.pink_blue_grad_button {
    padding: 16.5px 88px;
    margin-bottom: 57px;
}

.cust-page-padding {
    padding: 0 0 0 0;
}

.plan_pricing.cust-page-padding {
    padding: 0 0 5rem;
}

.table th,
.table td {
    vertical-align: middle;
}

.form-control {
    height: calc(2.5em + 0.75rem + 2px);
    background: #FFF;
}

.login .pink_blue_grad_button,
.register .pink_blue_grad_button,
.user-dashboard .pink_blue_grad_button {
    margin: 20px 0;
}

.plan_select_btn {
    display: flex;
    margin-bottom: 20px;
}

.wallet_plan_radio_button {
    margin: 0 5px 0 0;
    width: 120px;
    height: 45px;
    position: relative;
    border: 2px solid #7B74B7;
    border-radius: 4px;
}

.wallet_plan_radio_button label,
.wallet_plan_radio_button input {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    cursor: pointer;
}

.wallet_plan_radio_button input[type="radio"] {
    opacity: 0.011;
    z-index: 100;
}

.wallet_plan_radio_button input[type="radio"]:checked+label {
    background: #2A2742;
    border-radius: 2px;
    color: #FFF;
    height: 100%;
}

.wallet_plan_radio_button label {
    cursor: pointer;
    z-index: 90;
    line-height: 3.5em;
}




.dark-blue-card {
    background-color: #2A2742 !important;
}

.dark-blue-card .form-group {
    margin-bottom: 25px;
}

.dark-blue-card .form-group label {
    margin-bottom: 8px;
}

.dark-blue-card .form-group label,
.dark-blue-card a {
    color: #fff;
}

.dark-blue-card a {
    text-decoration: underline;
}

.dark-blue-card .form-group .form-control {
    border-radius: 5px;
}

.user-dashboard #accordionRightIcon .card-header {
    background-image: linear-gradient(to right, #2B2842, #D6445E, #2B2842, #D6445E);
}

.user-dashboard #accordionRightIcon.accordion .ul-collapse__right-icon a:before {
    color: #FFF !important;
}

/* terms-and-condition */
.terms-and-condition h1,
.privacy-policy h1,
.cancellation-and-refund-policy h1,
.about-us h1 {
    margin-bottom: 50px;
}

.terms-and-condition h4,
.privacy-policy h4,
.cancellation-and-refund-policy h4,
.about-us h4 {
    margin-bottom: 20px;
}

.cancellation-and-refund-policy h2,
.about-us h2 {
    margin-bottom: 30px;
}

.about {
    margin: 70px 0;
}

.company-logo {
    width: 250px;
}

.about-inner {
    margin: 20px 0;
}

.about-us .plan_features_card {
    margin-bottom: 50px;
}

h1.feature_heading {
    margin-top: 0;
}

/* feature scroll section */
.home-features {
    padding: 96px 0;
}

.align-stretch {
    align-items: stretch;
}

.flex-wrap {
    flex-wrap: wrap;
}

.column {
    align-self: auto;
    flex: 1 1;
    justify-self: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.home-features .cards-container {
    top: 85px;
}

.payout-feature-heading {
    max-width: 700px;
    position: -webkit-sticky;
    position: sticky;
    top: 180px;
}

.payout-feature-heading img {
    width: 700px;
}

.home-features .homepage-features-heading {
    padding: 170px 0;
}

.home-features .home-feature-items {
    padding-top: 150px;
}

.home-features .home-feature-items .item {
    display: block;
    margin-bottom: 270px;
}

.featureScrollingSection__text {
    padding: 0 5vh 0 2vh;
}

.featureScrollingSection__heading {
    color: #D1295F;
    font-weight: 600;
    line-height: 35px;
    font-size: 30px;
    margin-bottom: 25px;
    font-family: 'Mulish';
    font-style: normal;
}

.thankyou-img {
    width: 50%;
}

.e404_error_img {
    width: 30%;
}

.user-dashboard #transaction,
.user-dashboard #list-messages {
    overflow-x: scroll;
}

::-webkit-scrollbar {
    width: 0.5em;
    height: 0.5em;
}

::-webkit-scrollbar-track {
    background-color: #ddc7cb21;
}

::-webkit-scrollbar-thumb {
    background-color: #c6bfdf80;
    border-radius: 10px;
}

.sqckt_popup_loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.3);
}

.sqckt_popup_loader svg,
.sqckt_popup_loader img {
    width: 70px;
    margin: auto;
    fill: #D6445E;
}

.typed_text {
    color: #D1295F;
}

.features {
    background: transparent;
}

.features .feature_heading {
    margin: 0 0 35px;
}

.demo_cta {
    background: #2A2742;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.demo_cta_second_row {
    text-align: right;
}

.demo_cta_text {
    color: #FFF;
    font-size: 26px;
    line-height: 40px;
    text-transform: capitalize;
}

.demo_cta .pink-btn {
    border: 0.2px solid transparent;
}

.demo_cta .pink-btn:hover {
    border: 0.2px solid #FFF;
}

.right_lining_bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
}

.left_linine_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
}

#lottie-eyes {
    width: 150px;
    margin: 0 auto;
    position: relative;
    top: -160px;
}

.reviews {
    margin-top: 5rem;
}

.reviews img {
    max-width: initial;
}

.reviews .container {
    overflow: hidden;
}

.reviews-card {
    display: grid;
    grid-template-columns: 1fr 480px;
    width: 781px;
}

.card-img {
    width: fit-content;
    height: fit-content;
}

.card-text {
    background-color: #D94B62;
    padding: 1rem 2rem;
    height: 359px;
    overflow: hidden;
}

.card-title p {
    font-weight: 800;
    font-size: 28px;
    line-height: 105.52%;
    color: #fff;
}

.card-author p {
    margin-bottom: 0;
}

.card-author svg path {
    stroke: #fff !important;
}

.reviews-card p {
    color: #fff;
}

.card-para {
    margin-top: 1rem;
    margin-bottom: 0.8rem;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.reviews-row {
    display: flex;
    gap: 2rem;
}

.row-first {
    animation: move-first 50s linear infinite;
    margin-bottom: 2rem;
}

.row-second {
    transform: translateX(-1000px);
    animation: move-second 20s linear infinite;
    margin-bottom: 2rem;
}

@keyframes move-first {
    50% {
        transform: translateX(-1000px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes move-second {
    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1000px);
    }
}

.checkout .nav-tabs .nav-item,
.user-dashboard .nav-tabs .nav-item {
    width: 50%;
    text-align: center;
}

#list-settings .dark-blue-btn {
    padding: 10px 17px;
}

.title_404 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #182433;
}

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

.slick-dots li button:before {
    color: #FFF;
    font-size: 15px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fff;
}

.online_img_div {
    text-align: center;
}

/* custom responsive css start... */
/* thaankyou page responsive */
@media screen and (max-width: 1199px) {

    .thankyou-img,
    .e404_error_img {
        width: 80%;
    }
}

@media screen and (max-width: 767px) {

    .thankyou-img,
    .e404_error_img {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .thankyou a {
        display: block;
    }
}

/* general section responsive */
@media screen and (max-width: 1200px) {
    .cust-page-padding {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 991px) {
    .cust-page-padding {
        padding: 4rem 0 5rem;
    }
}

@media screen and (max-width: 576px) {
    .cust-page-padding {
        padding: 0;
    }
}

/* header menu responsive css*/
/* for xl */
@media screen and (min-width: 1200px) and (max-width: 1366px) {
    .pink_blue_grad_button {
        font-size: 13px;
        margin: 15px 5px;
    }

    .cust-nav-link {
        margin-left: 1.3rem;
        margin-right: 1.3rem;
    }
}

/* for lg */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .pink_blue_grad_button {
        padding: 8px 10px;
        margin: 15px 5px;
        font-size: 13px;
    }

    .cust-nav-link {
        font-size: 14px;
        margin-left: 0.7rem;
        margin-right: 0.7rem;
    }

    .menu-cart {
        top: -3px;
        left: -6px;
        font-size: 20px;
    }
}

/* for md */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .pink_blue_grad_button {
        padding: 8px 26.5px;
        font-size: 12.5px;
        margin: 0;
    }
}

/* for all responsive device */
@media screen and (max-width: 991px) {
    .main-header-front {
        position: relative;
        background: white;
        box-shadow: 4px 4px 144px rgba(0, 0, 0, 0.08);
    }

    .mobilemenu {
        margin: 0;
        padding: 0;
        list-style: none;
        overflow: hidden;
        background-color: #fff;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        top: 100%;
        z-index: 21;
    }

    .mobilemenu li {
        padding: 20px 20px;
    }

    .mobilemenu li.active {
        background-image: linear-gradient(to right, #2B2842, #D6445E, #2B2842, #D6445E);
    }

    .mobilemenu li.active a {
        color: #FFF;
    }

    .mobilemenu li a {
        display: block;
        font-family: 'Mulish';
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 23px;
        color: #475261;
        text-decoration: none;
    }

    .resp-menu .menu-icon {
        cursor: pointer;
        display: inline-block;
        position: relative;
        user-select: none;
        margin-top: 15px;
    }

    .resp-menu .menu-icon .navicon {
        background: #333;
        display: block;
        height: 2px;
        position: relative;
        transition: background .2s ease-out;
        width: 18px;
    }

    .resp-menu .menu-icon .navicon:before,
    .resp-menu .menu-icon .navicon:after {
        background: #333;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 100%;
    }

    .mobilemenu {
        clear: both;
        max-height: 0;
        transition: max-height .2s ease-out;
    }

    .resp-menu .menu-icon .navicon:before {
        top: 5px;
    }

    .resp-menu .menu-icon .navicon:after {
        top: -5px;
    }

    .resp-menu .menu-btn {
        display: none;
    }

    .resp-menu .menu-btn:checked~.mobilemenu {
        max-height: 100vh;
    }

    .resp-menu .menu-btn:checked~.menu-icon .navicon {
        background: transparent;
    }

    .resp-menu .menu-btn:checked~.menu-icon .navicon:before {
        transform: rotate(-45deg);
    }

    .resp-menu .menu-btn:checked~.menu-icon .navicon:after {
        transform: rotate(45deg);
    }

    .resp-menu .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
    .resp-menu .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
        top: 0;
    }

    .resp-menu {
        position: initial !important;
    }

    .menu-cart {
        top: -2px;
    }
}






/* hero banner responsive css */
@media screen and (min-width: 1441px) and (max-width: 1660px) {
    .summary::before {
        left: 8%;
    }

    .summary::after {
        width: 30%;
        left: 67%;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1440px) {
    .summary::before {
        left: 4%;
    }

    .summary::after {
        width: 32%;
        left: 68%;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1365px) {
    .summary::before {
        left: 0;
    }

    .summary::after {
        width: 35%;
        left: 65%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .summary::before {
        left: 0;
        height: 41%;
    }

    .summary::after {
        right: -5px;
        width: 30%;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .summary::before {
        left: -20px;
        height: 42%;
        width: 40%;
        background-size: contain;
        background-position: center;
        top: 23%;
    }

    .summary::after {
        width: 49%;
        left: 52%;
        background-size: cover;
        background-position: center;
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .summary::before {
        left: -19px;
        height: 44%;
        width: 38%;
        background-size: contain;
        background-position: center;
        top: 33%;
    }

    .summary::after {
        width: 47%;
        left: 55%;
        background-size: cover;
        background-position: center;
    }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
    .summary::before {
        left: -0;
        height: 41%;
        width: 30%;
        background-size: contain;
        background-position: center;
        top: 37%;
    }

    .summary::after {
        width: 45%;
        left: 57%;
        background-size: cover;
        background-position: center;
        top: 85px;
    }
}

@media screen and (max-width: 479px) {
    .summary::before {
        left: 0;
        height: 33%;
        width: 34%;
        background-size: contain;
        background-position: center;
        top: 42%;
    }

    .summary::after {
        width: 39%;
        left: 62%;
        background-size: contain;
        background-position: center;
        top: 85px;
    }
}

@media screen and (max-width: 1365px) {
    .summary img {
        width: 80%;
    }
}

@media screen and (max-width: 639px) {
    .summary img {
        width: 70%;
    }
}

@media screen and (max-width: 991px) {
    .hero_main_head {
        font-style: normal;
        font-weight: 900;
        font-size: 38px;
        line-height: 40px;
    }
}

@media screen and (max-width: 767px) {
    .hero_bold_title {
        margin-bottom: 10px;
    }

    .hero_main_head {
        font-style: normal;
        font-weight: 900;
        font-size: 35px;
        line-height: 45px;
    }
}

@media screen and (max-width: 480px) {
    .hero_content {
        line-height: 26px;
    }
}

/* feature scrolling section responsive */
@media screen and (max-width: 1659px) {
    .payout-feature-heading {
        max-width: 680px;
    }
}

@media screen and (max-width: 1365px) {
    .featureScrollingSection__text {
        padding: 0 0 0 2vh;
    }
}

@media screen and (max-width: 1265px) {
    .featureScrollingSection__text {
        padding: 0 0 0 1vh;
    }

    .home-features .home-feature-items .item {
        margin-bottom: 150px;
    }
}

@media screen and (max-width: 991px) {
    .featureScrollingSection__body {
        display: block;
        width: 100%;
    }

    .featureScrollingSection {
        min-height: 100%;
    }

    .feature_scrolling {
        margin: 70px 0;
    }

    .featureScrollingSection__text {
        padding: 0;
        margin: 30px 0;
    }

    .featureScrollingSection__heading {
        font-size: 26px;
        margin-bottom: 26px;
    }
}

@media screen and (max-width: 768px) {
    .featureScrollingSection__heading {
        font-size: 22px;
    }

    .feature_scrolling {
        margin-bottom: 0;
    }
}

/* Our Features responsive */
.plan_features_card {
    border-bottom: 2px solid #D1E6FF;
}

.plan_feature_card_inner:not(:nth-child(n+4)) {
    border-right: 2px solid #D1E6FF;
}

@media screen and (max-width: 1199px) {
    .summary img {
        margin-bottom: 50px;
    }

    .feature_heading {
        font-size: 35px;
        line-height: 35px;
        margin: 50px 0;
    }

    .plan_features_card {
        border-bottom: none;
    }

    .plan_feature_card_inner:not(:nth-child(n+4)) {
        border: none;
    }

    .plan_feature_card_inner {
        padding-top: 40px;
    }

    .plan_feature_card_inner:nth-child(2n+1) {
        border-right: 2px solid #D1E6FF;
    }

    .plan_feature_card_inner:nth-child(-n+2) {
        border-bottom: 2px solid #D1E6FF !important;
    }

    .plan_features_card {
        margin-bottom: 90px;
    }
}

@media screen and (max-width: 991px) {
    .summary img {
        margin-bottom: 30px;
    }

    .feature_heading {
        margin: 35px 0;
        font-size: 32px;
        line-height: 32px;
    }
}

@media screen and (max-width: 768px) {
    .feature_heading {
        font-size: 30px;
        line-height: 30px;
    }
}

@media screen and (max-width: 576px) {
    .feature_heading {
        font-size: 28px;
        line-height: 28px;
    }
}

@media screen and (max-width: 767px) {
    .summary img {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 575px) {
    .plan_feature_card_inner:nth-child(2n+1) {
        border-right: none
    }

    .plan_feature_card_inner {
        padding-top: 40px;
        border-bottom: 2px solid #D1E6FF !important;
    }
}

/* main feature */
@media screen and (max-width: 1199px) {
    .main_feature {
        margin-bottom: 90px;
    }

    .main_feature_inner p {
        font-size: 13px;
        line-height: 18px;
    }
}

@media screen and (max-width: 991px) {
    .main_feature_inner p {
        font-size: 15px;
    }

    .main_feature_inner_card:nth-child(n+2) {
        margin-top: 64px;
    }
}

@media screen and (max-width: 767px) {
    .main_feature_inner_card:nth-child(n+2) {
        margin-top: 32px;
    }
}

/* online sell */
@media screen and (max-width: 1199px) {

    .online_sell_heading,
    .online_sell_subheading {
        font-size: 20px;
        line-height: 24px;
    }

    .online_sell_subheading {
        margin-bottom: 80px;
    }

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

    .online-sell {
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 991px) {
    .online_sell_inner:last-child {
        margin-top: 65px;
    }

    .online-sell {
        margin-bottom: 65px;
    }

    .online-sell-text-right {
        margin-top: 30px;
        padding-left: 15px;
    }

    .online-sell-text-left {
        order: 1;
        margin-top: 30px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 767px) {
    .online_sell_inner:last-child {
        margin-top: 32px;
    }

    .online_sell_subheading {
        margin-bottom: 50px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 480px) {

    .online_sell_heading,
    .online_sell_subheading {
        font-size: 18px;
        line-height: 22px;
    }
}

/* faq inner */
@media screen and (max-width: 1199px) {
    .faq {
        margin-top: 100px;
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 991px) {
    .faq_inner_card:not(:first-child) {
        margin-top: 65px;
    }

    .second_row {
        margin-top: 65px;
    }

    .faq {
        margin-top: 80px;
        margin-bottom: 50px;
    }

    .faq_heading {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .faq_inner_card:not(:first-child) {
        margin-top: 32px;
    }

    .second_row {
        margin-top: 32px;
    }
}

@media screen and (max-width: 576px) {
    .faq_heading {
        font-size: 20px;
        line-height: 24px;
    }
}

/* fixed footer */
@media screen and (min-width: 1248px) and (max-width: 1439px) {
    .fixed_footer_card {
        top: -180px !important;
    }
}

@media screen and (max-width: 1200px) {
    .fixed_footer_card {
        position: relative;
        top: 0;
        margin-bottom: 125px;
        width: 80% !important;
    }

    .custom-footers {
        padding-top: 50px;
    }
}

@media screen and (max-width: 576px) {
    .fixed_footer_card {
        margin-bottom: 52px;
    }
}

@media screen and (max-width: 991px) {
    .fixed_footer_heading {
        font-style: normal;
        font-weight: 700;
        font-size: 25.0152px;
        line-height: 30px;
    }

    .fixed_footer_heading::after {
        height: 5px;
    }

    .fixed_footer_para {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 22px;
    }

    .fixed_footer_link.pink_blue_grad_button {
        padding: 11.5px 70px;
    }
}

@media screen and (max-width: 767px) {
    .fixed_footer_heading {
        font-style: normal;
        font-weight: 700;
        font-size: 20.6129px;
        line-height: 25px;
    }

    .fixed_footer_heading::after {
        height: 4px;
        top: 115px;
    }

    .fixed_footer_para {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
    }

    .fixed_footer_link.pink_blue_grad_button {
        padding: 9.5px 50px;
    }
}

@media screen and (max-width: 576px) {
    .fixed_footer_heading {
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 60px;
        padding-top: 35px;
    }

    .fixed_footer_heading::after {
        width: 80px;
        top: 95px;
    }

    .fixed_footer_para {
        margin-bottom: 35px;
    }

    .fixed_footer_link.pink_blue_grad_button {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 528px) {
    .fixed_footer_heading {
        padding-bottom: 30px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1247px) {
    .fixed_footer_card {
        top: -210px;
    }

    .fixed_footer_heading::after {
        top: 130px;
    }

    #lottie-eyes {
        top: -200px !important;
    }
}

/* normal footer */
@media screen and (max-width: 991px) {
    .footer_row:last-child {
        margin-top: 35px;
    }

    .custom-footers h4 {
        font-size: 20px;
        line-height: 24px;
    }

    .custom-footers a,
    .custom-footers p {
        font-size: 16px;
        line-height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .footer_row:nth-child(2) {
        margin-top: 35px;
    }

    .custom-footers [w-80],
    .custom-footers .w-80 {
        width: 100% !important;
    }
}

@media screen and (max-width: 576px) {

    .custom-footers a,
    .custom-footers p {
        font-size: 14px;
        line-height: 18px;
    }
}

/* checkout */
@media screen and (max-width: 991px) {

    .checkout-outer-card,
    .dashboard-contect {
        margin-top: 50px;
    }
}

/* plan and pricing section */
@media screen and (max-width: 1660px) {
    .last_card::before {
        width: 100%;
        height: 57%;
        background-size: contain;
        top: 60px;
        right: -146px;
    }

    .first_card::before {
        width: 100%;
        height: 50%;
        background-size: contain;
        top: 201px;
        left: -135px;
    }
}

@media screen and (max-width: 1365px) {
    .last_card::before {
        right: -125px;
    }

    .first_card::before {
        left: -115px;
    }
}

@media screen and (max-width: 1200px) {
    .plan_section {
        width: 100% !important;
    }

    .first_card,
    .last_card {
        width: 400px !important;
    }

    .center_card {
        width: 450px !important;
    }

    .slick-slide {
        outline: none;
    }

    .slick-slide:first-child {
        margin-right: 20px;
    }

    .slick-slide:last-child {
        margin-left: 20px;
    }

    .last_card::before,
    .first_card::before {
        content: none;
    }

    .plan_pricing .container {
        max-width: 100% !important;
        padding: 0;
        margin: 0;
    }

    #lottie-eyes {
        top: 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .slick-slide:first-child {
        margin-right: 20px;
    }

    .slick-slide:last-child {
        margin-left: 20px;
        /* Adjust the spacing as needed */
    }

    .first_card,
    .last_card {
        width: 350px !important;
    }

    .center_card {
        width: 400px !important;
    }

    .slick-slide {
        outline: none;
    }
}

@media screen and (max-width: 480px) {

    .first_card,
    .last_card {
        width: 300px !important;
    }

    .center_card {
        width: 350px !important;
    }
}

@media screen and (max-width: 1199px) {
    .plan_pricing_heading {
        font-size: 35px;
        line-height: 35px;
    }

    .main-header-front .pink-btn {
        font-size: 14px;
        margin-left: 0.7rem;
        margin-right: 0.7rem;
        padding: 8px 10px;
    }
}

@media screen and (max-width: 992px) {
    .plan_pricing_heading {
        font-size: 32px;
        line-height: 32px;
    }
}

@media screen and (max-width: 768px) {
    .plan_pricing_heading {
        font-size: 30px;
        line-height: 30px;
    }
}

@media screen and (max-width: 576px) {
    .plan_pricing_heading {
        font-size: 28px;
        line-height: 28px;
    }
}

@media screen and (max-width: 767px) {

    .main-header-front .pink-btn,
    .main-header-front .pink_blue_grad_button {
        margin: 0;
        border: 0;
        padding: 10px 40px;
    }
}

/* changes after change the container size */
/* for 1366px */
@media screen and (max-width: 1439px) {
    .main-header-front .pink_blue_grad_button {
        margin: 15px 10px;
    }

    .home-features .home-feature-items .item {
        display: block;
        margin-bottom: 150px !important;
    }

    #lottie-eyes {
        top: -175px;
    }
}

/* for 1280px */
@media screen and (max-width: 1365px) {
    .main-header-front .pink_blue_grad_button {
        margin: 15px 9px;
    }

    .hero_bold_title {
        margin-top: 130px;
    }

    .online_sell_subheading {
        margin-bottom: 65px;
        margin-top: 25px;
    }

    .online_sell_text {
        margin-bottom: 25px;
    }

    .faq-heading-row {
        max-width: 40%;
    }

    .faq-faq-row {
        max-width: 60%;
    }
}

/* for 1024px */
@media screen and (max-width: 1279px) {
    .main-header-front .pink_blue_grad_button {
        margin: 15px 3px;
    }

    .main-header-front .pink-btn {
        padding: 10px 30px;
    }

    .hero_bold_title {
        margin-top: 100px;
    }

    .hero_section .w-60 {
        width: 100% !important;
    }

    .summary img {
        margin-top: 55px;
    }

    .home-features .home-feature-items {
        padding-top: 50px;
    }

    .home-features .home-feature-items .item {
        margin-bottom: 115px !important;
    }

    .featureScrollingSection__heading {
        font-size: 28px;
    }

    .online-sell.second {
        margin: 80px 0;
    }

    .fixed_footer_link.pink_blue_grad_button {
        padding: 12px 65px;
    }
}

@media screen and (max-width: 1023px) {
    .featureScrollingSection__heading {
        font-size: 26px;
    }

    .left_linine_bg {
        left: -45px;
    }

    .demo_cta_text {
        font-size: 22px;
        line-height: 30px;
    }
}

@media screen and (max-width: 991px) {
    .hero_bold_title {
        margin-top: 0;
    }

    .hero_content {
        margin-bottom: 20px;
    }

    .hero_section .dark-blue-btn {
        padding: 12px 30px;
    }

    .summary img {
        margin-top: 45px;
    }

    .feature_scrolling.home-features .row {
        display: block;
    }

    .home-features .cards-container {
        margin: 0 auto;
        max-width: 80%;
        text-align: center;
    }

    .feature_scrolling,
    .home-features {
        margin: 0;
    }

    .home-features {
        padding: 50px 0;
    }

    .payout-feature-heading.cards-container {
        display: none;
    }

    .home-features .home-feature-items {
        padding-top: 0;
    }

    .featureScrollingSection__text {
        margin: 0;
    }

    .online_img_div img {
        width: 80%;
    }

    .online_img_div {
        text-align: center;
    }

    .online-sell.second {
        margin: 50px 0;
    }

    .home-features .home-feature-items .item:last-child {
        margin-bottom: 0 !important;
    }

    .about-us.cust-page-padding {
        padding: 0;
    }

    .about {
        margin: 40px 0;
    }

    .plan_pricing.cust-page-padding {
        margin-top: 0 !important;
    }

    .main-content.py-5:has(.plan_pricing.cust-page-padding) {
        padding-top: 0 !important;
    }

    .faq-heading-row {
        max-width: 100%;
    }

    .faq_heading {
        margin-bottom: 15px;
        font-size: 35px;
    }

    .faq-faq-row {
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .home-features .home-feature-items .item {
        margin-bottom: 70px !important;
    }

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

    .pink_blue_grad_button {
        padding: 9px 15px;
    }

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

    .plan-feature-text {
        font-size: 14px;
        line-height: 22px;
    }

    .plan-feature-heading {
        font-size: 18px;
        line-height: 22px;
    }

    .fixed_footer_link.pink_blue_grad_button {
        padding: 9px 50px;
    }

    .about-inner:last-child {
        order: 1;
    }

    .about-inner:nth-last-child(2) {
        order: 2;
    }

    .about {
        margin: 40px 0;
    }

    .hero_content.hero_typed_text {
        font-size: 18px;
        line-height: 24px;
    }

    .faq_heading {
        font-size: 30px;
        line-height: 45px;
    }

    .left_linine_bg {
        left: -50px;
        top: -130px;
        transform: rotate(40deg);
    }

    .right_lining_bg {
        right: -50px;
        transform: rotate(65deg);
        top: 25px;
    }

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

@media screen and (max-width: 576px) {
    .hero_section .dark-blue-btn {
        padding: 10px 20px;
    }

    .featureScrollingSection__heading {
        font-size: 22px;
        line-height: 30px;
    }

    #lottie-eyes {
        width: 125px;
    }

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

    .right_lining_bg {
        top: 80px;
    }

    .demo_cta_text {
        font-size: 18px;
        line-height: 22px;
    }
}

@media screen and (max-width: 479px) {
    .hero_content {
        font-size: 14px;
        line-height: 22px;
    }

    .right_lining_bg {
        top: 110px;
    }
}

/* responive of the review page */
@media (max-width: 425px) {
    .card-title p {
        font-weight: 700;
        font-size: 1rem;
    }

    .card-para p {
        font-size: 0.7rem;
    }

    .card-author p {
        font-size: 0.7rem;
    }

    .reviews-row {
        flex-direction: column;
        margin: 0 auto;
        width: fit-content;
    }

    .reviews img {
        width: 70vw;
    }

    .card-text {
        padding: 1rem 2rem;
        width: 70vw;
        height: fit-content;
    }

    .row-second,
    .row-third {
        display: none;
    }

    .row-first {
        animation: none;
    }
}

/* demo cta responsive */
@media (max-width: 1199px) {

    .demo_cta_first_row,
    .demo_cta_second_row {
        text-align: center;
    }

    .demo_cta_second_row {
        padding-top: 25px;
    }
}

/* hide free plan css */
.plan_pricing_text {
    display: none;
}

.wallet_plan_radio_button:nth-last-child(1),
.wallet_plan_radio_button:nth-last-child(2) {
    display: none;
}

/* data table css */
.dataTables_wrapper .page-item.active .page-link {
    background-color: #2D81F7;
    border-color: #2D81F7;
}

.dataTables_wrapper .dataTables_paginate .pagination {
    justify-content: end;
}

.dataTables_wrapper .dataTables_filter {
    justify-content: end;
    display: flex;
}

/*  About Us Page CSS   */
.about-us~.py-5 {
    padding-top: 0 !important;
}

.about-us .hero_section {
    padding: 10rem 0;
}

.about-us .content-wrapper {
    width: 60%;
    margin: 0 auto;
}

.about-us .hero_title {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    font-size: 40px;
    line-height: 50px;
    color: #D1295F;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
}

.about-us .hero_title:before {
    position: absolute;
    content: '';
    top: 0;
    text-align: center;
}

.about-us .content-hero {
    width: 1120px;
    max-width: 100%;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 40px;
}

.about-us .company-logo {
    width: 200px;
    height: 90px;
    object-fit: contain;
}

.about-us .birth_section {
    background-color: #2A2742;
    padding: 5rem 0;
}

.about-us .title-white {
    color: #ffffff;
}

.about-us .about-boxes {
    text-align: center;
}

.about-us .pink-link {
    color: #D1295F;
}

.about-us .pink-link:hover {
    text-decoration: underline;
}

.about-box {
    box-shadow: 0px 0px 8px -4px #b5b0b2;
    border: 1px solid #f1f1f1;
    padding: 50px;
}

.about-images {
    margin-bottom: 15px;
}

.btn-primary {
    color: #fff !important;
    background-color: #2D81F7 !important;
    border-color: #2D81F7 !important;
}

.btn-primary:hover,
.btn-outline-primary:hover {
    background: #2D81F7 !important;
    box-shadow: 0 8px 25px -8px #2D81F7 !important;
    border-color: #2D81F7 !important;
    color: #FFF !important;
}

.btn-primary,
.btn-outline-primary {
    border-color: #2D81F7 !important;
}

.btn-outline-primary {
    color: #2D81F7 !important;
    border-color: #2D81F7 !important;
}

.radio-primary input:checked~.checkmark {
    background-color: #2D81F7 !important;
}

.layout-sidebar-large .sidebar-left .navigation-left .nav-item.active .triangle {
    border-color: transparent transparent #2D82F7 transparent !important;
}

.layout-sidebar-large .sidebar-left .navigation-left .nav-item.active .nav-item-hold {
    color: #2D81F7 !important;
}

.badge-primary {
    background-color: #2D81F7 !important;
}

.text-primary {
    color: #2D81F7 !important;
}