/**************************************** 
        Custom Utility Classes Start
****************************************/

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #000;
    cursor: pointer;
}

.rotate-180 {
    transform: rotate(180deg);
}

.cross {
    display: flex;
    justify-content: end;
    align-items: center;
    /* margin-bottom: 10px; */
}

#closeButton {
    cursor: pointer;
}

#cropButton {
    padding: 6px 10px;
    border: none;
    border-radius: 8px;
    color: white;
    background: rgb(9, 132, 227);
    font-size: 14px;
    cursor: pointer;
    float: right;
    margin-top: 10px;
}

.caret {
    width: 11px;
    height: 5px;
}

.steps-row>.number::before {
    counter-increment: counter;
    content: "0" counter(counter);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 4rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    z-index: -1;
    top: -80px;
    color: var(--color-EFEFEF);
    transition: all 300ms ease-in-out;
}

.camera-label span {
    color: White !important;
}

.number:hover::before {
    transform: translateY(-35px);
    color: var(--color-dark) !important;
}

.number:hover .step-card {
    transform: translateY(-10px);
}

.content-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    background-color: rgba(247, 250, 252, 1);
    padding: 2rem;
    border-radius: var(--border-radius-default);
}

.content-section .left :is(h2, h3, h4) {
    color: rgba(24, 64, 132, 1);
    border-radius: var(--border-radius-default);
    font-weight: 500;
}

.content-section .left {
    font-weight: 300;
}

.flex-center.arrow {
    flex: 1;
}

.justify-between {
    justify-content: space-between !important;
}

.user-account {
    display: flex;
    flex-direction: column;
}

.user-account h1 {
    text-align: center;
    font-size: var(--font-size-h2);
}

.user-account .user-account-card {
    margin: auto;
    background: #ffffff;
    box-shadow: 0px 30px 99px rgba(0, 0, 0, 0.051);
    border-radius: 20px;
    padding: 10px 20px;
    width: 500px;
}

.user-account .second-heading {
    font-weight: 600;
}

.user-account .field {
    display: flex;
    margin-top: 15px;
}

.user-account .field label {
    flex-basis: 50%;
    font-weight: 500;
    font-size: var(--font-size-small);
}

.user-account .field span {
    font-size: var(--font-size-small);
}

.user-account .field .membership {
    background: linear-gradient(256deg,
            #8e64f5 0.57%,
            #834eff 18.36%,
            #5c37fe 44.22%,
            #10affd 83.21%,
            #7cd6ff 98.9%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    max-width: fit-content;
}

.hrz__line {
    border-top: 1px solid #e4e8f1;
    height: 1px;
    background: var(--color-0000000D);
    margin: 10px 0px;
}

.user-account .line-bar {
    height: 1px;
    background: var(--color-0000000D);
}

.__user_details {
    display: flex;
    flex-direction: column;
    padding: 8px;
    user-select: none;
}

.user-account .input-box {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.user-account .input-box .pass_icon {
    position: absolute;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
    bottom: 0;
}

.input-box {
    position: relative;
}

.user-account .input-box label {
    font-weight: 500;
    font-size: var(--font-size-small);
}

.user-account .input-box input {
    display: flex;
    border: 1px solid var(--color-D9D9D9);
    padding: 2px 15px;
    font-size: var(--font-size-small);
    border-radius: 5px;
}

.user-account .change-password-btn {
    background: var(--color-blue);
    color: white;
    border: none;
    padding: 0px 15px;
    font-size: var(--font-size-small);
    border-radius: 5px;
    margin-top: 10px;
    float: right;
    cursor: pointer;
    width: 150px;
}

.user-account .change-password-btn:hover {
    background: #4fabf1;
}

.user-account .change-password-btn:active {
    background: #179aff;
}

.user-account-card .error-msg,
.user-account-card .success-msg {
    font-size: var(--font-size-x-small);
}

.user-account-card .error-msg {
    color: red;
}

.user-account-card .success-msg {
    color: var(--color-blue);
}

.user-account-card .for-free-pro {
    display: flex;
    width: 50%;
    justify-content: space-between;
}

.user-account-card .purchase-btn {
    color: white;
    background: linear-gradient(88.02deg,
            #8e64f5 0.57%,
            #834eff 18.36%,
            #5c37fe 44.22%,
            #10affd 83.21%,
            #7cd6ff 98.9%);
    border-radius: 5px;
    text-align: center;
    font-size: var(--font-size-small);
    padding: 0px 15px;
    width: 150px;
}

.billing-logout,
.back-cancel {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.billing-logout .logout-btn,
.back-cancel .cancel-sub-btn {
    background: var(--color-FF5C5C);
    color: white;
    padding: 0px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: var(--font-size-small);
    min-width: 150px;
    text-align: center;
    line-height: 2.2;
}

.billing-logout .logout-btn img {
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

.billing-logout .billing-btn,
.back-cancel .back-btn {
    color: #718096;
    text-decoration: underline;
    cursor: pointer;
    font-size: var(--font-size-small);
}

.back-cancel .cancel_mess {
    font-size: var(--font-size-small);
    line-height: normal;
}

.back-cancel {
    margin-top: 180px !important;
    margin-bottom: 10px;
    gap: 52px;
    align-items: center;
}

#back_btn>img {
    width: 14px;
    height: 14px;
}

#back_btn {
    padding: 5px 18px;
    cursor: pointer;
}

.clear-both {
    clear: both;
    margin-top: 60px;
}

.flex-column {
    flex-direction: column;
}

.header-backgroup {
    position: relative;
}

.close-warning-icon {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}

.planCheck {
    border: 1.5px solid #ffffff;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

/* When checked */
.planCheck:checked {
    border-color: #0984e3;
    accent-color: #0984e3;
}

.width-full {
    width: 100%;
}

.no-wrap {
    text-wrap: nowrap;
}

.error-field {
    border: 1px solid var(--color-FF5C5C) !important;
    background: #ffecec !important;
}

.error_msg,
.success_msg {
    font-size: var(--font-size-x-small);
}

.error_msg {
    color: var(--color-FF5C5C);
    line-height: 20px !important;
}

.success_msg {
    color: green;
}

.responsive_close {
    display: none;
}

.remember-forgot-area {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    margin-bottom: 16px;
}

.remember-forgot-area a {
    cursor: pointer;
    color: #4899ff;
}

.remember-forgot-area span,
.remember-forgot-area a {
    font-size: var(--font-size-x-small);
    line-height: 20px;
}

.remember-forgot-area span {
    color: #55586e;
}

#reset_password_btn {
    margin-top: 10px;
    font-size: var(--font-size-small);
    margin-top: 30px;
    height: 40px;
}

.left_rotation {
    animation: for_left 0.2s linear;
}

@keyframes for_left {
    0% {
        transform: rotate(180deg);
    }
}

.right_rotation {
    animation: for_right 0.2s linear;
}

@keyframes for_right {
    100% {
        transform: rotate(180deg);
    }
}

.auth-title {
    font-size: var(--font-size-h3);
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1e223f;
}

.form-area .title img {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.form-area-input {
    width: 100%;
    padding: 8px 12px;
    font-size: var(--font-size-small);
    color: #55586e;
    line-height: 24px;
    font-weight: 400;
    border-radius: 10px;
    border: 1px solid #eaecf0;
    height: 40px;
}

.form-area-input::placeholder {
    color: #aaacb7;
}

.divider-var {
    display: flex;
    text-align: center;
    align-items: center;
    margin-bottom: 16px;
}

.divider-var .line {
    width: 100%;
    background: #eaecf0;
    height: 1px;
}

.divider-var .text {
    font-size: var(--font-size-x-small);
    line-height: 16px;
    color: #85878e;
    margin-left: 8px;
    margin-right: 8px;
    text-wrap: nowrap;
}

.signup-signin-btn {
    background: var(--color-blue);
    border: none;
    color: var(--color-F0F0F0);
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.slider-btns {
    display: flex;
    gap: 5px;
}

.slider-btns .slider-btn {
    width: 10px;
    height: 10px;
    background: #84c2f1;
    border-radius: 10px;
    cursor: pointer;
}

.slider-btn-active {
    width: 40px !important;
    background: white !important;
}

.forgot-password {
    display: flex;
    height: 95vh;
}

.forgot-password .screen-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 40%;
    background: var(--color-blue);
    justify-content: center;
}

.forgot-password .screen-view p {
    color: white;
}

.forgot-password .screen-view .forgot-img {
    width: 300px;
    height: 300px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.forgot-password .screen-view .short-detail {
    font-size: var(--font-size-small);
}

.forgot-password .forgot-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 60%;
    justify-content: center;
}

.forgot-password .forgot-form .form {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.forgot-password .forgot-form .form label {
    font-weight: 500;
    font-size: var(--font-size-small);
    margin-top: 15px;
    height: 40px;
}

.forgot-password .forgot-form .form input {
    font-size: var(--font-size-small);
    padding: 0px 10px;
    border-radius: 5px;
    border: 1px solid var(--color-D9D9D9);
    height: 40px;
}

.forgot-password .forgot-form .form button {
    border: none;
    background: var(--color-blue);
    color: white;
    font-size: var(--font-size-small);
    border-radius: 5px;
    margin-top: 20px;
}

.forgot-password .forgot-form .title {
    font-size: 24px;
    font-weight: 700;
}

.forgot-password .forgot-form p {
    font-size: var(--font-size-x-small);
    color: var(--color-CBCBCB);
    margin-top: 25px;
}

.forgot-password .forgot-form a {
    font-size: var(--font-size-small);
    color: var(--color-blue);
}

.forgot-password .forgot-form .form span {
    font-size: var(--font-size-small);
}

.forgot-password .forgot-form .form .success-msg {
    color: green;
}

.forgot-password .forgot-form .form .error-msg {
    color: red;
}

.forgot_btn:hover {
    text-decoration: underline;
}

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

.gap-8 {
    gap: 8px;
}

#register_captcha,
#login_captcha {
    position: absolute;
    bottom: 30px;
    width: 100%;
    left: 0;
}

#login_captcha>div {
    text-align: center;
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0000004D;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#lightbox .lightbox-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    max-width: 580px;
    width: 100%;
    overflow: hidden;
}

#lightbox .lightbox-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
    border-bottom: 1px solid #e5e7eb;
    flex: none;
    width: 100%;
}

#lightbox .lightbox-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #1e223f;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

#lightbox .lightbox-close {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 32px;
    height: 32px;
}

#lightbox .lightbox-body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px;
    max-height: 400px;
    min-height: 400px;
    width: -webkit-fill-available;
}

