/* Fonts */
:root {
    --default-font: "Nunito", sans-serif;
    --heading-font: "Nunito", sans-serif;
    --nav-font: "Inter", sans-serif;
}

:root {
    --background-color: #ffffff;
    --default-color: #3d4348;
    --heading-color: #3e5055;
    --accent-color: #00a153d1;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

:root {
    --nav-color: #313336;
    --nav-hover-color: #00a153d1;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #313336;
    --nav-dropdown-hover-color: #00a153d1;
}


.light-background {
    --background-color: #f8fbfc;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font) !important;
}


a {
    color: var(--accent-color);
    text-decoration: none !important;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 50px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

@media (max-width: 480px) {
    .header .logo img {
        max-height: 36px;
    }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
  ------------------------------*/
.index-page .header {
    --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
  ------------------------------*/
.index-page.scrolled .header {
    --background-color: #ffffff;
}


/* footer */
.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 17px;
    line-height: 1.6;
}

.footer .credits a {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color, #642B13);
    /* or any brand color */
    text-decoration: none;
    margin: 0 6px;
}

.footer .credits a:hover {
    text-decoration: underline;
}



/* footer */
/*.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 17px;
}
.footer .credits a{
    margin-top: 6px;
    font-size: 18px;
    font-weight: 600;
*/

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
    animation-delay: -0.5s;
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}


/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
  # Global Page Titles & Breadcrumbs
  --------------------------------------------------------------*/
.page-title {
    --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
}

.page-title h1 {
    font-size: 24px;
    font-weight: 700;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 110px 0 40px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .hero-bg img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .hero-bg::before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 15%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero .hero-img {
        max-width: 600px;
    }
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
}

.hero .btn-watch-video i {
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}


/* custom-css-start-here */
.login_web_btn {
    margin-left: 10px;
}



/*========================== modal-css ==========================*/
.modal_close_btn {
    display: flex;
    justify-content: end;
}

.modal_close_btn button {
    width: 30px;
    height: 30px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #181717;
}

.modal_close_btn button i {
    font-size: 20px;
}

.modal_overflow {
    overflow: hidden;
}

.modal_content {
    width: 70%;
    margin-left: 30%;
}

.modal_content h4 {
    font-size: 22px;
    color: #000;
    margin-bottom: 0px;
    text-transform: capitalize;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.modal_content h4 span {
    color: #00a153;
}

.customerDtl_input {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.input_length {
    width: 49%;
}

.email_length {
    width: 60%;
}

.category_length {
    width: 38%;
}

.input_grp label {
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 500;
    padding-bottom: 3px;
    text-transform: capitalize;
}

.input_grp label i {
    color: #000;
}

.input_grp input,
.input_grp select {
    width: 100%;
    height: 40px;
    border: 1px solid #00a1534d;
    outline: none;
    padding-left: 10px;
    font-size: 15px;
    border-radius: 5px;
}

.input_grp p {
    font-size: 13px;
    color: #004565;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 0px;
    padding-top: 2px;
}

.otp_box {
    width: 78%;
    display: block;
}

.otp_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
}

.otp_flex input {
    width: 14%;
    height: 50px;
    text-align: center;
    font-size: 17px;
    color: #000;
    background-color: #cacaca80;
    border: none;
    outline: none;
    border-radius: 6px;
}

.otp_flex input:focus {
    border: 1px solid #00a153d1;
    box-shadow: 0px 0px 7px 0px #00a153d1;
}

.otp_input {
    padding-top: 10px;
}

.otp_input p {
    font-size: 16px !important;
    color: #1e1e1e !important;
    font-weight: 500 !important;
    padding-bottom: 3px !important;
    margin-bottom: 0px !important;
    text-align: left !important;
}

.registration_button_area {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 20px;
    margin-bottom: 10px;
}

.registration_button_area .next_btn {
    width: 110px;
    height: 40px;
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: #00a153;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.registration_button_area .modl_regi_btn {
    width: 140px;
    height: 40px;
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: #00a153;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
    text-transform: capitalize;
}

.regi_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 28%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

/* login-modal-css */
.login_content h2 {
    font-size: 22px;
    color: #00a153;
    font-weight: 600 !important;
    margin-bottom: 0px;
    text-transform: capitalize;
    text-align: center;
}

.login_content p {
    font-size: 17px;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: capitalize;
    text-align: center;
    padding-top: 8px;
}

.login_input {
    padding-top: 10px;
}

.login_input input {
    padding-right: 50px;
}

.forgot_pass {
    display: flex;
    align-items: center;
    justify-content: end;
}

.login_input span {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #004565;
    cursor: pointer;
    margin-top: 3px;
}

.login_fields button {
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    background-color: #00a153;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    border-radius: 5px;
    margin-top: 20px;
}


.login_fields button i {
    padding-right: 5px;
}

.login_input .pass_relative {
    position: relative;
}

.pass_relative span {
    color: #004565;
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.have_ac h5 {
    font-size: 14px;
    color: #1e1e1e;
    font-weight: 500 !important;
    margin-bottom: 0px;
    text-align: center;
    margin-bottom: 10px;
}

.have_ac h5 span {
    font-size: 15px;
    color: #004565;
    font-weight: 600 !important;
    margin-bottom: 0px;
    cursor: pointer;
}

.pass_relative {
    position: relative;
}

.pass_relative span {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.resend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding-top: 4px;
}

.resend h4 {
    font-size: 14px;
    color: #1e1e1e;
    margin-bottom: 0px;
    text-transform: capitalize;
}

.resend h4 span {
    font-size: 14px;
    color: #004565;
    font-weight: 500;
}

.resend a {
    text-decoration: none;
}

.resend a span {
    font-size: 16px;
    color: #00a153;
    font-weight: 500;
}

/*------------- login-page-responsive-start -----------*/


@media (max-width:991px) {

    .regi_img {
        display: none;
    }

    .modal_content {
        width: 100%;
        margin-left: 0%;
    }

    .otp_box {
        width: 90%;
    }

    .input_grp label {
        font-size: 15px;
    }

}


@media (max-width:400px) {

    .customerDtl_input {
        flex-wrap: wrap;
        padding-top: 0px;
    }

    .input_length {
        width: 100%;
    }

    .email_length {
        width: 100%;
        padding-top: 10px;
    }

    .category_length {
        width: 100%;
        padding-top: 10px;
    }

    .otp_box {
        width: 100%;
    }

    .otp_flex {
        width: 100%;
    }

    .input_length {
        padding-top: 10px;
    }

}