/*
-------------------------------------------------
  Theme Name: ZaiwriteAI - AI Writer Template
  Theme URL:
  Author: zainiktheme
  Author URL: https://themeforest.net/user/zainiktheme
  Creation Date: 15-February-2023
  Description:A default stylesheet for ZaiwriteAI - AI Writer Template
  Version: 1.00
  Primary use: admin dashboard, dashboard, admin panel, admin dashboard, dashboard, admin panel, ai, AI Writer, ai writer, AI Write, ai write, chatgpt, CHATGPT, Chat gpt, Openai, OpenAI, openai etc.

  ---------------------------------------------------
  Developed By: zainiktheme
  Developer URL: https://themeforest.net/user/zainiktheme
  Developer: Suraiya Aysha

  ---------------------------------------------------

  --------------------------------------------------
  Table of Contents
  --------------------------------------------------
  1. General CSS
  2. Typography CSS
  3. Button CSS
  4. Navbar CSS
  5. Scroll To Top
  6. Preloader Area
  5. Common Custom Scrollbar
  7. Header Area
  8. Brand Logo Slider
  9. Generate Content Area
  10. Pricing Plan
  11. Customer Testimonial Area
  12. FAQS Area
  13. Footer Area
  14. Page Banner
  15. Contact Page
  16. Payment Method
  17. Sign Up Page
  18. Responsive CSS

------------------------------------------------ */

/*-----------------------------------------------
    1. General Style Start
-------------------------------------------------*/

  * {
      margin: 0;
      padding: 0;
      border: none;
      outline: none;
  }

  body,
  html {
      height: 100%;
      margin: 0;
  }

body {
    background: var(--bg-primary) none repeat scroll;
    background-image: url('../img/body-bg-img.webp');
    background-position: center;
    background-size: cover;
    font-size: 17px;
    font-weight: 500;
    font-weight: normal;
    font-family: var(--body-font-family);
    color: var(--body-font-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    color: var(--heading-color);
}
a:hover {
    color: var(--primary-color);
}
/* Theme All Transitions
------------------------------- */
a, #mainNav, .navbar .dropdown .dropdown-toggle::after, .theme-btn, button, .owl-carousel button.owl-dot, button {
    transition: all .5s ease-in-out;
}
.fast-transition {
    transition: all .3s ease-in-out;
}
.slow-transition {
    transition: all .7s ease-in-out;
}

ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ul {
    margin: 0;
    padding: 0;
}

a,
a > * {
    outline: none;
    cursor: pointer;
    text-decoration: none;
}

a {
    color: var(--body-font-color);
}
a:hover {
    color: var(--primary-hover-color)!important;
    text-decoration: none;
}

img::selection {
    background: transparent;
}
.page-link:focus {
    box-shadow: none;
}

/*----Form Control Reset CSS----*/
.form-control, .form-select {
    background-color: var(--bg-primary);
    height: 50px;
    color: var(--body-font-color);
    border: 1px solid var(--border-color);
    padding: 13px 30px;
    font-size: 18px;
    background: #FFFFFF;
    border-radius: 203px;
    height: 66px;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.form-control:focus {
    background-color: var(--white-color);
    box-shadow: none;
    border-color: #86b7fe;
}
.form-select:focus {
    border-color: #86b7fe;
    box-shadow: none;
}
.form-control::placeholder {
    color: #9CA3AE;
}
.input-group-text {
    font-size: 14px;
}
textarea {
    min-height: 120px!important;
    height: auto!important;
    border-radius: 13px!important;
}
label {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-close:focus, .form-check-input:focus {
    box-shadow: none;
}
.form-select {
    padding: 7px 32px 7px 20px;
}

/* Custom checkbox Start */
.custom-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
  }
  .custom-checkbox label {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
}

.custom-checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--border-color-2);
    box-shadow: none;
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 7px;
    border-radius: 2px;
}

.custom-checkbox input:checked + label:before {
    border: 1px solid var(--primary-color);
}

.custom-checkbox input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: solid var(--primary-color);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}
/* Custom checkbox End */

/* Custom Radio Button Start */
.custom-radiobox [type="radio"]:checked,
.custom-radiobox [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.custom-radiobox [type="radio"]:checked + label,
.custom-radiobox [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--body-font-color);
    margin-bottom: 0;
}
.custom-radiobox [type="radio"]:checked + label:before,
.custom-radiobox [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color-2);
    border-radius: 100%;
    background: var(--white-color);
}
.custom-radiobox [type="radio"]:checked + label:after,
.custom-radiobox [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.custom-radiobox [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.custom-radiobox [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
/* Custom Radio Button End */

/*------------------------------------------
    2. Typography
-------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    margin: 0;
    color: var(--heading-color);
    font-style: normal;
}
h1 {
    font-weight: 700;
    font-size: 85px;
    line-height: 100%;
    /* or 85px */

    letter-spacing: -0.04em;
}
h2 {
    font-weight: 600;
    font-size: 50px;
    line-height: 100%;
    /* identical to box height, or 50px */
    letter-spacing: -0.04em;
}
h3 {
    font-weight: 500;
    font-size: 36px;
    line-height: 100%;
    /* identical to box height, or 36px */
    letter-spacing: -0.04em;
}
h4 {
    font-size: 30px;
    line-height: 140%;
}
h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    /* identical to box height, or 242% */

    letter-spacing: -0.04em;
}
h6 {
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
}
.big-para {
    font-size: 18px;
    line-height: 25px;
}

p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    color: var(--body-font-color);
}