.lightbox-body {
    flex-grow: 1;
}

#lightbox .lightbox-body img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
}

.position-fixed {
    position: fixed !important;
    top: 0 !important;
    background-color: #fff;
    z-index: 10;
}

.overflow-y-hidden {
    overflow-y: hidden !important;
}

.overflow-y-auto {
    overflow-y: auto !important;
}

.card-title-desc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom-page ul,
.custom-page ol {
    padding-left: 18px;
}

.content-section .table-div {
    box-shadow: 0 4px 41px rgb(0 0 0 / 25%);
    background-color: white;
    width: 600px;
    margin: 1rem auto;
    padding: 1rem;
    border-radius: var(--border-radius-default);
}

.content-section ul {
    list-style-position: inside;
}

.content-section .left h2 {
    font-size: var(--font-size-h2);
}

.content-section .left h3 {
    font-size: var(--font-size-h3);
}

.content-section .left a {
    color: var(--color-blue);
}

.content-section .right {
    display: none;
}

.privacy-text {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-weight: 500;
    font-size: 12px;
    color: #aaacb7;
    user-select: none;
    line-height: 18px;
    font-style: italic;
}

.m-0 {
    margin: unset !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.invisible {
    visibility: hidden;
}

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

/**************************************** 
        Custom Utility Classes End
****************************************/

/**************************************** 
        Life Time Banner Sale Start
*****************************************/

.banner-div {
    background-image: url("../img/imagetotext-io-sale.svg");
    background-position: center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-repeat: no-repeat;
    gap: 30px;
}

.inner-banner-div {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.inner-banner-div * {
    font-size: var(--font-size-small);
}

.get-key-btn {
    border-radius: 20px;
    background-color: #ffd145;
    color: black;
    padding: 0px 20px;
    font-size: 16px;
}

.shine {
    position: relative;
    overflow: hidden;
}

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

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

.flag {
    height: 25px;
    width: 25px;
}

.plan_banner_main {
    background: radial-gradient(67.82% 100% at 50% 0%,
            #0291ff 0%,
            #006dd2 100%);
    width: 100% !important;
    max-width: 100% !important;
    height: 50px;
    gap: 1rem;
}

.get_now_btn:hover {
    background: radial-gradient(67.82% 100% at 50% 0%, #ffc575 0%, #e89901 50%);
}

.get_now_btn {
    background: radial-gradient(67.82% 100% at 50% 0%,
            #ffc575 0%,
            #e89901 100%);
    padding: 8px 15px;
    border-radius: 7px;
    color: #ffffff;
    line-height: 20px;
    font-size: 14px;
    font-weight: 700;
    min-width: 92px;
    text-align: center;
    cursor: pointer;
}

/*******************************************
        LifeTime Banner Sale End
*******************************************/

/******************************************
        Dropdown Menu Start
******************************************/

.dropdown,
.account_dropdown {
    position: relative;
    display: flex;
}

.desktop__dropdown_menu {
    min-width: 220px !important;
    right: 0;
}

.dropdown-content,
.mobile_lang_dropdown,
.account-dropdown-content {
    display: none;
    align-items: flex-start;
    padding: 8px 0px;
    gap: 8px;
    position: absolute;
    min-width: 90px;
    height: 250px;
    top: 53px;
    background: #ffffff;
    box-shadow: 0px 6px 12px -4px rgba(16, 24, 40, 0.08);
    border-radius: 12px;
    z-index: 999;
    margin-top: -5px;
    max-height: 250px;
    max-width: 220px;
    overflow: auto;
    overflow-y: scroll;
}

.pro-tag {
    background: #0984e326;
    border: 1px solid #0984e352;
    color: #293c66;
    border-radius: 4px;
    font-weight: 500;
    font-size: 10px;
    margin: 0px 10px 1 0px;
    padding: 2px 4px;
    line-height: 14px !important;
}

.limited-tag {
    border: 1px solid #e4e8f1;
    background: #f5f7fb;
    border-radius: 4px;
    font-weight: 500;
    font-size: 10px;
    color: #55586e;
    margin: 0px 10px 1 0px;
    padding: 2px 4px;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #1e223f;
}

.user-email {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #85878e;
}

.account-dropdown-content {
    overflow: hidden;
}

.dropdown-content::-webkit-scrollbar {
    width: 3px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: var(--color-blue);
    border-radius: 10px;
}

.dropdown-content.show,
.account-.dropdown-content.show {
    display: block;
    overflow-y: scroll;
    /* max-height: 170px; */
}

.dropdown-content a,
.mobile_lang_dropdown a,
.account-dropdown-content a {
    color: black;
    padding: 3px 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: var(--font-size-small);
    gap: 10px;
}

.dropdown-content a {
    justify-content: space-evenly;
}

.lang-name-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-link-mobile {
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.dropdown-content a img,
.lang-flag,
.moile-lang img {
    width: 20px;
    height: 20px;
    border-radius: 20px;
}

.account_dropdown button img {
    padding: 3px;
    border-radius: 0px;
}

.account_dropdown button {
    padding: 5px 10px;
    border: 1px solid #cedae5;
    font-size: var(--font-size-small);
}

.nav__options__wrpaper {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: flex-start;
    justify-content: center;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown-content.active,
.account-dropdown-content.active {
    display: block;
}

.account_dropdown button:hover,
.navbar .navloginbtn:hover,
.account-dropdown-content a:hover {
    background: #f2f4f9;
    transition: 0.3s;
}

.account_dropdown button:active,
.navbar .navloginbtn:active,
.account-dropdown-content a:active {
    background: #e7ebf3;
    transition: 0.3s;
}

.chat_btn img {
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

.chat_btn {
    display: flex;
    color: #0d1120;
    gap: 4px;
    justify-content: space-between;
    align-items: center;
}

.chat-text,
.mobile_chat {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #1e223f;
}

.action__btns_header {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

/*****************************************
        Dropdown Menu End
******************************************/

/**************************************** 

/****************************************
        Footer Start
*****************************************/

.footer-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
}

.footer-grid .fraction:nth-child(1),
.fraction:nth-child(3),
.fraction:nth-child(4) {
    flex: 1;
}

.footer-grid .fraction:nth-child(2) {
    flex: 3;
}

.fraction .heading {
    font-size: var(--font-size-h3);
    font-weight: 500;
    margin-bottom: 1rem;
}

.fraction ul {
    list-style: none;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fraction ul li {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.mission-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #55586e;
}

.fraction ul li a {
    display: flex;
    align-items: center;
    color: #55586e;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    justify-content: start;
    gap: 16px;
}

.pointer-event-none {
    pointer-events: none !important;
}

@media (max-width: 850px) {
    .footer-grid {
        display: grid;
        gap: 1.5rem;
        grid-template-columns: 1fr 2fr;
        grid-template-areas:
            "first second"
            "third fourth"
            "fifth fifth";
    }

    .footer-grid .fraction:nth-child(1) {
        grid-area: first;
    }

    .footer-grid .fraction:nth-child(2) {
        grid-area: second;
    }

    .footer-grid .fraction:nth-child(3) {
        grid-area: third;
    }

    .footer-grid .fraction:nth-child(4) {
        grid-area: fourth;
    }

    .footer-grid .fraction:nth-child(5) {
        grid-area: fifth;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas:
            "first second second"
            "third fourth fifth";
    }
}

@media (max-width: 550px) {
    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "first"
            "second"
            "third"
            "fourth"
            "fifth";
    }
}

@media (max-width: 550px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "first first"
            "second second"
            "third fourth"
            "fifth fifth";
    }

    .footer-grid .fraction:nth-child(1) {
        grid-area: first;
    }

    .footer-grid .fraction:nth-child(2) {
        grid-area: second;
    }

    .footer-grid .fraction:nth-child(3) {
        grid-area: third;
    }

    .footer-grid .fraction:nth-child(4) {
        grid-area: fourth;
    }

    .footer-grid .fraction:nth-child(5) {
        grid-area: fifth;
    }
}

/****************************************
        Footer End
*****************************************/

/****************************************
            Pricing Plan Start
*****************************************/

.plan_info_wraper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    color: #ffffff;
}

.plan_description {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #ffffff;
    user-select: none;
}

.plan_pricing {
    display: flex;
    align-items: center;
    background: #ffffff33;
    padding: 2px 0px;
    border-radius: 8px;
    max-height: 36px;
    user-select: none;
}

.plan_offers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 14px;
    border-right: 1px solid #ffffff80;
}

.plan_offers span:nth-child(1) {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.plan_offers span:nth-child(2) {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
}

.plan_offers:last-child {
    border-right: unset !important;
}

.pricing-plan-page .plan-boxs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: auto;
}

.pricing-plan-page .plan-box {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 18px;
    border-radius: 16px;
    max-width: 280px;
    width: 100%;
    border: 1px solid #e7ebf3;
    box-shadow: 0px 32px 80px -8px #0000000a;
}

.pricing-plan-page .plan-box:hover {
    background: linear-gradient(180deg, #e1f3ff 0%, #ffffff 24.54%);
    box-shadow: 0px 12px 40px 0px #0984e30f;
}

.pricing-plan-page .plan-box.life-time-plan-card:hover {
    background: linear-gradient(180deg, #ffede1 0%, #ffffff 24.54%) !important;
    box-shadow: 0px 12px 40px 0px #0984e30f !important;
}

.pricing-plan-page .plan-box .plan-icon {
    width: 50px;
    height: 50px;
}

.pricing-plan-page .plan-box .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 16px;
    text-transform: capitalize;
    color: #1e223f;
}

.pricing-plan-page .plan-box .detail {
    text-transform: uppercase;
    font-size: var(--font-size-small);
}

.pricing-plan-page .plan-box .detail .discount {
    color: var(--color-FF5C5C);
}

.pricing-plan-page .plan-box .cost {
    font-size: 44px;
    font-weight: 700;
    line-height: 56px;
    color: #1e223f;
}

.pricing-plan-page .plan-box .cost .plan-type {
    font-size: var(--font-size-small);
    line-height: 36px;
    font-weight: 400;
    color: #55586e;
}

.pricing-plan-page .plan-box a {
    background: #1e223f;
    color: white;
    text-align: center;
    font-size: var(--font-size-small);
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 8px 16px;
    max-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.pricing-plan-page .plan-box .lifetime-btn {
    background: radial-gradient(63.24% 100% at 50% 0%,
            #ffac88 0%,
            #ff4c34 100%);
}

.pricing-plan-page .plan-box .lifetime-btn:hover {
    background: radial-gradient(63.24% 100% at 50% 0%,
            #eb9874 0%,
            #e12e16 100%);
}

.pricing-plan-page .plan-box.premium-plan a {
    background: #4899ff;
    color: white;
    transition: background 0.2s ease-in-out;
}

.pricing-plan-page .plan-box.premium-plan a:hover {
    background: #0984e3;
}

.pricing-plan-page .plan-box a:hover {
    background: #3f3e54;
}

.pricing-plan-page .plan-box ul {
    list-style: none;
}

.pricing-plan-page .plan-boxs .plan-box ul li {
    font-size: 14px;
    line-height: 20px;
    color: #1e223f;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-plan-page .plan-box ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-plan-page .plan-box ul li span {
    font-size: var(--font-size-small);
}

.pricing-plan-page .enterprise-plan {
    margin: 20px 45px;
    display: flex;
    background: var(--color-lightblue);
    border-radius: 10px 10px 30px 30px;
    gap: 15px;
    align-items: center;
    padding: 20px;
}

.pricing-plan-page .enterprise-plan .plan-content {
    display: flex;
    flex-direction: column;
}

.pricing-plan-page .enterprise-plan .title {
    font-weight: 600;
    font-size: var(--font-size-large);
}

.pricing-plan-page .enterprise-plan .short-detail {
    font-size: var(--font-size-small);
    text-transform: uppercase;
    font-weight: 500;
}

.pricing-plan-page .enterprise-plan .detail {
    font-size: var(--font-size-small);
    line-height: 1.4;
}

.pricing-plan-page .enterprise-plan .contant-btn {
    background: var(--color-dark);
    color: white;
    text-align: center;
    border-radius: 10px;
    margin-top: 10px;
    font-size: var(--font-size-small);
    padding: 13px 24px;
}

.pricing-plan-page .enterprise-plan .enterprise-plan-detail {
    min-width: 130px;
}

.plan-toggle-box {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.plan-toggle-btn input[type="checkbox"] {
    cursor: pointer;
    width: 50px;
    height: 25px;
    opacity: 0;
    position: absolute;
    z-index: 1;
    margin: 0px;
}

.plan-toggle-btn>label.plan-toggle-btn-inner {
    margin: 0px;
    width: 190px;
    height: 40px;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: block;
    color: #718096;
}

.plan-toggle-btn>label.plan-toggle-btn-inner:before {
    content: attr(data-on);
    position: absolute;
    font-size: 12px;
    font-weight: 500;
    top: 7px;
    line-height: 28px;
    font-size: 14px;
    right: 20px;
}

.plan-toggle-btn>label.plan-toggle-btn-inner:after {
    content: attr(data-off);
    width: 90px;
    height: 25px;
    background: #0984e3;
    border-radius: 26px;
    position: absolute;
    color: white;
    left: 6px;
    top: 2px;
    text-align: center;
    transition: all 0.3s ease;
    padding: 5px 0px;
    line-height: 28px;
    font-size: 14px;
}

.plan-toggle-btn input[type="checkbox"]:checked+label.plan-toggle-btn-inner:after {
    content: attr(data-on);
    left: 95px;
    background: #0984e3;
}

.plan-toggle-btn input[type="checkbox"]:checked+label.plan-toggle-btn-inner:before {
    content: attr(data-off);
    right: auto;
    left: 20px;
}

.plan_discount_area {
    text-align: center;
    color: #55586e;
    font-size: var(--font-size-x-small);
    margin-top: 5px;
}

.plan_discount_area span {
    font-size: var(--font-size-x-small);
}

.plan-card-outer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-plan-card .price {
    font-weight: 600;
    text-wrap: nowrap;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 10px 8px;
    border: 2px solid #e4e8f1;
    width: fit-content;
    align-items: center;
    min-width: 100px;
    gap: 0px;
    justify-content: center;
    min-height: 84px;
    cursor: pointer;
    text-wrap: wrap;
    word-break: break-all;
    flex: 1;
    background: #ffffff80;
}

.pro-plan-card .price-custom {
    font-weight: 600;
    text-wrap: nowrap;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 12px;
    border: 2px solid #e4e8f1;
    width: fit-content;
    align-items: center;
    min-width: 100px;
    gap: 0px;
    justify-content: center;
    min-height: 100px;
    cursor: pointer;
    text-wrap: wrap;
    word-break: break-all;
    flex: 1;
    background: #ffffff80;
    gap: 2px !important;
}

.active-price-box {
    border: 2px solid #0984e3 !important;
    background-color: #f5f7fb !important;
}

.price>span {
    color: #1e223f;
    font-size: 20px;
    font-weight: 800;
    line-height: 26px;
}

.pro-plan-card .price small {
    color: #55586e;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.plan_discount_area .value_field {
    color: #1e223f;
    font-weight: 600;
}

.pro-plan-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px;
    border: 1px solid #e4e8f1;
    height: auto;
    min-height: 350px;
    background: #f5f7fb;
}

.pro-plan-card .heading {
    font-size: 22px;
    font-weight: bold;
    line-height: normal;
    color: #1e223f;
}

.pro-plan-card .desc {
    color: #55586e;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.pro-plan-head {
    display: flex;
}

.pro-plan-head>div {
    flex: 1;
}

.price {
    font-size: var(--font-size-h2);
    font-weight: 500;
}

.right-plan-keys {
    display: flex;
}

.right-plan-keys-custom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pro-plan-head-popup {
    gap: 16px;
}

.limit-exceed-popup-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.limit-exceed-popup-btn>.continue-free-btn {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    color: #1e223f;
    white-space: nowrap;
}

.premium-features-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #55586e;
}

.premium-feature {
    gap: 4px;
    display: flex;
    flex-direction: column;
}

.premium-feature-custom {
    display: flex !important;
    justify-content: space-between !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 5px !important;
}

.premium-feature li {
    font-size: var(--font-size-x-small);
    display: flex;
    align-items: center;
    gap: 5px;
    color: #1e223f;
    font-size: 13px;
    font-weight: 400 !important;
}

.premium-feature-custom li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1e223f;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
}

.premium-feature li::before {
    content: "";
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../img/icon/plan-tick-icon.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

ul.premium-feature {
    list-style: none;
    flex: 1;
}

.go-pro-btn {
    color: white;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    width: 100%;
    background: var(--color-dark);
    padding: 5px;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

.go-pro-btn-custom {
    padding: 8px 16px;
    width: fit-content;
    background: #1e223f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.go-pro-btn:hover {
    color: #fff;
    background: #313043;
    transition: 0.3s;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: counter;
}

.section .steps-title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 0.324rem;
    padding: 0 20px 50px 20px;
}

.steps-title .title {
    color: #0d1120;
    font-size: var(--font-size-h3);
    text-align: center;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.steps-title .des {
    color: #85878e;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
}

.des {
    font-weight: 600 !important;
}

.step-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: var(--border-radius-default);
    position: relative;
    z-index: 10;
    height: 100%;
    background-color: white;
    transition: all 300ms ease-in;
}

.step-card .header {
    display: flex;
    justify-content: space-between;
    color: var(--color-D9D9D9);
}

.step-card .header p {
    font-size: var(--font-size-large);
}

.step-card .header img {
    height: 40px;
    width: 40px;
}

.step-card .heading {
    font-size: var(--font-size-large);
    color: black;
    font-weight: 500;
}

.step-card .description {
    font-weight: 300;
}

.steps-row>.number {
    position: relative;
    z-index: 1;
}

.plan {
    margin-bottom: 60px;
}

.steps-row>.number::before {
    counter-increment: counter;
    content: "0" counter(counter);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 4rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    z-index: -1;
    top: -80px;
    color: var(--color-EFEFEF);
    transition: all 300ms ease-in-out;
}

/****************************************
            Pricing Plan End
*****************************************/

/*****************************************
        Modals Popup Start
*****************************************/

.modalImg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.modal-content {
    background-color: #fff;
    padding: 16px;
    border-radius: 5px;
    text-align: center;
    overflow: auto;
    max-height: 500px;
    max-width: 400px;
    position: relative;
}

#cropper-container {
    min-height: 300px;
    max-height: 350px;
    overflow: auto;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #cbcbcb;
    border-radius: 10px;
}

#imageModal {
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

#cropped-image {
    max-width: 100%;
    max-height: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cropper-container {
    width: 100%;
    height: 425px;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

.cropper-image {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid #ededed;
    padding: 3px;
    display: flex;
    background-color: rgb(239 239 239 / 80%);
}

.login_modal-content {
    width: 800px;
    display: flex;
    min-height: 574px;
}

.login_modal-content.h-fit-content {
    height: fit-content !important;
    max-height: fit-content !important;
}

.login_modal-content .form-area {
    flex-basis: 50%;
    padding: 24px;
}

.login_modal-content .form-area.reg_height {
    min-height: 588px;
}

.login-popup-footer span {
    font-size: var(--font-size-x-small);
    line-height: 20px;
    color: #55586e;
}

.login-popup-footer .link {
    color: var(--color-blue);
    line-height: 20px;
    cursor: pointer;
}

.login_modal-content .form-area p {
    font-size: var(--font-size-x-small);
    margin-top: -5px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.gmail-btn {
    display: flex;
    justify-content: center;
    gap: 8px;
    border: 1px solid #eaecf0;
    border-radius: 8px;
    font-size: var(--font-size-small);
    line-height: 24px;
    padding: 8px 16px;
    background: #ffffff;
    margin-bottom: 16px;
    transition: all 0.2s ease-in-out;
}

.gmail-btn:hover {
    background: #f5f7fb;
}

.login_modal-content .text-area {
    background: var(--color-blue);
    flex-basis: 50%;
    border-radius: 0px 10px 10px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: center;
    gap: 20px;
}

.close_error_popup_btn {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: var(--font-size-medium);
    color: white;
    font-weight: 500;
    cursor: pointer;
}

.login_modal-content .text-area .text {
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.login_modal-content .text-area .text span {
    font-size: var(--font-size-default);
    line-height: 28px;
}

.login_modal-content .text-area .text span:first-child {
    font-weight: 700;
    letter-spacing: 0%;
}

.login_modal-content .text-area .text span:last-child {
    width: 220px;
    line-height: 16px;
    font-size: 12px;
    font-weight: 400;
}

.login_modal-content .text-area .logo {
    width: 40px;
    height: 40px;
}

.login_modal-content .text-area .slider1 {
    width: 300px;
    height: 280px;
    border-radius: 10px;
}

.for_login #error_modal .error_modal-content,
#error_modal .error_modal-content {
    width: 420px;
    height: auto;
    padding: 24px;
    gap: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
}

.error-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

#error_modal .header-backgroup {
    background: #ebf8ff;
    width: 100%;
    height: 140px;
    border-radius: 10px 10px 0px 0px;
    text-align: center;
}

#error_modal .header-backgroup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
}

#error_modal .error-title>#error_title {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #1e223f;
}

#error_modal .error-title {
    line-height: 1;
    width: 100%;
}

#error_modal .error-footer {
    display: flex;
    width: 100%;
    justify-content: space-around;
    height: 60px;
    align-items: initial;
}

#error_modal .error-detail {
    color: var(--color-666666);
    width: 75%;
    text-align: center;
    line-height: 1.3;
}

#error_modal .error-footer .action-btn {
    background: linear-gradient(256deg,
            #8e64f5 0.57%,
            #834eff 18.36%,
            #5c37fe 44.22%,
            #10affd 83.21%,
            #7cd6ff 98.9%);
    color: white;
    padding: 0px 15px;
    border-radius: 5px;
    height: 47px;
    line-height: 47px;
    cursor: pointer;
}

#error_modal .error-footer .ignore-btn {
    height: 47px;
    line-height: 47px;
    color: var(--color-666666);
    cursor: pointer;
    padding: 0px 15px;
}

#error_modal .error-footer .ignore-btn:hover {
    background: var(--color-EFEFEF);
    border-radius: 5px;
    font-weight: 400;
}

#error_modal #error_detail {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #55586e;
}

