@charset "utf-8";
/* CSS Document */
/*	General Styling
----------------------------------------------------------------------*/
@import url("bootstrap.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    /* primary color */
    --primary-100: #F1F4F7;
    --primary-200: #E0E7ED;
    --primary-300: #C1CEDB;
    --primary-400: #98ADC4;
    --primary-500: #6786A7;
    --primary-600: #325C88;
    --primary-700: #163B64;
    --primary-800: #072A51;
    --primary-900: #002147;
    --primary-1000: #00142D;
    /* secondary color */
    --secondary-100: #FEF7F0;
    --secondary-200: #FEEDDD;
    --secondary-300: #FCD9B8;
    --secondary-400: #FBC28F;
    --secondary-500: #F9AC66;
    --secondary-600: #F89A44;
    --secondary-700: #DC8639;
    --secondary-800: #BB702D;
    --secondary-900: #98571F;
    --secondary-1000: #784113;
    /* neutral color */
    --neutral-100: #ffffff;
    --neutral-200: #fbfbfb;
    --neutral-300: #f6f6f6;
    --neutral-400: #e8e9ea;
    --neutral-500: #d6d6d6;
    --neutral-600: #b8b8b7;
    --neutral-700: #969695;
    --neutral-800: #666664;
    --neutral-900: #484846;
    --neutral-1000: #1a1a18;
    /* danger color */
    --danger-100: #fcebec;
    --danger-200: #f4c0c5;
    --danger-300: #efa2a9;
    --danger-400: #e87882;
    --danger-500: #e35d6a;
    --danger-600: #dc3545;
    --danger-700: #c8303f;
    --danger-800: #9c2631;
    --danger-900: #791d26;
    --danger-1000: #5c161d;
    /* success color */
    --success-100: #e7f8f2;
    --success-200: #b5e9d8;
    --success-300: #91dfc5;
    --success-400: #5fd0ab;
    --success-500: #40c79a;
    --success-600: #10b981;
    --success-700: #0fa875;
    --success-800: #0b835c;
    --success-900: #096647;
    --success-1000: #074e36;
    /* warning color */
    --warning-100: #fff9e6;
    --warning-200: #ffecb2;
    --warning-300: #ffe28d;
    --warning-400: #ffd559;
    --warning-500: #ffcd39;
    --warning-600: #ffc107;
    --warning-700: #e8b006;
    --warning-800: #b58905;
    --warning-900: #8c6a04;
    --warning-1000: #6b5103;
    /* gray color */
    --gray-100: #f9fafb;
    --gray-200: #f3f4f6;
    --gray-300: #e5e7eb;
    --gray-400: #d1d5db;
    --gray-500: #9ca3af;
    --gray-600: #6b7280;
    --gray-700: #4b5563;
    --gray-800: #374151;
    --gray-900: #1f2937;
    --gray-1000: #111827;
    /* info color */
    --info-100: #eff6ff;
    --info-200: #dbeafe;
    --info-300: #bfdbfe;
    --info-400: #93c5fd;
    --info-500: #60a5fa;
    --info-600: #3b82f6;
    --info-700: #2563eb;
    --info-800: #1d4ed8;
    --info-900: #1e40af;
    --info-1000: #111827;
    /* indigo color */
    --indigo-100: #efe6fd;
    --indigo-200: #e0cffc;
    --indigo-300: #c29ffa;
    --indigo-400: #a370f7;
    --indigo-500: #8540f5;
    --indigo-600: #6610f2;
    --indigo-700: #520dc2;
    --indigo-800: #3d0a91;
    --indigo-900: #1e40af;
    --indigo-1000: #140330;
    --bg-white: #ffffff;
    --transition: 0.18s cubic-bezier(.4, 0, .2, 1);
    --shadow-sm: 0 1px 4px rgba(0, 60, 100, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 60, 100, 0.09);
    --shadow-lg: 0 8px 40px rgba(0, 60, 100, 0.13);
    --ink: var(--primary-900);
    --text-white: #ffffff;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: var(--ink);
    margin: 0;
}

ul {
    list-style-type: none;
}

.clear {
    clear: both;
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 0;
}

.extra-wrap {
    overflow: hidden;
}

.block {
    display: block;
}

.in-block {
    display: inline-block;
}