figure {
    margin: 0 0 0;
}

/*--------------------------------
    2.1 Theme Color
-----------------------------------*/
:root {
    --navbar-bg: #000205;
    --navbar-bg-dark: #fff;

    --footer-bg: #000205;
    --footer-bg-dark: #fff;
    --footer-text-color: rgba(255, 255, 255, 0.8);

    --white-color: #fff;
    --black-color: #000;

    --bg-primary: #fff;
    --bg-primary-dark: #131517;
    --bg-secondary: #000205;
    --bg-secondary-dark: #fff;

    --status-btn-bg: #F5F5F5;
    --status-btn-bg-dark: #24282C;

    --text-gradient-color: linear-gradient(90deg, #2E42F7 11.99%, #FF9243 90.21%);

    --heading-color: #000;
    --heading-color-dark: #fff;
    --body-font-color: #727B8F;
    --body-font-color-dark: #fff;

    --border-color: #EDEDED;
    --border-color-dark: rgba(255, 255, 255, 0.1);
    --border-color-2: #EDEDED;

    --primary-color: #4831DB;
    --primary-hover-color: #442fca;;

    --blue-color: #0066D9;
    --blue-color-transparent: rgba(54, 134, 252, 0.08);

    --secondary-color: #4831DB;
    --secondary-hover-color: #4831DB;

    --red-color: #FF3D3D;
    --danger-color: #FF3D3D;
    --red-color-hover: #dc3545;

    --yellow-color: #FBBF37;
    --orange-color: #FF794D;
    --orange-color-transparent: rgba(255, 121, 77, 0.08);

    --green-color: #1EBD53;
    --green-color-hover: #0d943a;
    --green-color-transparent: rgba(30, 189, 83, 0.08);

    --body-font-family: 'Quicksand', sans-serif;
}

.color-heading {
    color: var(--heading-color);
}
.color-hover {
    color: var(--primary-hover-color);
}
.primary-color {
    color: var(--primary-color)!important;
}
.primary-color:hover {
    color: var(--primary-hover-color)!important;
}
.secondary-color {
    color: var(--secondary-color);
}
.theme-text-color {
    color: var(--body-font-color);
}
.bg-primary-color {
    background-color: var(--primary-color);
}
.bg-secondary {
    background-color: var(--bg-secondary)!important;
}
.bg-gradient {
    background-image: var(--bg-gradient)!important;
}

.theme-border {
    border: 1px solid var(--border-color);
}
.border-bottom {
    border-bottom: 1px solid var(--border-color)!important;
}
.border-top {
    border-top: 1px solid var(--border-color)!important;
}
.orange-color {
    color: var(--orange-color);
}
.green-color {
    color: var(--green-color);
}
.red-color, .theme-link-red {
    color: var(--red-color);
}
.red-color:hover, .theme-link-red:hover {
    color: var(--red-color-hover)!important;
}
button.red-color:hover, a.red-color:hover, .theme-link-red:hover {
    color: var(--red-color-hover);
}

.bg-orange {
    background-color: var(--orange-color);
}
.bg-green {
    background-color: var(--green-color);
}
.bg-red {
    background-color: var(--red-color);
}

.bg-red-transparent {
    background-color: rgba(255, 67, 67, 0.1);
}
.bg-green-transparent {
    background-color: var(--green-color-transparent);
}
.bg-blue-transparent {
    background-color: var(--primary-color-transparent);
}
.bg-purple-transparent {
    background-color: #F0EBFF;
}
.bg-orange-transparent {
    background-color: var(--orange-color);
}

.theme-link {
    color: var(--primary-color);
}
.theme-link:hover {
    color: var(--primary-hover-color)!important;
}
.theme-secondary-link {
    color: var(--secondary-color);
}
.theme-secondary-link:hover {
    color: var(--secondary-hover-color)!important;
}

/*--------------------------------
    2.3 Theme padding, margin
-----------------------------------*/
.section-t-space {
    padding-top: 140px;
}
.section-b-space {
    padding-bottom: 140px;
}
.section-t-small-space {
    padding-top: 115px;
}
.section-b-small-space {
    padding-bottom: 115px;
}
.section-t-80-space {
    padding-top: 80px;
}
.section-b-80-space {
    padding-bottom: 80px;
}
.section-t-60-space {
    padding-top: 60px;
}
.section-b-60-space {
    padding-bottom: 60px;
}
.p-30 {
    padding: 30px;
}
.pl-30 {
    padding-left: 30px;
}
.pr-30 {
    padding-right: 30px;
}
.pt-30 {
    padding-top: 30px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pb-15 {
    padding-bottom: 15px;
}
.p-20 {
    padding: 20px;
}
.pb-20 {
    padding-bottom: 20px;
}
.p-25 {
    padding: 25px;
}
.pb-25 {
    padding-bottom: 25px;
}
.pt-20 {
    padding-top: 20px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-15 {
    margin-top: 15px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mt-25 {
    margin-top: 25px;
}
.mb-25 {
    margin-bottom: 25px;
}
.me-25 {
    margin-right: 25px;
}
.ms-25 {
    margin-left: 25px;
}
.mt-20 {
    margin-top: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mr-30 {
    margin-right: 30px;
}
.mt-50 {
    margin-top: 50px;
}
.mr-15 {
    margin-right: 15px;
}
.radius-95 {
    border-radius: 95px;
}
.radius-3 {
    border-radius: 3px;
}
.radius-4 {
    border-radius: 4px;
}
.radius-5 {
    border-radius: 5px;
}
.radius-8 {
    border-radius: 8px;
}
.radius-10 {
    border-radius: 10px;
}
.radius-12 {
    border-radius: 12px;
}
.radius-15 {
    border-radius: 15px;
}
.radius-20 {
    border-radius: 20px;
}
.radius-50 {
    border-radius: 50%;
}
.radius-t-r-0 {
    border-top-right-radius: 0!important;
}
.radius-t-l-0 {
    border-top-left-radius: 0!important;
}
.radius-b-r-0 {
    border-bottom-right-radius: 0!important;
}
.radius-b-l-0 {
    border-bottom-left-radius: 0!important;
}
/*--------------------------------
    2.3 Theme Font Family, Font Size
-----------------------------------*/
.font-normal {
    font-weight: 400;
}
.font-bold {
    font-weight: 700;
 }
.font-semi-bold {
    font-weight: 600;
}
.font-medium {
    font-weight: 500;
}
.font-24 {
    font-size: 24px;
    line-height: 31px;
}
.font-20 {
    font-size: 20px;
    line-height: 31px;
}
.font-22 {
    font-size: 22px;
    line-height: 30px;
}
.font-18 {
    font-size: 18px;
    line-height: 150%;
}
.font-17 {
    font-size: 17px;
}
.font-16 {
    font-size: 16px;
}
.font-15 {
    font-size: 15px;
    line-height: 23px;
}
.font-14 {
    font-size: 14px;
}
.font-13 {
    font-size: 13px;
    line-height: 18px;
}
.font-12 {
    font-size: 12px;
    line-height: 160%;
}
.font-11 {
    font-size: 11px;
    line-height: 12px;
}

/*--------------------------------
   2.4 Template Default CSS
-----------------------------------*/
section {
    position: relative;
}
.section-title {
    width: 48%;
    margin: 0 auto 55px;
    text-align: center;
}

.section-sub-heading {
    font-size: 18px;
    line-height: 28px;
    margin-top: 19px;
}

.cursor {
    cursor: pointer;
}

.fit-image {
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

/* Avatar CSS */
.avatar-md {
    height: 3.8rem;
    width: 3.8rem;
}
.avatar-xl {
    height: 5.5rem;
    width: 5.5rem;
}
.avatar-xs {
    height: 1.5rem;
    width: 1.5rem;
}
/* Avatar CSS */

/*--------------------------------
   2.5 Template Common CSS
-----------------------------------*/

/*Pagination CSS*/
.pagination {
    margin-top: 25px;
}
.pagination li {
    margin-right: 14px;
    border-radius: 3px;
}
.page-item.active .page-link {
    color: #fff;
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.page-item .page-link .iconify {
    font-size: 19px;
    color: #52526C;
}
.pagination .page-link {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 16px;
    background-color: #fff;
    height: 45px;
    width: 45px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px!important;
    border-radius: 3px;
    border: 1px solid #F2F2F2;
    box-sizing: border-box;
    box-shadow: 0 6px 21px rgba(21, 3, 89, 0.08);
}
/*------------------------------------------
    2.Typography
-------------------------------------------*/

/*--------------------------------------------
    3. Button Style
---------------------------------------------*/
.section-btn {
    margin-top: 42px;
}
.btn {
  padding: 0;
}
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}
button {
    background-color: transparent;
}
button:focus {
    outline: 0;
}
/*-----Theme Button Style-----*/
.theme-btn, .theme-btn-outline, .theme-btn-purple, .theme-btn-green, .theme-btn-red, .edit-btn, .theme-btn-back {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    outline: none;
    z-index: 99;
    padding: 22px 50px!important;
    justify-content: center;
    border-radius: 144px;

    color: var(--white-color);
    border: 1px solid transparent;

    font-weight: 500!important;
    font-size: 18px;
    line-height: 100%;
}
.theme-btn:hover, .theme-btn-outline, .theme-btn-purple:hover, .theme-btn-green:hover, .theme-btn-red:hover {
    color: var(--white-color)!important;
}

.theme-btn {
    background-color: var(--primary-color);
}
.theme-btn:hover {
    background-color: var(--primary-hover-color);
}

.theme-btn-outline {
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    color: var(--secondary-color)!important;
}
.theme-btn-outline:hover, .theme-btn-outline.active {
    background-color: var(--secondary-hover-color)!important;
    border: 1px solid var(--secondary-color)!important;
    color: var(--white-color)!important;
}

.theme-btn-purple {
    background-color: var(--secondary-color);
}
.theme-btn-purple:hover {
    background-color: var(--secondary-hover-color);
}
.theme-btn-green {
    background-color: var(--green-color);
}
.theme-btn-green:hover {
    background-color: var(--green-color-hover);
}
.theme-btn-red {
    background-color: var(--red-color);
}
.theme-btn-red:hover {
    background-color: var(--red-color-hover);
}
.edit-btn {
    border: 1px solid var(--primary-color);
    color: var(--primary-color)!important;
}
.edit-btn:hover {
    border: 1px solid var(--primary-hover-color)!important;
    color: var(--primary-hover-color)!important;
}
.theme-btn-back {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    color: var(--heading-color);
}
.theme-btn-back:hover {
    background-color: var(--off-white);
}
.status-btn {
    padding: 7px 15px!important;
    /* min-width: 100px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    min-height: 34px;
    background-color: var(--status-btn-bg);
    color: var(--body-font-color);
}
.table .status-btn {
    min-width: 100px;
}

.status-btn-light {
    background-color: var(--bg-secondary)!important;
    color: var(--black-color)!important;
}
.status-btn-purple {
    background-color: rgba(72, 49, 218, 0.08)!important;
    color: var(--secondary-color)!important;
}
.status-btn-green {
    background-color: var(--green-color-transparent)!important;
    color: var(--green-color)!important;
}
.status-btn-red {
    background-color: rgba(255, 67, 67, 0.1)!important;
    color: var(--red-color)!important;
}
.status-btn-blue {
    background-color: var(--blue-color-transparent)!important;
    color: var(--blue-color);
}
.status-btn-orange {
    background-color: var(--orange-color-transparent)!important;
    color: var(--orange-color)!important;
}

/*--------------------------------------------
    3. Button Style
---------------------------------------------*/

/*-------------------------------------------
    4. Preloader Area Start
-------------------------------------------*/
#preloader {
    background-color: #fff;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999999999999999;
}

#preloaderInner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
/*-------------------------------------------
    4. Preloader Area End
-------------------------------------------*/

/*-------------------------------------------
    5. Common Custom Scrollbar CSS Start
-------------------------------------------*/

/* Custom Scrollbar start */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #D1D6DB #fff;
  }
  .custom-scrollbar::-webkit-scrollbar {
    width: 7px;
    height: 7px;
  }
  .custom-scrollbar::-webkit-scrollbar-track {
    background-color: #fff;
  }
  .custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #D1D6DB;
  }
  .custom-scrollbar::-webkit-scrollbar-track, .custom-scrollbar::-webkit-scrollbar-thumb {
    border-radius: 7px;
  }

  ::-webkit-scrollbar {
    width: 7px;
    height: 7px;
  }
  ::-webkit-scrollbar-track {
    background-color: #fff;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #D1D6DB;
  }
  ::-webkit-scrollbar-track, ::-webkit-scrollbar-thumb {
    border-radius: 7px;
  }

/* Custom Scrollbar end */

/*-------------------------------------------
    5. Common Custom Scrollbar CSS End
-------------------------------------------*/

/*-------------------------------------------
    4. Navbar Area CSS
-------------------------------------------*/
.container {
    padding: 0;
}

.menu-section-area {
    position: absolute;
    width: 100%;
    padding: 0;
    z-index: 999;
    overflow-x: visible;
}
@media only screen and (min-width: 992px) {
    #mainNav {
        display: block;
    }
    .navbar-expand-lg .navbar-nav {
        align-items: center;
    }
}

@media only screen and (max-width: 991.98px) {
    .navbar-nav {
        width: 100%;
    }
}

/* Main Menu Start */
.navbar-nav-middle {
    /* justify-content: center; */
    padding-left: 70px;
}
.navbar-nav-right {
    justify-content: flex-end;
}
.navbar {
    padding: 0;
}

#mainNav {
    position: absolute;
    display: flex !important;
    transition: all ease .6s;
    background: transparent;
    padding: 0 30px;
    align-items: center;
    width: 100%;
    height: 105px;
    top: 22px;
}
#mainNav.sticky {
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
    background-color: var(--navbar-bg);
    padding: 0 30px;
    box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
}

#mainNav.sticky .navbar-nav .nav-item .nav-link {
    padding: 10px 0 10px 0;
    margin-right: 36px;
}