.popup_model {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 99;
}

.popup_modal-content {
    background-color: #fefefe;
    margin: auto;
    border-radius: 16px;
}

.popup_foot_link {
    font-size: var(--font-size-x-small);
    line-height: 20px;
    color: #55586e;
}

.popup_foot_link a {
    font-size: var(--font-size-x-small);
    line-height: 20px;
    color: #55586e;
    text-decoration: underline;
}

/*****************************************
        Modals Popup End
*****************************************/

/*****************************************
        Feedback Start
******************************************/

.feedback_modal {
    width: 407px;
    height: 376px;
}

.feedback {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.feedback_success {
    margin-top: 40px;
}

.feedback .head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feedback .head .title {
    color: #1e223f;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}

.feedback .head .des {
    color: #aaacb7;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}

.feedback .feed {
    border-radius: 12px;
    border: 1px solid #e4e8f1;
    background: #fff;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.emoji-premium {
    padding: 8px !important;
}

.feedback-prem {
    margin-top: 0px !important;
    flex-direction: row !important;
    text-wrap: nowrap;
}

.prem-feedback-label {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #55586e;
}

.prem_feedback_main {
    position: absolute;
    right: 0;
    bottom: -2.5em;
}

.feedback .feed .emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 10px;
    border-right: 1px solid #e4e8f1;
    flex: 1;
    transition: margin-top 0.3s ease;
}

.feedback .feed .emoji img {
    filter: grayscale(1);
}

.feedback .feed .emoji.active-rating img {
    filter: grayscale(0);
}

.feedback .feed .emoji.emoji-5 {
    border: none;
}

.feedback .feed .emoji:hover {
    margin-top: -8px;
    cursor: pointer;
    background: #f5f7fb;
}

.feedback .feed .emoji.active {
    background: #f5f7fb;
    margin-top: -15px;
}

.feedback_modal {
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    position: relative;
}

.feed-all {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.feed-modal {
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    border-top-right-radius: 12px !important;
    border-top-left-radius: 12px !important;
}

.feed-all textarea {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border: 1px solid #e4e8f1;
    background: #fff;
    padding: 5px;
    resize: none;
    height: 150px;
}

.feed-all textarea::placeholder {
    color: #a8a9b4;
    font-size: 16px;
    font-weight: 400;
}

#submit_feedback {
    border-radius: 8px;
    border: none;
    background: #4899ff;
    margin-top: 10px;
    color: #fff;
    text-align: center;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.feedback_modal .close_modal {
    position: absolute;
    top: 5px;
    font-size: 30px;
    right: 20px;
    cursor: pointer;
}

.close_feed_success_modal_btn {
    border-radius: 8px;
    border: none;
    background: #4899ff;
    margin-top: 10px;
    padding: 0 55px;
    color: #fff;
    text-align: center;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

/*****************************************
        Feedback End
******************************************/

/*****************************************
        FAQ Start
******************************************/

.section.faq {
    background-color: #f7fafc;
}

.faqs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    font-weight: 300;
}

.faqs .faq {
    max-width: 900px;
    padding: 1rem;
    background-color: white;
    border-bottom: 1px solid black;
    width: 100%;
    cursor: pointer;
}

.faqs .faq ul {
    list-style: inside;
}

.faqs .faq .ques {
    position: relative;
    font-size: var(--font-size-h3);
    font-weight: 500;
    padding-right: 25px;
}

.faqs .faq .ques::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 2rem;
    top: -20px;
    color: #4299e180;
}

.faqs .faq.active .ques::after {
    content: "-";
}

/*********************************************
        FAQ End
**********************************************/

/****************************************
        Blog Section Start
*****************************************/

.recommended-blogs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recommended-blogs .description h3 {
    font-weight: 500;
}

.feature-img {
    height: 200px;
    overflow: hidden;
}

.recommended-blogs .feature-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.blog-card .description {
    display: flex;
    min-height: 90px;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.5rem;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.content-section .right {
    padding: 0.5rem;
    background-color: white;
    height: fit-content;
    top: 60px;
}

.blog-card {
    border: 1px solid #ccc;
}

.popular-blogs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.popular-blogs h3 {
    font-weight: 500;
    flex: 15;
}

/****************************************
        Blog Section End
*****************************************/

/****************************************
        Contact Section Start
*****************************************/

.contact-us {
    display: flex;
    gap: 10%;
}

.contact-us .contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-lightblue);
    border-radius: 20px;
    flex-basis: 40%;
}

.contact-us .contact-form {
    flex-basis: 50%;
}

.contact-us .form-name {
    display: flex;
    gap: 20px;
}

.contact-us .form-fname,
.contact-us .form-lname {
    flex-basis: 50%;
}

.contact-us .input-field {
    width: 100%;
    border-radius: 7px;
    border: 1px solid var(--color-D9D9D9);
    padding: 0px 10px;
    resize: none;
}

.contact-us label {
    font-weight: 500;
}

.contact-us .short-detail {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: var(--font-size-small);
}

.contact-us .contact-img {
    width: 300px;
}

.contact-us .social-icons {
    display: flex;
    gap: 20px;
}

.contact-us .social-icons img {
    width: 30px;
}

.contact-us .agree-policy {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-us .agree-policy p,
.contact-us .agree-policy p a {
    font-size: var(--font-size-x-small);
}

.contact-us .agree-policy p a {
    color: var(--color-blue);
}

.contact-us .send-message {
    margin-top: 15px;
    width: 100%;
    border: none;
    background: var(--color-blue);
    color: white;
    border-radius: 7px;
    font-size: var(--font-size-small);
    padding: 5px;
}

.contact-us .follow-us {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: var(--font-size-small);
}

.mobile-nav-dropdown ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #1e223f;
}

.mobile-nav-dropdown ul li a {
    font-size: 16px !important;
}

.moile-lang {
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.flag-image {
    border-radius: 50%;
}

.pricing_heading_navbar {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navloginli {
    padding: 24px;
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 12px;
}

.mobileaccount-dropdown {
    padding: 24px;
    display: flex;
    width: 100%;
}

.account-btn-mobile {
    display: flex;
    padding: 6px 16px !important;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #1e223f;
    line-height: 26px;
    font-weight: 500;
}

.mobile-menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #55586e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-trigger span:nth-child(1) {
    top: 0;
}

.mobile-menu-trigger span:nth-child(2) {
    top: 7px;
}

.mobile-menu-trigger span:nth-child(3) {
    top: 14px;
}

.mobile-menu-trigger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 7px;
}

.mobile-menu-trigger.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-trigger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 7px;
}