.p-rel {
    position: relative;
}

.wrapper {
    width: 100%;
    overflow: hidden;
}

.super-container {
    margin: 0;
    padding: 0px;
    position: relative;
}

.container {
    position: relative;
}

img {
    vertical-align: middle;
    height: auto;
    max-width: 100%;
    border: 0;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.font11 {
    font-size: 11px !important;
}

.font12 {
    font-size: 12px !important;
}

.font13 {
    font-size: 13px !important;
}

.font14 {
    font-size: 14px !important;
}

.font15 {
    font-size: 15px !important;
}

.font17 {
    font-size: 17px !important;
}

.font18 {
    font-size: 18px !important;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

::placeholder {
    color: rgba(24, 24, 24, 0.10);
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(24, 24, 24, 0.10);
}

section {
    padding: 90px 0;
}

/* bullet list
--------------------------------------------------------------*/
.bullet-list {
    padding-left: 1.5rem;
}

.bullet-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 0.25rem;
}

.bullet-list li:before {
    content: "\F287";
    font-family: bootstrap-icons;
    position: absolute;
    left: 0px;
    top: 7px;
    font-size: 6px;
}

/* scan
--------------------------------------------------------------*/
.surface .scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, transparent, rgba(224, 122, 8, .10), transparent);
    filter: blur(4px);
    animation: sweep 9s linear infinite;
}

@keyframes sweep {
    0% {
        transform: translateY(-160px)
    }

    100% {
        transform: translateY(120vh)
    }
}

/* Global Header
--------------------------------------------------------------*/
#header {
    color: var(--ink);
    padding: 1.5rem 0;
    transition: padding 0.3s;
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: var(--bg-white);
}

#header.scrolled {
    padding: 1rem 0;
}

#header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .logo img {
    height: 40px;
}

.navmenu .login-btn a {
    border: 1px solid var(--ink);
    border-radius: 6px;
    padding: 8px 16px;
    color: var(--ink);
    display: inline-block;
}

.navmenu .login-btn a:hover,
.navmenu .login-btn a:focus {
    background-color: var(--ink);
    color: var(--text-white);
}

.navmenu .login-btn a:hover::after {
    content: none;
}

.navmenu .pricing-btn a {
    border-radius: 6px;
    padding: 8px 16px;
    color: var(--text-white);
    display: inline-block;
    background-color: var(--secondary-600);
}

.navmenu .pricing-btn a:hover,
.navmenu .pricing-btn a:focus {
    background-color: var(--secondary-700);
    color: var(--text-white);
}

.navmenu .pricing-btn a:hover::after {
    content: none;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        column-gap: 24px;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a {
        color: var(--ink);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        line-height: normal;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--primary-900);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--bg-white);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
        position: relative;
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }

    .navmenu>ul>li>a::after {
        content: "";
        position: absolute;
        left: 0;
        right: 100%;
        bottom: -5px;
        height: 2px;
        background: var(--secondary-500);
        transition: right .2s;
    }

    .navmenu>ul>li>a:hover::after {
        right: 0;
    }

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu a.active:before {
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
        margin-top: 8px;
        display: inline-block;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 16px;
        margin: 0;
        border-radius: 6px;
        background-color: var(--bg-white);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 0px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb,
                var(--accent-color),
                transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.9);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }

    #header .logo img {
        height: 33px;
    }
}


/* #hero
--------------------------------------------------------------*/
#hero {
    background: linear-gradient(160deg, var(--primary-1000) 0%, var(--primary-900) 75%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

#hero .surface {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

#hero .surface .grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(224, 122, 8, .10) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(130% 100% at 15% 10%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(130% 100% at 15% 10%, #000 30%, transparent 80%);
}

#hero .surface .cell {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 5px;
    background: radial-gradient(circle, rgba(224, 122, 8, .5), transparent 70%);
    opacity: 0;
    animation: glow 6s ease-in-out infinite;
}

#hero .surface .c1 {
    left: 48px;
    top: 96px;
    animation-delay: 0s;
}

#hero .surface .c2 {
    left: 192px;
    top: 48px;
    animation-delay: 1.4s;
}

#hero .surface .c3 {
    left: 96px;
    top: 240px;
    animation-delay: 2.8s;
}