#mainNav .navbar-brand {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 0;
    height: 100%;
}
#mainNav .navbar-nav .nav-item .nav-link {
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
    padding: 10px 0 10px 0;
    margin-right: 36px;
    position: relative;
    color: var(--white-color);
    display: flex;
    transition: ease all .5s;
    position: relative;
}

#mainNav .navbar-nav .nav-item .nav-link span {
  display: inline-block;
}
#mainNav .navbar-nav .nav-item .nav-link span:after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 0;
    height: 1px;
    background-color: var(--white-color);
    transition: opacity 0.3s ease, width 0.3s ease;
    -ms-transition: opacity 0.3s ease, width 0.3s ease;
    position: relative;
    top: 5px;
}
#mainNav .navbar-nav .nav-item .nav-link:hover span:after,
#mainNav .navbar-nav .nav-item .nav-link.active span:after {
  width: 100%;
}

/* #mainNav .navbar-nav .nav-item .nav-link:hover, #mainNav .navbar-nav .nav-item .nav-link.active { */
#mainNav .navbar-nav .nav-item .nav-link:hover {
    /* color: var(--primary-color)!important; */
}

#mainNav .navbar-nav .nav-item .nav-link:hover, #mainNav .navbar-nav .nav-item .nav-link.active {
    color: var(--white-color)!important;
}