.mobile_tool_links a {
    width: 100%;
}

.mobile-tool-arrow,
.heading-mobile-tool {
    display: none;
}

.desktop_other_tool {
    display: flex !important;
    width: 1112px;
}

.heading-mobile-tool:hover {
    background-color: unset !important;
}

.contact-query-dropdown-wrapper {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.contact-query-dropdown-header {
    width: 100%;
    border-radius: 7px;
    border: 1px solid var(--color-D9D9D9);
    padding: 0px 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    color: #000000;
}

.contact-query-dropdown-header .arrow {
    border: solid #333;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.contact-query-dropdown-header.active .arrow {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.contact-query-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.contact-query-dropdown-list.active {
    display: block;
}

.contact-query-dropdown-list-item {
    padding: 4px 15px;
    cursor: pointer;
    text-align: start;
    color: #363b42;
}

.contact-query-dropdown-list-item:hover {
    background-color: #f5f5f5;
}

/*****************************************
        Contact Section End
******************************************/

/****************************************
        Media Query for (650px) Start 
*****************************************/
@media only screen and (max-width: 650px) {
    .plan_banner_main {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 90px;
        gap: 5px;
    }
}

/****************************************
        Media Query for (650px) End 
*****************************************/

/****************************************
        Media Query for (1080px) Start
****************************************/

@media only screen and (max-width: 1080px) {
    .pricing-plan-page .plan-boxs {
        padding: 10px 0;
    }

    .pricing-plan-page .enterprise-plan {
        flex-direction: column;
        margin: 0;
    }

    .tool-link-header {
        min-width: 236px !important;
    }
}

/****************************************
        Media Query for (1080px) End
****************************************/
/****************************************
        Media Query for (1024px) Start 
*****************************************/
@media only screen and (max-width: 1024px) {
    /* ul.premium-feature {
        margin-left: 1rem;
    } */

    .forgot-password .screen-view .forgot-img {
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

/****************************************
        Media Query for (1024px) End
*****************************************/

/****************************************
        Media Query for (850px) Start
****************************************/

@media (max-width: 850px) and (min-width: 768px) {
    .plan-card-outer {
        justify-content: center;
    }

    .plan-section1-img {
        position: absolute;
        right: 0;
        top: -2rem;
    }

    .plan-section1 {
        position: relative;
    }
}

@media (width <=850px) {
    .dropdown-content a {
        justify-content: unset !important;
        align-items: center;
        gap: 12px;
    }

    .header_tools {
        padding: 8px;
    }

    .heading-mobile-tool {
        display: block;
    }

    .mobile-tool-arrow {
        position: absolute;
        top: 0;
        left: 8px;
        display: block;
    }

    .lang-dropdown-click {
        position: unset !important;
    }

    .mobile_lang_dropdown {
        display: block;
        background: white;
        left: 0px !important;
        align-items: flex-start;
        padding: 8px 6px;
        top: 0%;
        padding-top: 60px !important;
        gap: 8px;
        position: fixed !important;
        width: 100% !important;
        background: #ffffff;
        z-index: 99999999;
        max-height: unset !important;
        max-width: unset !important;
        height: 100vh;
        overflow: auto;
        transition: right 0.3s ease-in-out;
        right: 900px;
        left: unset !important;
        margin: unset !important;
    }

    .mobile_lang_dropdown.active {
        right: 0;
    }

    .header-othertools {
        display: none;
        top: 0px;
        border-radius: 0px !important;
        right: 900px;
        left: unset !important;
        position: fixed !important;
        padding-top: 40px !important;
        width: 100% !important;
        height: 100vh;
        overflow: auto;
        transition: right 0.3s ease-in-out;
    }

    .header-othertools.active {
        right: 0;
    }

    .tool-link-header {
        width: 41% !important;
    }

    .account-dropdown-content {
        width: 87% !important;
        top: -235px;
        max-width: unset !important;
    }

    .heading-mobile-tool {
        width: 100% !important;
        padding-bottom: 16px;
    }

    .plan-section1-img img {
        width: 45px !important;
        height: 50px !important;
    }

    .navbar.desktop {
        display: none;
    }
}

/****************************************
        Media Query for (850px) End
****************************************/

/***************************************** 
    Media Query for 768px Start
******************************************/
@media (width <=768px) {

    .contact-us .contact-section {
        display: none;
    }

    .container {
        padding: 0 10px;
    }

    /* .navbar .navloginbtn {
        width: 35%;
    } */

    .tool-section {
        gap: 1rem;
        flex-direction: column;
    }

    .cropper-image::after {
        font-size: 8px;
    }

    .modal-content {
        height: 70%;
        width: 95%;
        height: auto;
    }

    .browse-btn-second svg {
        width: 60px;
    }

    .contact-us .contact-form {
        flex-basis: 70%;
        margin: auto;
    }

    .login_modal-content {
        width: 750px;
    }

    .pro-plan-card {
        /* margin-top: 40px; */
        height: 100%;
    }

    .pricing-plan-page .enterprise-plan {
        flex-direction: column;
    }

    .plan .plan-section .plan-section2 .des {
        flex-direction: column;
        gap: 0;
    }

    .plan .plan-section {
        flex-direction: column;
    }

    .smallClose_icon {
        color: black;
    }

    .plan .plan-section .plan-section1 {
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .steps-row {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 3rem;
    }

    .steps-row>.number::before {
        content: "";
    }

    .content-section,
    .popular-blogs {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        flex-direction: column;
    }

    .below-tool {
        padding: 10px 10px;
    }

    /* .privacy-text {
        display: none !important;
    } */

    .plan-section {
        max-width: 350px;
        margin: 2rem auto !important;
    }

    .plan .plan-section {
        gap: 1rem;
    }

    .h1_text {
        width: 90%;
    }
}

/***************************************** 
    Media Query for 768px End
******************************************/

/***************************************** 
    Media Query for (600px) Start
******************************************/

@media (width <=600px) {
    .tool-link-header {
        width: 100% !important;
    }

    .login_modal-content .text-area {
        display: none;
    }

    .login_modal-content {
        max-width: 343px;
        width: 100%;
        flex-direction: column;
    }

    .login_modal-content .form-area {
        flex-grow: 1;
        flex-basis: auto;
    }

    .browse-btn-second svg {
        width: 32px;
    }

    .login_modal-content {
        height: unset;
        min-height: 540px !important;
    }

    .below-tool {
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-section,
    .popular-blogs {
        grid-template-columns: 1fr;
    }

    .responsive_close {
        display: flex;
    }

    .tool-inner:not(.uploaded_tool .upload-area) {
        min-height: 220px !important;
        max-height: 220px;
    }

    :lang(ru) .tool-inner:not(.uploaded_tool .upload-area),
    :lang(ch) .tool-inner:not(.uploaded_tool .upload-area),
    :lang(de) .tool-inner:not(.uploaded_tool .upload-area),
    :lang(it) .tool-inner:not(.uploaded_tool .upload-area),
    :lang(pl) .tool-inner:not(.uploaded_tool .upload-area),
    :lang(th) .tool-inner:not(.uploaded_tool .upload-area),
    :lang(vi) .tool-inner:not(.uploaded_tool .upload-area),
    :lang(ko) .tool-inner:not(.uploaded_tool .upload-area),
    :lang(fr) .tool-inner:not(.uploaded_tool .upload-area),
    :lang(nl) .tool-inner:not(.uploaded_tool .upload-area),
    :lang(pt) .tool-inner:not(.uploaded_tool .upload-area),
    :lang(cs) .tool-inner:not(.uploaded_tool .upload-area) {
        min-height: 220px !important;
        max-height: 250px !important;
    }

    .privacy-text {
        bottom: 5px !important;
    }

    #lightbox {
        padding: 16px;
    }
}

/***************************************** 
    Media Query for (600px) End
******************************************/

/******************************************
        Media query for (425px) Start
********************************************/
@media (width <=425px) {
    .err_feedback_msg {
        font-size: 12px !important;
    }

    .privacy-text {
        margin-top: 5px;
        font-size: 12px;
    }

    .contact-us .contact-form {
        flex-basis: 95%;
    }

    .login_modal-content {
        height: unset;
    }

    .responsive_close {
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: var(--font-size-medium);
        color: black;
        font-weight: 500;
        display: block;
        cursor: pointer;
    }

    .feedback_modal {
        width: 300px;
    }

    .contact-us .form-name {
        flex-direction: column;
        gap: 0px;
    }

    .pricing-plan-page .enterprise-plan {
        flex-direction: column;
    }

    .forgot-password .screen-view {
        display: none;
    }

    .forgot-password .forgot-form {
        flex-basis: 100%;
    }

    .login_modal-content {
        max-width: 343px;
        width: 100%;
        flex-direction: column;
    }

    /* .closeIcon-css {
        display: none;
    } */

    .smallClose_icon {
        display: flex;
    }

    .plan_info_wraper {
        gap: 5px;
        width: 100%;
        justify-content: center;
    }

    .steps-row {
        row-gap: 1rem;
    }

    .step-card {
        padding: 10px 0px;
    }

    .for-free-pro {
        display: flex;
        flex-direction: column;
    }
}

/******************************************
        Media query for (425px) End
********************************************/

/***************************************** 
    Media Query for (375px) Start
******************************************/

@media (width <=375px) {
    .pro-plan-card .price {
        min-width: 95px;
    }

    .pro-plan-card .price small {
        font-size: 13px !important;
    }

    .pro-plan-card {
        padding: 15px 5px;
    }

    .premium-feature li {
        gap: 2px;
        line-height: 1.5;
    }

    .cropper-image {
        font-size: 10px;
    }

    .privacy-text {
        font-size: 10px;
    }

    .pro-plan-card-custom {
        padding: 1rem !important;
    }

    .premium-feature-custom li {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        color: #1e223f !important;
        font-weight: 400 !important;
        font-size: 14px !important;
        line-height: 20px !important;
        letter-spacing: 0% !important;
    }

    .pro-plan-card .price-custom {
        min-width: fit-content !important;
    }
}

/***************************************** 
    Media Query for (375px) End
******************************************/
.converting,
.converting>a,
.converting>button {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed !important;
}

@media (max-width: 416px) {
    #error_modal .popup_modal-content-custom {
        padding: 16px !important;
    }

    .pro-plan-card .price-custom {
        max-width: 118px !important;
        padding: 9px !important;
        min-width: fit-content !important;
    }

    .price-custom>small {
        white-space: nowrap;
    }

    .plan-card-outer-custom {
        justify-content: space-between !important;
    }
}

@media (max-width: 344px) {
    .pro-plan-card .price-custom {
        max-width: fit-content !important;
        min-width: fit-content !important;
        padding: 6px !important;
    }

    .premium-feature-custom {
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
}

@media (max-width: 330px) {
    #error_modal .popup_modal-content-custom {
        padding: 16px 10px !important;
    }
}

.pro-plan-card-custom {
    border: none !important;
    border-radius: 0px;
}

/* NEW FOOTER STYLES */

.footer-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #1e223f;
}

.footer-subheading {
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #1e223f;
}

.footer-heading img {
    width: 28px;
    height: 30px;
}

.footer-paragraph {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #55586e;
    max-width: 448px;
    transition: 0.3s ease;
}

.footer-menu>.footer-paragraph {
    max-width: fit-content;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    padding: 40px 0px;
}

.footer-content>div {
    width: 50%;
}

.footer-left-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-left-side>.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-left-side>.social-links>a {
    border-radius: 6px;
    border: 1px solid #eaecf0;
    height: 32px;
    width: 32px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.footer-left-side>.social-links>a:hover {
    background-color: #e4e3e3;
}

.mail-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-right-side {
    display: flex;
    gap: 32px;
    align-self: stretch;
    justify-content: space-between;
}

.footer-right-side>div {
    width: 33%;
}

.footer-right-side>.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-paragraph-view-more {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    scroll-behavior: smooth !important;
}

.footer-view-more {
    transition: 0.3s ease;
}

.footer-paragraph-view-more:hover .footer-view-more {
    rotate: 45deg;
    transition: 0.3s ease;
    transition: 0.3s ease;
}

.footer-menu>.footer-paragraph {
    white-space: nowrap;
}

.bottom-footer {
    padding: 24px 0px;
    border-top: 1px solid #eaecf0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-footer>p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #55586e;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-links>a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #55586e;
    transition: 0.3s ease;
}

.footer-links>a:hover,
.footer-menu>.footer-paragraph:hover {
    color: #000;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-content>div {
        width: 100%;
    }

    .footer-menu>.footer-subheading,
    .footer-menu>.footer-paragraph {
        min-width: 158px;
        max-width: fit-content;
    }

    .footer-right-side>.footer-menu {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .footer-right-side {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0px;
    }

    .footer-right-side>div {
        width: 50%;
    }

    .footer-menu>.footer-subheading,
    .footer-menu>.footer-paragraph {
        min-width: fit-content;
    }

    .footer-right-side>.footer-menu {
        align-items: start;
    }

    .bottom-footer {
        flex-direction: column;
        gap: 24px;
    }

    .footer-menu:last-child {
        margin-top: 40px;
    }
}

@media (max-width: 328px) {
    .footer-links {
        gap: 10px;
        justify-content: space-between;
    }
}

.uploaded_tool .upload-area {
    cursor: default !important;
}

#show_link>img {
    margin: 0px 5px;
}

.verified_mail {
    display: none;
    color: green;
    text-align: center;
    margin-top: 10px !important;
    margin-bottom: 0px !important;
    padding: 0px !important;
}

#error_title,
#error_detail {
    width: 100%;
}

.pass_pr {
    padding-right: 33px !important;
}

body.premium-users #chat-widget-container {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999 !important;
}