#hero .surface .c4 {
    left: 288px;
    top: 192px;
    animation-delay: 4.1s;
}

@keyframes glow {

    0%,
    100% {
        opacity: 0;
    }

    12%,
    24% {
        opacity: 1;
    }

    42% {
        opacity: 0;
    }
}

#hero .section-head {
    text-align: left;
}

#hero .section-head h1 {
    color: var(--text-white);
}

#hero .ghost-btn {
    color: var(--text-white);
}

#hero .ghost-btn:hover {
    background-color: rgba(255, 255, 255, .08);
    border: 1px solid var(--primary-400);
}


/* .section-head
--------------------------------------------------------------*/
.section-head {
    text-align: center;
    position: relative;
    margin-bottom: 32px;
}

.section-head .eyebrow {
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--secondary-600);
    position: relative;
    margin-bottom: 10px;
}

.section-head .eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--secondary-600);
}

.section-head h1 {
    font-size: clamp(34px, 4.6vw, 56px);
    font-weight: 800;
    line-height: normal;
    margin-bottom: 15px;
}

.section-head .lead-text {
    font-size: 18px;
    font-weight: 300;
    color: var(--primary-200);
}

.section-head h2 {
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 800;
    line-height: normal;
    margin-bottom: 10px;
}

/* buttons
--------------------------------------------------------------*/
.primary-btn {
    background-color: var(--secondary-600);
    color: var(--text-white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    line-height: normal;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.primary-btn:hover,
.primary-btn:active,
.primary-btn:first-child:active,
.primary-btn:focus-visible {
    background-color: var(--secondary-700);
    box-shadow: 0 10px 24px -10px rgba(224, 122, 8, .7);
    color: var(--text-white);
}

.ghost-btn {
    background-color: transparent;
    color: var(--ink);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    line-height: normal;
    border: 1px solid var(--primary-200);
}

.ghost-btn:hover {
    background-color: var(--primary-100);
    border-color: var(--primary-500);
}

.link-btn-secondary {
    color: var(--secondary-600);
}

.ghost-btn-dark {
    background-color: transparent;
    color: var(--text-white);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    line-height: normal;
    border: 1px solid rgba(255, 255, 255, .16);
}

.ghost-btn-dark:hover {
    background-color: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .32);
}




/* .cta-row
--------------------------------------------------------------*/
.cta-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

/* #howitworks
--------------------------------------------------------------*/
#hiwSlider .carousel-indicators {
    position: relative;
    margin: 0 0 30px 0;
    column-gap: 100px;
}

#hiwSlider .carousel-indicators [data-bs-target] {
    opacity: 1;
    width: auto;
    height: auto;
    text-indent: inherit;
    background-color: transparent;
    margin: 0;
    border-top: 0;
    border-bottom: 3px solid transparent;
    padding: 13px 25px;
    color: var(--primary-500);
    font-size: 18px;
}

#hiwSlider .carousel-indicators .active {
    border-bottom-color: var(--primary-900);
    color: var(--primary-900);
}

#hiwSlider .stage {
    padding: 40px;
    position: relative;
}

/* #hiwSlider .stage::before {
    content: "";
    background-color: var(--secondary-100);
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;   
    border-radius: 6px;
} */
#hiwSlider .video-frame {
    position: relative;
}

#hiwSlider .video-frame:before {
    content: "";
    position: absolute;
    inset: 0;
    outline: 40px solid var(--secondary-100);
}

#hiwSlider .video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #fff;
}

#hiwSlider .stage .desc-card {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 340px;
    background: #fff;
    border: 2px solid var(--secondary-500);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 30px 60px -30px rgba(224, 134, 57, .5);
    z-index: 5;
}

#hiwSlider .stage .desc-card h4 {
    font-size: 22px;
    font-weight: 700;
}


/* #steps
--------------------------------------------------------------*/
#steps {
    background-color: var(--primary-900);
}

#steps .section-head {
    color: var(--text-white);
}

#steps .steps-grid {
    margin-bottom: 50px;
}

.steps-grid .steps-card {
    padding: 24px;
    background-color: var(--primary-800);
    border: 1px solid var(--primary-700);
    border-radius: 12px;
    height: 100%;
    transition: transform .18s, border-color .18s;
}