.navbar-nav-right .header-get-free-trial-btn .theme-btn-outline  {
    margin-right: 36px;
}
.navbar-nav-right .theme-btn-outline {
    border: 1px solid var(--white-color);
    background-color: transparent;
    color: var(--white-color)!important;
    height: 58px;
    padding: 20px 22px!important;
    border-radius: 174px;
}
/*---- Dropdown Menu CSS ----*/
.dropdown-item.active, .dropdown-item:active {
    color: var(--heading-color);
    background-color: #F0FCEC;
}
.navbar .dropdown .dropdown-toggle:after {
    display: none;
}
.navbar .dropdown-menu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 1.7rem;
    color: var(--para-color);
}
.dropdown-toggle {
    display: flex;
    align-items: center;
}
#mainNav .navbar-nav .nav-item .nav-link svg {
    height: 25px;
    width: 27px;
    padding-top: 2px;
}
#mainNav .navbar-nav .dropdown-menu a {
    color: var(--heading-color);
    padding: 8px 20px 8px 20px;
    font-size: 17px;
    line-height: 21px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
#mainNav .dropdown-menu .dropdown-item {
    font-size: 17px;
    line-height: 21px;
    font-weight: 500;
}

.navbar .dropdown-menu .dropdown-toggle::after {
    color: var(--para-color);
}
#mainNav .navbar-nav .dropdown-menu a, #mainNav .navbar-nav .dropdown-menu a h6, .navbar .dropdown-menu .dropdown-toggle::after {
    transition: ease all .5s;
}
#mainNav .navbar-nav .dropdown-menu a:hover, #mainNav .navbar-nav .dropdown-menu a:hover h6, .navbar .dropdown-menu .dropdown-toggle:hover::after {
    color: var(--primary-color);
    background-color: transparent;
}