body:not(.premium-users) #chat-widget-minimized {
    display: none !important;
}

/* LIFETIME BANNER CSS (Mobile Only) */

@media (max-width: 768px) {
    .plan-section-mobile {
        padding: 20px !important;
        margin: 0 auto !important;
    }

    .lifetime-banner-header {
        display: flex;
        justify-content: center !important;
        align-items: center;
        flex-direction: row !important;
    }

    .lifetime-banner-header .plan-section1-img {
        line-height: 0px !important;
        width: fit-content !important;
        height: fit-content !important;
        flex: none !important;
    }

    .lifetime-banner-header .plan-section1-img>img {
        width: fit-content !important;
        height: 100% !important;
        max-height: 100px !important;
        object-fit: contain;
    }

    .lifetime-banner-header .plan-section1-text-title {
        font-size: 30px !important;
        line-height: 36px !important;
        font-weight: 800 !important;
    }

    .lifetime-banner-header .plan-section1-text-des {
        font-size: 14px !important;
        line-height: 20px !important;
        color: #55586e !important;
    }

    .lifetime-banner-body .des>div {
        gap: 8px !important;
    }

    .lifetime-banner-body {
        color: #55586e !important;
    }

    .lifetime-banner-body .des {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
}

@media (max-width: 500px) {
    .plan-section-mobile {
        max-width: calc(100% - 32px) !important;
        gap: 20px !important;
    }

    .lifetime-banner-body {
        width: 100%;
    }

    .lifetime-plan-footer {
        width: 100%;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: row !important;
        gap: 10px !important;
    }

    .lifetime-plan-footer .plan-section3-button {
        margin: 0px !important;
        padding: 8px 16px !important;
        min-width: fit-content !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .lifetime-plan-footer .plan-section3-button svg {
        height: 20px !important;
        width: 20px !important;
    }

    .lifetime-plan-footer .plan-section3-button span {
        font-size: 16px !important;
        line-height: 24px !important;
        font-weight: 500 !important;
    }
}