.steps-grid .steps-card:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-600);
}

.steps-grid .steps-card .step-num {
    color: color-mix(in srgb, var(--primary-300) 50%, transparent);
    font-size: 50px;
    line-height: normal;
    font-weight: 800;
    margin-bottom: 10px;
}

.steps-grid .steps-card h5 {
    font-size: 18px;
    color: var(--secondary-600);
    font-weight: 600;
}

.steps-grid .steps-card p {
    margin-bottom: 0;
    color: var(--primary-200);
}


/* #services
--------------------------------------------------------------
#services .services-grid {
    margin-bottom: 50px;
}
#services .service-card {
    border: 1px solid var(--gray-400);
    background-color: var(--bg-white);
    padding: 34px;
    border-radius: 16px;
    height: 100%;
}
#services .service-card .card-icon {
    width: 52px;
    height: 52px;
    background-color: var(--primary-900);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--secondary-600);
    margin-bottom: 15px;
}
#services .service-card .card-tag {
    font-size: 15px;
    color: var(--secondary-600);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}
#services .service-card .card-title {
    font-weight: 700;
    margin-bottom: 16px;
}
#services .service-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}
*/

/* #advantages
--------------------------------------------------------------*/
#advantages {
    background-color: var(--primary-100);
}

#advantages .adv-grid {
    margin-bottom: 50px;
}

#advantages .adv-grid .adv-card {
    background-color: var(--text-white);
    border: 1px solid var(--gray-400);
    padding: 25px;
    border-radius: 12px;
    height: 100%;
}

#advantages .adv-card .card-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--secondary-200);
    background-color: var(--secondary-100);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--secondary-600);
    margin-bottom: 15px;
}

#advantages .adv-card .card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

#advantages .adv-card p {
    margin-bottom: 0;
    color: var(--gray-600);
}



/* #pricing
--------------------------------------------------------------*/
#pricing .plans-grid .plan-card {
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--gray-400);
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
}

#pricing .plans-grid .plan-card.popular {
    border-color: var(--info-900);
    border-width: 2px;
    box-shadow: 0 0 30px 0px rgba(0, 0, 0, .2);
}

#pricing .plan-card .plan-name {
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray-600);
}

#pricing .plan-card .plan-price {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: baseline;
    column-gap: 6px;
}

#pricing .plan-card .subtext {
    color: var(--gray-600);
    font-size: 12px;
    margin-bottom: 15px;
}

#pricing .plans-grid .pdesc {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 0;
}

#pricing .plan-card .bi {
    font-size: 44px;
}

#pricing .plan-card .onwards {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

#pricing .plan-card .plan-price svg {
    width: 19px;
}

#pricing .plans-grid .popular .badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-600);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 99px;
}

#pricing .plan-card ul {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 0;
}

#pricing .plan-card li {
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    column-gap: 10px;
}

#pricing .plan-card li svg {
    flex: none;
    color: var(--success-500);
    margin-top: 4px;
}

#pricing .plan-card .cta-row {
    margin-top: auto;
}


/* #faqss
--------------------------------------------------------------*/
#faqs {
    background-color: var(--gray-100);
}

#faqs .accordion {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

#faqs .accordion .accordion-item {
    border-radius: 12px;
    border: 1px solid var(--gray-400) !important;
    overflow: hidden;
}

#faqs .accordion .accordion-button {
    background-color: transparent;
    box-shadow: none;
    font-weight: 600;
    color: var(--ink);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

#faqs .accordion .accordion-body {
    font-size: 15px;
}

#faqs .accordion .accordion-button::after {
    display: none;
}

#faqs .accordion .accordion-button .ic {
    content: "\F4FE";
    font-family: bootstrap-icons;
    width: 24px;
    height: 24px;
    display: grid;
    border: 1px solid var(--primary-900);
    place-items: center;
    border-radius: 6px;
    transition: transform .2s, background-color .2s, color .2s;
    flex-shrink: 0;
}

#faqs .accordion .accordion-button:not(.collapsed) .ic {
    background-color: var(--primary-900);
    color: var(--text-white);
    transform: rotate(45deg);
}


/* #callToAction
--------------------------------------------------------------*/
#callToAction {
    background: linear-gradient(160deg, var(--primary-1000) 0%, var(--primary-900) 75%);
    position: relative;
    color: var(--text-white);
}