/* Language Menu Start */
.navbar-right-mobile .language-dropdown {
    display: none!important;
}
@media all and (max-width: 991px) {
    .navbar-right-mobile .language-dropdown {
        display: inline-block!important;
    }

    .offcanvas .language-dropdown {
        display: none!important;
    }
    .offcanvas-header .offcanvas-title img {
        height: 28px;
    }
}
/* Language Menu End */

/*Multilevel Dropdown Menu CSS Start*/
/* ============ desktop view ============ */
@media all and (min-width: 992px) {

    /* New */
    .navbar-brand.desktop-navbar-brand {
        display: flex!important;
    }
    .navbar-brand.mobile-navbar-brand {
        display: none!important;
    }
    /* New */

    .navbar-nav .dropdown-menu {
        position: absolute!important;
    }
    .dropdown-menu li{
        position: relative;
    }
    .dropdown-menu .submenu{
        display: block;
        visibility: hidden;
        opacity: 0;
        position: absolute;
        left:100%;
        top:10px;
    }
    .dropdown-menu .submenu-left {
        right:100%;
        left:auto;
    }

    .dropdown-menu > li:hover {
        background-color: transparent;
    }
    .dropdown-menu > li:hover > .submenu {
        visibility: visible;
        opacity: 1;
        top:-7px;
    }

    /* Show Dropdown Menu on Hover instead Click Start */
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(20px);
        transition: .2s ease-in;
    }
    .navbar .nav-item:hover > .dropdown-menu {
        display: block;
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
        transition: .3s ease-out;
        border-radius: 8px;
    }
    .top-menu-item .nav-item .dropdown-menu {
        transform: translateY(20px);
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: .2s ease-in;
    }
    .top-menu-item .nav-item:hover > .dropdown-menu {
        transform: scaleY(1);
        display: block;
        opacity: 1;
        visibility: visible;
        transition: .3s ease-out;
        z-index: 9999;
    }
    .navbar .nav-item .dropdown-menu, .top-menu-item .nav-item .dropdown-menu {
        margin-top: 0;
        box-shadow: 0px 10px 29px rgba(202, 202, 202, 0.25);
        border: 0;
        border-radius: 0;
        padding: 18px 0;
    }

    /* Show Dropdown Menu on Hover instead Click End */
}

/*Menu Mobile Responsive CSS Start*/
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile Menu CSS Start */
@media only screen and (max-width: 1199px) {

    .navbar-nav-middle {
        padding-left: 20px;
    }
    .direction-rtl .navbar-nav-middle {
        padding-left: 0!important;
        padding-right: 20px!important;
    }

    .navbar-nav-right .theme-btn-outline {
        height: 50px;
        padding: 10px 27px!important;
        font-size: 16px;
    }
}

@media only screen and (max-width: 991.98px) {
    .navbar-nav-middle {
        padding-left: 0;
    }
    #mainNav .navbar-nav .nav-item .nav-link {
        color: var(--black-color);
    }
    #mainNav .navbar-nav .nav-item .nav-link:hover, #mainNav .navbar-nav .nav-item .nav-link.active {
        color: var(--primary-color)!important;
    }
    .navbar-nav-right .theme-btn-outline {
        border: 1px solid var(--secondary-color);
        color: var(--secondary-color)!important;
        margin-top: 20px;
    }
    .navbar-nav-right .theme-btn-outline:hover {
        border: 1px solid var(--secondary-color);
        color: var(--white-color)!important;
        margin-top: 20px;
    }
    .direction-rtl .offcanvas.offcanvas-end {
        right: auto;
        left: 0;
    }
}
/* Mobile Menu CSS End */

/*Menu Mobile Responsive CSS End*/

/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {
    #mainNav {
        height: 60px;
    }
    .offcanvas-header .btn-close {
        box-shadow: none;
    }
    .navbar-brand.desktop-navbar-brand {
        display: none!important;
    }
    .navbar-brand.mobile-navbar-brand {
        display: flex!important;
    }

    .dropdown-menu .dropdown-menu {
        margin-left:0.7rem;
        margin-right:0.7rem;
        margin-bottom: .5rem;
    }

}
/* ============ small devices .end// ============ */
/*Multilevel Dropdown Menu CSS End*/