#callToAction:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(224, 122, 8, .10) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(130% 100% at 15% 10%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(130% 100% at 15% 10%, #000 30%, transparent 80%);
}

#callToAction .section-head p {
    color: var(--primary-300);
}

/* #footer
--------------------------------------------------------------*/
#footer {
    background-color: var(--primary-1000);
    padding-bottom: 0;
    /* padding-top: 90px; */
}

#footer .footer-logo img {
    width: 220px;
}

#footer .contact-info {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    height: 100%;
    row-gap: 28px;
}

#footer .contact-info p {
    color: var(--primary-300);
    margin-bottom: 0;
    font-size: 15px;
}

#footer .help-cards-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#footer .help-cards-row .help-card {
    padding: 20px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

#footer .help-cards-row .card-title {
    color: var(--secondary-600);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}

#footer .help-cards-row .card-cont a {
    font-size: 18px;
    color: var(--text-white);
    line-height: normal;
    font-weight: 600;
}

#footer .form-card {
    padding: 20px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    row-gap: 22px;
}

#footer .form-card h5 {
    color: var(--secondary-600);
    font-weight: 600;
    margin-bottom: 0;
}

/* #footer .contact-form {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
} */
#footer .footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 30px 0;
    color: var(--primary-300);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bar .links {
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.footer-bar .links a {
    color: var(--primary-300);
    text-decoration: none;
}

.footer-bar .links a:hover {
    color: var(--text-white);
}

/* Forms
--------------------------------------------------------------*/
.form {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 16px;
    font-size: 14px;
}

.form .form-grid.onefr {
    grid-template-columns: 1fr;
}

.form .form-floating .form-control,
.form .form-floating .form-select {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--neutral-200);
}

.form .form-floating label {
    color: var(--neutral-500);
}

.form .form-floating textarea {
    min-height: 88px;
    resize: vertical;
}

.form-floating>textarea:focus~label::after,
.form-floating>textarea:not(:placeholder-shown)~label::after {
    background-color: transparent;
}

.form .hint {
    font-size: 12px;
    color: var(--neutral-500);
    margin-top: 2px;
}

.form-select option {
    color: #333333;
}

.form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}




/* ANIMATIONS
--------------------------------------------------------------*/
/* hero load: staggered fade-up of hero copy on page load */
#hero .section-head>*,
#hero .cta-row {
    opacity: 0;
    transform: translateY(20px);
    animation: heroUp .7s cubic-bezier(.22, .61, .36, 1) forwards
}

#hero .section-head>*:nth-child(1) {
    animation-delay: .15s
}

#hero .section-head>*:nth-child(2) {
    animation-delay: .28s
}

#hero .section-head>*:nth-child(3) {
    animation-delay: .41s
}

#hero .cta-row {
    animation-delay: .67s;
}

@keyframes heroUp {
    to {
        opacity: 1;
        transform: none
    }
}

@keyframes heroLeft {
    to {
        opacity: 1;
        transform: none
    }
}

#hero .snippet-img {
    opacity: 0;
    transform: translateX(50px);
    animation: heroLeft 1.7s cubic-bezier(.22, .61, .36, 1) forwards
}

/* scroll reveal: elements start hidden, fade+rise when .in is added */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.22, .61, .36, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* stagger: children of a revealed grid cascade */
.stagger>* {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s cubic-bezier(.22, .61, .36, 1)
}

.stagger.in>* {
    opacity: 1;
    transform: none
}

.stagger.in>*:nth-child(1) {
    transition-delay: .00s
}

.stagger.in>*:nth-child(2) {
    transition-delay: .08s
}

.stagger.in>*:nth-child(3) {
    transition-delay: .16s
}

.stagger.in>*:nth-child(4) {
    transition-delay: .24s
}

.stagger.in>*:nth-child(5) {
    transition-delay: .32s
}

.stagger.in>*:nth-child(6) {
    transition-delay: .40s
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal,
    .stagger>* {
        opacity: 1;
        transform: none;
        transition: none
    }

    .hero-copy>* {
        opacity: 1;
        transform: none;
        animation: none
    }

    .reveal .eyebrow::before,
    .stagger.in .eyebrow::before {
        animation: none;
        width: 22px
    }

    .btn:hover {
        transform: none
    }

    a.arrow:hover,
    .block a:hover {
        gap: 6px
    }

    .qa .ans {
        transition: none
    }
}





@media (max-width: 768px) {}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

    .steps-grid .steps-card {
        padding: 16px;
    }

    /* #services .service-card {padding: 20px;} */

    .navmenu .pricing-btn a {
        margin-bottom: 12px;
    }

    #footer .form-grid {
        grid-template-columns: 1fr;
    }

    #hiwSlider .stage {
        padding: 20px;
    }

    #hiwSlider .carousel-indicators {
        justify-content: space-between;
        column-gap: normal;
    }

    #hiwSlider .carousel-indicators [data-bs-target] {
        font-size: 15px;
    }

    #hiwSlider .stage::before {
        width: 100%;
        height: 80%;
    }

    #hiwSlider .stage .desc-card {
        position: relative;
        top: auto;
        left: 0;
        transform: none;
        width: auto;
        margin: 33px 0;
        padding: 16px;
        font-size: 14px;
    }

    #hiwSlider .stage .desc-card h4 {
        font-size: 16px;
    }

}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (min-width: 576px) and (max-width: 767.98px) {

    .navmenu .pricing-btn a {
        margin-bottom: 12px;
    }

    #footer .help-cards-row {
        flex-direction: row;
    }

    #footer .help-cards-row .help-card {
        width: 100%;
        padding: 16px;
    }

    #hiwSlider .stage {
        padding: 20px;
    }

    #hiwSlider .carousel-indicators {
        justify-content: center;
        column-gap: normal;
    }

    #hiwSlider .carousel-indicators [data-bs-target] {
        font-size: 15px;
    }

    #hiwSlider .stage::before {
        width: 100%;
        height: 80%;
    }

    #hiwSlider .stage .desc-card {
        position: relative;
        top: auto;
        left: 0;
        transform: none;
        width: auto;
        margin: 33px 0;
        padding: 16px;
        font-size: 14px;
    }

    #hiwSlider .stage .desc-card h4 {
        font-size: 16px;
    }

}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {

    .navmenu .pricing-btn a {
        margin-bottom: 12px;
    }

    #pricing .plans-grid .plan-card {
        padding: 15px;
    }

    #pricing .plan-card .plan-price {
        font-size: 32px;
    }

    #pricing .plan-card .plan-price svg {
        width: 13px;
    }

    #pricing .plan-card .onwards {
        font-size: 10px;
    }

    #footer .help-cards-row {
        flex-direction: row;
    }

    #footer .help-cards-row .help-card {
        width: 100%;
    }

    #hiwSlider .stage {
        padding: 20px;
    }

    #hiwSlider .stage .desc-card {
        width: 200px;
        font-size: 12px;
        padding: 12px;
    }

    #hiwSlider .stage .desc-card h4 {
        font-size: 14px;
    }


}



/* `xl` applies to large devices (desktops, less than 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {


    .navmenu .pricing-btn a {
        margin-bottom: 12px;
    }

    #hiwSlider .stage .desc-card {
        width: 275px;
        font-size: 14px;
        padding: 16px;
    }

    #hiwSlider .stage .desc-card h4 {
        font-size: 18px;
    }

}

/* `xxl` applies to x-large devices (large desktops, less than 1400px) / 15" Notebook (1366x768) */
@media (min-width: 1200px) and (max-width: 1399.98px) {}

/* 19" Desktop (1400x900) */
@media (min-width: 1367px) and (max-width: 1440px) {}

/* 22" Desktop (1680x1050) / 20" Desktop (1600x900) */
@media (min-width: 1441px) and (max-width: 1680px) {}

/* 24" Desktop (1920x1200) / 23" Desktop (1920x1080) */
@media (min-width: 1681px) and (max-width: 1920px) {}

/* error msg
--------------------------------------------------------------*/
.error-msg {
    display: none;
    color: var(--danger-400);
    font-size: 12.5px;
    margin-top: 2px;
    font-weight: 500;
}

.invalid .error-msg {
    display: block;
}

.form .invalid input {
    border-color: var(--danger-400) !important;
}

.invalid .hint {
    display: none;
}