/*-------------------------------------------
    5. Scroll To Top Area
-------------------------------------------*/
#scroll {
    position: fixed;
    right: 10px;
    bottom: 40px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: none;
    z-index: 10;
    font-size: 20px;
    text-align: center;
    color: #fff;
    line-height: 48px;
}
/*-------------------------------------------
    5. Scroll To Top Area End
-------------------------------------------*/

/*-------------------------------------------
    6. Preloader Area Start
-------------------------------------------*/
#preloader {
    background-color: #fff;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999999999999999;
}

#preloader-status {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
/*-------------------------------------------
    6. Preloader Area End
-------------------------------------------*/

/*-------------------------------------------
    7. Header Area
-------------------------------------------*/
.hero-area-top-part {
    background-color: var(--bg-secondary);
    min-height: 1067px;
    padding-top: 200px;
    padding-bottom: 100px;
}
.hero-top-floating-bg-img {
    bottom: 152px;
    left: 0;
    width: 100%;
    max-height: 100%;
}

.hero-area-img {
    filter: drop-shadow(0px 58px 250px rgba(0, 0, 0, 0.06));
    border-radius: 19px;
}
.hero-area-bottom-part {
    margin-top: -453px;
}
.hero-bottom-floating-bg-img {
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
}

.hero-sub-title {
    margin: 15px auto 29px;
    width: 68%;
    color: rgba(255, 255, 255, 0.8);
}

.hero-main-title-left {
    margin-right: 14px;
}
.hero-content .theme-button {
    margin: 0 12px;
}

.hero-title-second {
    background: linear-gradient(90deg, #2E42F7 11.99%, #FF9243 90.21%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 120%;
}
.hero-robot-img {
    margin: 0 14px 0 0;
}

/*--------Type JS Effect CSS Start ------*/
.typed-cursor {
    font-weight: 100;
    position: relative;
    background: linear-gradient(-180deg, #2E42F7 11.99%, #FF9243 90.21%);
    color: transparent;
    height: 41px;
    width: 1px;
    display: inline-flex;
    top: 40px;
    margin-left: 10px;
}

.typed-cursor::before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: linear-gradient(90deg, #2E42F7 11.99%, #FF9243 90.21%);
    left: -8px;
    top: -11px;
}
.typed-cursor::after {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background-color: #192029;
    top: -10.3px;
    left: -6px;
}
/*--------Type JS Effect CSS End------*/

/*-------------------------------------------
    7. Header Area End
-------------------------------------------*/

/*-------------------------------------------
    8. Brand Logo Slider Area Start
-------------------------------------------*/
.single-logo {
    text-align: center;
}
.brand-carousel.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
    opacity: .3;
    transition: ease all .3s;
}
.brand-carousel.owl-carousel .owl-item:hover img {
    opacity: 1;
}
.brand-carousel {
    border-top: 1px solid var(--border-color-2);
    padding: 29px 0;
    border-bottom: 1px solid var(--border-color-2);
}

/*-------------------------------------------
    8. Brand Logo Slider Area End
-------------------------------------------*/

/*-------------------------------------------
    9. Generate Content Area Start
-------------------------------------------*/
.generate-content-faq {
    background-color: #F9FBFC;
}
.generate-content-faq .accordion-item {
    border-radius: 16px!important;
    background-color: var(--bg-primary);
    padding: 0px 0;
    margin-bottom: 14px;
}
.generate-content-faq .accordion .accordion-item:last-child {
    margin-bottom: 0;
}
.generate-content-faq .accordion-button {
    font-size: 22px;
    letter-spacing: -0.5px;
}
.generate-content-faq .accordion-item:first-of-type {
    border-top-left-radius: 16px!important;
    border-top-right-radius: 16px!important;
}
.generate-content-faq .accordion-item:last-of-type {
    border-bottom-right-radius: 16px!important;
    border-bottom-left-radius: 16px!important;
}
.generate-content-faq .accordion-button .iconify {
    margin-right: 12px;
    color: var(--secondary-color);
}
.generate-content-faq .accordion-body {
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.5px;
    padding: 0 1.50rem 9px 3.8rem;
}

/* Generate Content Item Start */
.how-it-works-wrap .how-it-works-item:nth-child(even) .row {
    flex-direction: row-reverse;
}
.how-it-works-wrap .how-it-works-item:nth-child(even) .row .how-it-works-item-bg {
    transform: rotateX(170deg);
}
.how-it-works-wrap .how-it-works-item:last-child .row .how-it-works-item-bg {
    display: none;
}

.how-it-works-item-title {
    padding-right: 70px;
}
.how-it-works-features .price-check-icon {
    width: 26px;
    height: 26px;
    margin-top: 2px;
    margin-right: 15px!important;
}
.how-it-works-number {
    width: 41px;
    height: 41px;
}
/* Generate Content Item End */

/*-------------------------------------------
    9. Generate Content Area End
-------------------------------------------*/

/*-------------------------------------------
    10. Pricing Plan CSS Start
-------------------------------------------*/
.pricing-top-part-content-wrap {
    background-color: var(--bg-secondary);
    min-height: 1014px;
}
.pricing-floating-bg-img {
    top: 25%;
    left: 0;
    width: 100%;
    max-height: 100%;
}

.pricing-special-title .pricing-special-small-title {
    background: linear-gradient(90.57deg, #2E42F7 19.72%, #FF9243 86.58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-special-title {
    width: 75%;
    margin: 0 auto;
    margin-bottom: 15px;
}
.pricing-top-part-content p {
    width: 41%;
    margin: 0 auto 30px;
}

/* Pricing Area Bottom Part Start */
.pricing-area-bottom-part {
    margin-top: -348px;
}
.pricing-plan-area {
    padding: 0 70px;
}
/* Pricing Area Bottom Part End */

.choose-plan-area-title, .payment-method-area-title {
    margin-bottom: 50px;
}
.price-card-item {
    border: 0.776515px solid rgba(0, 0, 0, 0.1);
    border-radius: 15.5303px;
    background-color: var(--bg-primary);
}
.price-title span {
    color: #727B8F;
    letter-spacing: -0.04em;
}

hr {
    border: 1.6px solid rgba(0, 0, 0, 0.1);
}

.pricing-features {
    margin: 18px 0 11px;
}
.price-check-icon {
    width: 22px;
    height: 22px;
}
/*-------------------------------------------
    10. Pricing Plan CSS End
-------------------------------------------*/

/*-------------------------------------------
    11. Customer Testimonial Area Start
-------------------------------------------*/
.customer-testimonial-item {
    padding: 50px;
    background-color: #F9FBFC;
    margin-bottom: 40px;
}
.customer-testimonial-area .section-title {
    width: 46%;
}
.customer-testimonial-img {
    overflow: hidden;
}
.customer-testimonial-img img {
    height: 77px;
    width: 77px!important;
    margin-right: 15px;
}
.customer-testimonial-rating .iconify {
    color: #c3c2c2;
    font-size: 20px;
}
.customer-testimonial-rating .iconify.star-filled {
    color: #FFB526;
}
.customer-testimonial-bg-dots {
    top: 14%;
    left: 23%;
}

.testimonial-bottom-line {
    width: 74px;
    height: 0px;
    border: 1px solid var(--bg-secondary);
}
.testimonial-quote .iconify {
    color: var(--primary-color);
    font-size: 57px;
    position: absolute;
    right: -16px;
    top: -13px;
}
.testimonial-quote {
    background: #EBE8FB;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    position: relative;
}

/* Controls nav */
.customer-testimonial-slider .owl-nav button {
    position: absolute;
    font-size: 32px!important;
    color: var(--white-color)!important;
}
.customer-testimonial-slider .owl-nav button:hover {
    background: transparent!important;
}
.customer-testimonial-slider .owl-nav {
    top: 37%;
}
.customer-testimonial-area .owl-nav .owl-prev {
    left: -30px;
}
.customer-testimonial-area .owl-nav .owl-next {
    right: -30px;
}

.owl-big.owl-theme {
    position: relative;
}

/* Testimonial Dots */
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    height: 24px;
    width: 24px;
    border: 2px solid transparent;
    border-radius: 50%;
    margin: 7px;
}

.owl-theme .owl-dots .owl-dot.active, .owl-theme .owl-dots .owl-dot:hover {
    border: 2px solid var(--bg-secondary);
}
.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #D6D6D6;
    border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-secondary);
}
/* Testimonial Dots */

/* Customer Testimonial Right Part */

/* Owl Navigation */
.owl-small .owl-nav button {
    height: 50px;
    width: 50px;
    border: 1px solid var(--black-color)!important;
    border-radius: 50%!important;
    background-color: var(--white-color)!important;
}
.owl-small .owl-nav [class*=owl-]:hover {
    color: var(--text-green)!important;
}
.owl-small .owl-dots, .owl-small .owl-nav {
    text-align: left;
}
.owl-small .owl-nav {
    margin-top: 30px;
    margin-left: 43px;
}
/*-------------------------------------------
    11. Customer Testimonial Area End
-------------------------------------------*/

/*-------------------------------------------
    12. FAQS Area Start
-------------------------------------------*/
.faq-floating-bg-img {
    bottom: -227px;
    left: 0;
    width: 100%;
    max-height: 100%;
}

/* Accordion CSS Start */
.accordion-button {
    background-color: transparent;
    padding: 20px 42px 20px 29px;
    font-weight: 600;
    font-size: 24px;
    line-height: 31px;
    letter-spacing: -0.04em;
}
.accordion-button::after {
    position: absolute;
    /* right: 29px; */
    right: 19px;
}
.accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: transparent;
}
.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}
.accordion-body {
    padding: 0 1.50rem 9px 1.7rem;
    margin: 0 0 10px;
    margin-right: 11px;
    color: var(--body-font-color);
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
}
.accordion-item:first-of-type {
    border-top-left-radius: 0!important;
    border-top-right-radius: 0!important;
}
.accordion-item:last-of-type {
    border-bottom-right-radius: 0!important;
    border-bottom-left-radius: 0!important;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}
.accordion-item {
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 5px 0;
    margin-bottom: 25px;
}
.accordion-item:not(:first-of-type) {
    border: 1px solid var(--border-color);
}
.accordion-button::after {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"%3E%3Cpath fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12 20v-8m0 0V4m0 8h8m-8 0H4"%2F%3E%3C%2Fsvg%3E');
    background-size: 1.1rem;
}
.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"%3E%3Cpath fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M20 12H4"%2F%3E%3C%2Fsvg%3E');
}
/* Accordion CSS End */
/*-------------------------------------------
    12. FAQS Area End
-------------------------------------------*/

/*-------------------------------------------
    13. Footer Area Start
-------------------------------------------*/
.footer-area {
    background-color: var(--footer-bg);
    padding: 140px 0 0;
}

.footer-top-part {
    padding-bottom: 140px;
}
.footer-bg-img {
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
}
/* Footer Widget */
.footer-widget {
    float: right;
}

.footer-subscribe-content form input {
    background-color: #343E53;
    border-color: transparent;
    color: var(--white-color);
    min-width: 255px;
}
.footer-subscribe-content form .form-control::placeholder {
    color: var(--white-color);
}
.footer-subscribe-content form .form-control:focus {
    background-color: #343E53;
    color: var(--white-color);
    border-color: transparent;
}
.footer-about img {
    margin-bottom: 25px;
}
.footer-widget > h5 {
    margin-bottom: 31px;
}
.footer-widget .footer-widget-title {
    color: var(--white-color);
}
.footer-widget.footer-about p {
    color: var(--footer-text-color);
}
/*Footer social */
.footer-social ul li a {
    margin-right: 10px;
    width: 25px;
    height: 25px;
    border: 1px solid var(--white-color);
    display: flex;
    border-radius: 50%;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
}

.footer-social ul li a:hover{
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.footer-social ul li a .iconify {
    color: var(--white-color);
}
.footer-links li a, .footer-links ul li {
    color: var(--footer-text-color);
}
.footer-about address, .footer-subscribe-content p {
    color: var(--footer-text-color);
    margin-bottom: 0;
}
.footer-links li a:hover, .footer-bottom-nav ul li a:hover {
    color: var(--primary-color);
    text-decoration-line: underline;
}
.footer-links ul li {
    padding: 0 0 18px;
}
.footer-links ul li:last-child {
    padding-bottom: 0;
}
.footer-contact-info ul li img {
    margin-right: 22px;
}
.copyright-text {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.copyright-text p, .copyright-text a {
    color: #D6D6D6;
}
.copyright-text p a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
/*-------------------------------------------
    13. Footer Area End
-------------------------------------------*/

/*-------------------------------------------
    14. Page Banner Start
-------------------------------------------*/
.page-banner-area {
    background-color: var(--bg-secondary);
    text-align: center;
    padding-top: 218px;
    padding-bottom: 135px;
    min-height: 535px;
}
.page-banner-bg-floating-img {
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
}
.breadcrumb-item+.breadcrumb-item, .breadcrumb-item a {
    color: var(--white-color);
    line-height: 28px;
    font-size: 18px;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
    /* content: var(--bs-breadcrumb-divider, ">"); */
}
.breadcrumb {
    margin-bottom: 0;
}

.inner-page-details {
    margin-top: -90px;
}
.inner-page-content p {
    line-height: 30px;
    margin-bottom: 42px;
}
/*-------------------------------------------
    14. Page Banner End
-------------------------------------------*/

/*-------------------------------------------
    15. Contact Page Start
-------------------------------------------*/
.inner-page-content.contact-us-page-content {
    padding: 50px;
}

/* Contact Page right part */
.contact-page-right-part {
    padding-left: 112px;
}
.contact-info-wrap {
    padding-top: 40px;
}
.contact-info-item {
    margin-top: 38px;
}
.contact-info-icon {
    background-color: rgba(59, 125, 254, 0.12);
    height: 47px;
    width: 47px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
}
.contact-info-item address {
    width: 64%;
}
/* Contact Page right part */
/*-------------------------------------------
    15. Contact Page End
-------------------------------------------*/

/*-------------------------------------------
    16. Payment Method CSS Start
-------------------------------------------*/
.payment-method-item {
    background-color: var(--bg-primary);
    padding: 25px;
}
.payment-method-item-title {
    border-radius: 60px;
    padding: 8px 20px;
    min-height: 30px;
}
.payment-method-img {
    margin-top: 30px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment-method-item .theme-btn-outline {
    padding: 16px 40px!important;
}

/* Payment Subscription toggle Start */
.payment-subscription-switch .form-check-input {
    width: 3.75em;
    height: 1.95em;
}
/* Payment Subscription toggle End */

/*-------------------------------------------
    16. Payment Method CSS End
-------------------------------------------*/

/*-------------------------------------------
    17. Sign Up Page Start
-------------------------------------------*/
.footer-floating-bg-img {
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
}
.sign-up-page {
    overflow-x: hidden;
}
.sign-up-left-content {
    background-color: var(--primary-color);
    padding: 30px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.password-requirement-list li {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 15px;
}
.password-requirement-list li::before {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, #2E42F7 11.99%, #FF9243 90.21%);
    height: 5px;
    width: 5px;
    border-radius: 50%;
    left: -14px;
    top: 10px;
}
.sign-up-page {
    min-height: 100vh;
    height: 100%;
    align-items: center;
    display: flex;
}
.sign-up-right-content {
    padding: 40px;
    width: 535px;
    margin: 30px auto;
}
.sign-up-right-content form
.sign-up-left-content p {
    color: var(--border-color);
}

.password-requirement-list-box {
    background: linear-gradient(90deg, #2E42F7 11.99%, #FF9243 90.21%);
    padding: 1px;
}
.sign-up-right-content .form-control {
    background-color: #F9FBFC;
    font-weight: 500;
    border: 1px solid transparent;
}

.sign-up-right-content .form-control, .sign-up-right-content .theme-btn {
    height: 60px;
}

/*Show/Hide Password*/
.sign-up-right-content .pass-icon {
    font-size: 13px;
    float: right;
    top: 22px;
    position: absolute;
    right: 29px;
    font-size: 17px;
}

/*-------------------------------------------
    17. Sign Up Page End
-------------------------------------------*/
