/* 1. Use a more-intuitive box-sizing model */
body {
    /* overflow-x: hidden; */
}

html {
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
* {
    margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

body {
    /* 4. Add accessible line-height */
    line-height: 1.5;
    /* 5. Improve text rendering */
    -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
    font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
    isolation: isolate;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
}

/* custom css */
.heading-1 {
    color: #2A2A2A;
    text-align: center;
    font-family: Inter;
    font-size: 65px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.heading-2 {
    color: #2A2A2A;
    /* text-align: center; */
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.heading-2-1 {
    color: #FFF;
    font-family: Inter;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}

.heading-3 {
    color: #2A2A2A;
    font-family: "Khula", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.heading-4 {
    color: #2A2A2A;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 26.4px;
}

.heading-2-2 {
    color: #2A2A2A;
    font-family: Inter;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.heading-5 {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 21.6px;
}

.white {
    color: white;
}

.black {
    color: #333;
}

p {
    color: #2A2A2A;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.s-para {
    color: #6D6D6D;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.g-para {
    color: #6D6D6D;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.anchar {
    color: #1E1B4B;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.custom-btn {
    display: inline-flex;
    padding: 18px 22px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    border-radius: 10px;
}

.custom-btn.orange-btn {
    background: #1E1B4B;
    color: #FFF;
}

.custom-btn.white-btn {
    background: #FFF;
    color: #1E1B4B;
}

.tags {
    color: #1E1B4B;
    /* text-align: center; */
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 21.6px;
    margin: 0 0 1rem;
}

/* custom css */

/* hero section */
.hero-section {
    /* background-image: url('../images/hero-sec-bg-cloud.png'); */
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: right;
    height: 800px;
    width: 100%;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 7rem;
    background: linear-gradient(180deg, rgb(30 27 75 / 0%) 0%, rgb(49 46 129 / 0%) 100%), url(../images/hero-bg.png);
}

/* hero section */

/* progress */
.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0px 8px;
    font-family: Inter;
    position: relative;
    z-index: 0;
}

.progress-label {
    color: white;
    font-weight: 600;
}

.progress-percentage {
    color: white;
    font-weight: 600;
    position: absolute;
}

.progress {
    height: 12px;
    background-color: #ffffff14;
    width: 100% !important;
}

.progress-bar {
    background-color: white;
    border-radius: 22px;
}

/* progress */

/* hero css */
header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 3;
    transition: all ease-in-out .7s;
}

header nav.navbar {
    border-radius: 10px;
    background: #FFF;
}

.hero-section .custom-content {
    text-align: center;
}

header .nav-link {
    color: #2A2A2A;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21.6px;
    margin: 0 10px;
}

header .nav-link.active {
    font-weight: 600;
    color: #1E1B4B !important;
    background: #ffffff;
    border-radius: 6px;
}

.hero-section:before {
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    opacity: 1;
    /* background-color: #000; */
    content: "";
    z-index: 0;
    width: 100%;
    height: 200px;
    background-image: url(../images/clouds.png);
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center;
    -webkit-animation: moveclouds 80s linear infinite;
    -moz-animation: moveclouds 80s linear infinite;
    -o-animation: moveclouds 80s linear infinite;
    display: none;
}

@-webkit-keyframes moveclouds {
    0% {
        background-position-x: 1200px;
    }

    100% {
        background-position-x: 0px;
    }
}

@-moz-keyframes moveclouds {
    0% {
        background-position-x: 1200px;
    }

    100% {
        background-position-x: 0px;
    }
}

@-o-keyframes moveclouds {
    0% {
        background-position-x: 1200px;
    }

    100% {
        background-position-x: 0px;
    }
}

.we-offer-sec {
    position: relative;
    z-index: 0;
}

.we-offer-icon {
    position: absolute;
    bottom: -30px;
    right: 0;
    max-width: 160px;
    /* animation: 2s linear infinite bf-animate; */
}

.py {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


.main-heading.centered p {
    width: 52%;
    margin: auto;
}

.product-card {
    text-align: start;
    border-radius: 8px;
    border: 1px solid #1E1B4B;
    background: #FFF;
    padding: 30px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all ease .5s;
}

.product-card * {
    transition: all ease .5s;
}

.product-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 1rem;
}

.list-parent {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 22px 0 0;
}

.list-parent .list-child figure {
    display: flex;
    align-items: center;
    gap: 20px;
}

.list-parent .list-child figure .s-para {
    margin: 0;
}

.we-are-availible {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #EAEAEA;
    margin-top: 0rem;
    padding-top: 20px;
}

.know-about-us .custom-content {
    padding-left: 1.5rem;
}

.list-parent .list-child figure .heading-3 {
    margin: 0;
}

figure {
    margin: 0;
}

figure.card-wheel {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 135px;
    height: 145px;
    /* animation: 1s linear infinite bf-animate; */
}

.brand-list {
    position: relative;
    z-index: 0;
    border-top: 1px solid #EAEAEA;
    height: 210px;
    display: flex;
    align-items: center;
}

p.for-booking {
    color: #2A2A2A !important;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 10px 0 0;
}

p.for-booking a {
    color: #1E1B4B;
    text-decoration: none;
    margin: 0;
}

.quote-card {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
    padding: 25px;
    width: 420px;
    margin: -5.5rem -7rem 0rem;
    z-index: 0;
    position: relative;
}

.quote-card blockquote {
    position: relative;
    z-index: 0;
    padding: 0px 0px 0 20px;
    color: #6D6D6D;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}

.quote-card blockquote:before {
    height: 100%;
    border-left: 3px solid #1E1B4B;
    content: "";
    left: 0px;
    position: absolute;
}

.quote-card p {
    margin: 0;
    color: #2A2A2A;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 21.6px;
}

.brands-card-slider figure {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* hero css */

/* our experience */
.our-experience {
    position: relative;
    z-index: 0;
}

.our-experience:before {
    position: absolute;
    content: "";
    left: 0;
    width: 50%;
    top: 0;
    bottom: 0;
    background-image: url('../images/our-experience-bg-1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    background-attachment: fixed;
    background: #1E1B4B;
}

.our-experience:after {
    position: absolute;
    content: "";
    right: 0;
    width: 50%;
    top: 0;
    bottom: 0;
    background-image: url('../images/our-experience-bg-2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    background-attachment: fixed;
}

.side-cta-card {
    border-radius: 20px 0px 0px 20px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
    padding: 45px;
    width: 480px;
    position: absolute;
    right: 0;
    bottom: -50px;
}

.our-experience .progress-bar-parent {
    padding: 0px 5rem 0px 0px;
}

.first-child {
    position: absolute;
    right: 20px;
}

.sec-child {
    right: 70px;
}

.third-child {
    right: 98px;
}

.fourth-child {
    right: 75px;
}

.py2 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.services-card .product-card-header {
    flex-direction: column;
    align-items: start;
}

.services-card {
    position: relative;
    z-index: 0;
}

.loud-speaker {
    position: absolute;
    left: 0;
    top: 120px;
    /* animation: 1s linear infinite bf-animate; */
}

.rocket-icon {
    position: absolute;
    right: 30px;
    bottom: 150px;
    animation: launch 3s infinite alternate;
}

/* cta-banner */
.cta-banner {
    background-image: url('../images/cta-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    position: relative;
    background: white;
}

.cta-banner .custom-btn-parent {
    margin-top: 2rem;
}

.cta-banner::before {
    /* opacity: 0.7; */
    /* background: #2A2A2A; */
    position: absolute;
    /* content: ""; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    /* bottom: 0; */
    /* z-index: -1; */
}

/* cta-banner */

/* our team css */
.our-team {
    position: relative;
    z-index: 0;
}

.our-team-left-layer {
    position: absolute;
    left: 0;
    bottom: 0;
    animation: 2s linear infinite bf-animate;
}

.head-emoje {
    position: absolute;
    right: 80px;
    top: 140px;
    /* animation: 2s linear infinite bf-animate; */
}

.flower-set {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* faqs */

.faqs-sec {
    background-color: white;
    position: relative;
    z-index: 0;
}

.faq-rocket {
    position: absolute;
    top: 40px;
    animation: launch 2s infinite alternate;
    max-width: 120px;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: initial;
}

.accordion-item {
    background-color: transparent;
    border: none;
    margin: 0rem 0;
    border-bottom: 1px solid #A9A3A3;
    border-radius: 0 !important;
}

.accordion-button {
    background-color: transparent;
}

.accordion-button {
    border-top: 0px solid #A9A3A3;
    border-bottom: 0px solid #A9A3A3;
    border-radius: 0 !important;
    padding: 14px 0;
    color: #101010;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 52px;
    /* 173.333% */
}

.accordion {
    border-top: 1px solid #A9A3A3;
}

button.accordion-button {
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-body {
    padding: 0;
}

.accordion-item:first-of-type {
    margin-top: 0;
}

figure.faq-frame {
    margin: 1.8rem 0rem 2rem 0rem;
}

figure.faq-frame img {
    width: 100%;
}

figure.current-layer {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 0;
    top: 10px;
    /* animation: 2s linear infinite bf-animate; */
}

figure.speaking-loud {
    position: absolute;
    bottom: -10px;
    left: 0;
    animation: 3s linear infinite bf-animate;
}

figure.mic-outer {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 400px;
    /* animation: 3s linear infinite bf-animate; */
    max-width: 140px;
    animation: 20s linear infinite slide-y;
}




/* customers feedback */
.customers-feedback {
    background-image: url('../images/customer-feed-back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}

.customer-feedback-card {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
    padding: 30px 16px 40px;
    text-align: center;
    position: relative;
    z-index: 0;
}

figure.customer-figure {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

figure.quote-icon {
    position: absolute;
    right: 16px;
    top: 30px;
}

.customer-feed-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.customer-feed-footer .anchar {
    justify-content: center;
}

.customer-feedback-card p {
    color: #6D6D6D;
    font-size: 15px;
    margin: 2rem 0 1rem;
}

.customer-feed-footer strong {
    color: #2A2A2A;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.swiper.customer-feedback-slider {
    margin: 0 0 0rem;
    padding: 12px 10px 12px;
}

.product-card-header .heading-3 {
    margin: 0;
    /* line-height: 0; */
    margin-top: 12px;
}

/* faq css */

.faq-parent.accordion {
    border: 0;
}

.faq-parent.accordion .accordion-item {
    border-radius: 10px !important;
    border: 1px solid #1E1B4B;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
    margin: 0px 0px 16px;
    padding: 20px 20px;
    background: white;
}

.faq-parent.accordion button.accordion-button {
    padding: 0;
    border: 0;
}

.faq-parent.accordion .accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

.faq-parent.accordion button.accordion-button {
    color: #2A2A2A;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.accordion-body {
    padding-top: 12px;
}

.faq-layer-1 {
    position: absolute;
    left: 0;
    top: 190px;
    /* animation: 2s linear infinite bf-animate; */
    animation: 20s linear infinite slide-y;
}



.faqs-sec-2 {
    position: relative;
    z-index: 0;
}

.faq-layer-2 {
    position: absolute;
    right: 0;
    top: 250px;
    z-index: -1;
    /* animation: 3s linear infinite bf-animate; */
    animation: 20s linear infinite slide-y;
}

/* faq css */

.ghostwriting-solutions-slider {
    height: auto !important;
    position: relative;
    z-index: 0;
}

.ghostwriting-solutions-slider.services-card-slider {
    height: 670px;
}

.product-card.active:before {
    width: 100%;
    transition: all ease .5s;
}

.product-card.active .product-card-header .heading-3 {
    color: #fff;
}

.product-card.active p {
    color: #fff;
}

.product-card.active .anchar {
    color: #fff;
}

.product-card.active .anchar .icons img {
    filter: brightness(0) invert(1);
}

.product-card-header figure {
    background: #fff;
    border-radius: 11px;
}

.services-card .product-card-header figure {
    background: transparent;
}

.product-card:before {
    content: "";
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    position: absolute;
    background: #bcb8ff;
    overflow: hidden;
    z-index: -1;
    transition: all ease .5s;
}


.loader img {
    width: 30px;
}

.loader {
    margin-top: 8px;
    text-align: center;
}


/* appoitment form css */
.form-container {
    background-color: #bcb8ff;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 26px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #1E1B4B;

    /* dropshadow */
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.form-header {
    text-align: center;
    margin-bottom: 10px;
}

.form-header h2 {
    margin: 0;
    /* color: #333; */
    /* font-size: 1.5rem; */
    color: #1E1B4B;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.step.active .step-number {
    background-color: #1E1B4B;
    color: white;
}

.step.completed .step-number {
    background-color: #4CAF50;
    color: white;
}

.step-label {
    font-size: 0.8rem;
    color: #666;
}

.step.active .step-label {
    color: #1E1B4B;
    font-weight: bold;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Calendar styles */
.month-navigation {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 10px 0 20px;
}

.month-navigation h3 {
    margin: 0;
    /* font-size: 1.2rem; */
    /* color: #444; */
    color: #2A2A2A;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 120% */
}

.month-navigation button {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #666;
    padding: 5px 10px;
    border-radius: 5px;
}

.month-navigation button:hover {
    background-color: #bcb8ff;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    /* font-weight: bold; */
    /* color: #666; */
    margin-bottom: 10px;
    color: #1E1B4B;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day {
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    color: #1E1B4B;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
}

.day.other-month {
    color: #00000070;
    pointer-events: none;
}

.day.selected {
    color: #bcb8ff;
}

/* Time slots styles */
.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.time-slot {
    padding: 10px;
    background-color: #bcb8ff;
    text-align: center;
    cursor: pointer;
    color: #2A2A2A;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    border: 1px solid #1E1B4B;
    color: #1E1B4B;
    border-radius: 6px;
}

.time-slot:hover {
    background-color: #1E1B4B;
    color: #bcb8ff;
}

.time-slot.selected {
    background-color: #1E1B4B;
    color: #bcb8ff;
}

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 0px;
    font-weight: 400;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: Inter;
    font-size: 14px;
    line-height: normal;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Navigation buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-next {
    background-color: #1E1B4B;
    color: #bcb8ff;
    width: 49%;
}

.btn-next:hover {
    background-color: #1E1B4B;
    color: #bcb8ff !important;
}

.btn-prev {
    background-color: #f5f5f5;
    color: #666;
    width: 49%;
}

.btn-prev:hover {
    background-color: #e0e0e0;
}

.btn-submit {
    background-color: #4CAF50;
    color: white;
    width: 49%;
}

.btn-submit:hover {
    background-color: #3e8e41;
}

.btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    width: 49%;
}

/* Timezone info */
.timezone-info {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

/* Confirmation step */
.confirmation-details {
    background-color: white;
    padding: 2px 12px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.confirmation-details p {
    margin: 5px 0;
    color: #1E1B4B;
}

.confirmation-details strong {
    color: #1E1B4B;
}


div#step1-form button.btn.btn-prev {
    display: none;
}


div#step1-form button#next-to-step2 {
    width: 100%;
    border-radius: 10px;
    background: #1E1B4B;
    color: #bcb8ff;
}

.day {
    position: relative;
    z-index: 0;
}

.day:before {
    background: #1E1B4B;
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 32px;
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.day:hover:before,
.day.selected:before {
    opacity: 1;
    color: white;
}

.day:hover {
    color: #bcb8ff;
}


.selection-summary {
    margin-top: 20px;
    padding: 0;
    text-align: center;
}

.selection-summary p {
    margin: 0;
    color: #333;
    font-weight: 500;
    color: #1E1B4B;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.timezone-info {
    margin-top: 15px;
    text-align: center;
    color: #1E1B4B;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
}

span#timezone-step1 {
    font-weight: 400;
}

.form-step h3 {
    color: #1E1B4B;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}

form#appointment-form {
    width: 100%;
}

#time-slots {
    height: 100%;
}

/* appoitment form css */

figure.shop-icon-1 {
    position: absolute;
    top: 120px;
    left: 50px;
    transition: all 0.7s ease;
    /* animation: 3s linear infinite bf-animate; */
    max-width: 110px;
}

@keyframes bf-animate {

    0%,
    100% {
        filter: drop-shadow(0px 0px 5px #fff);
        transform: translateY(-5px)
    }

    50% {
        filter: drop-shadow(0px 0px 5px #DA6A2F);
        transform: translateY(0)
    }

    80% {
        filter: drop-shadow(0px 0px 5px #fff);
    }
}

@keyframes slide-y {

    0%,
    100% {
        transform: translateY(-65px);
    }

    50% {
        transform: translateY(0);
    }

    80% {}
}

@keyframes bf-animate-rotate {

    0%,
    100% {
        transform: rotate(20deg) scale(1.1);
    }

    50% {
        transform: rotate(0deg) scale(1.1);
    }

    80% {
        transform: rotate(20deg) scale(1.1);
    }
}

figure.shop-icon-1 img {
    transition: all 0.7s ease;
    animation: 2s linear infinite bf-animate;
}

figure.shop-icon-2 {
    position: absolute;
    right: 60px;
    top: 160px;
    max-width: 110px;
    transition: all 0.7s ease;
    /* animation: 3s linear infinite bf-animate; */
}

figure.shop-icon-2 img {
    transition: all 0.7s ease;
    animation: 3s linear infinite bf-animate;
}

figure.shop-icon-3 {
    position: absolute;
    bottom: 90px;
    left: 80px;
    /* animation: launch 5s infinite alternate; */
    transition: all 0.7s ease;
}

figure.shop-icon-3 img {
    animation: launch 5s infinite alternate;
    transition: all 0.7s ease;
}

@keyframes launch {
    0% {
        transform: translateX(0%) translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateX(0%) translateY(60px) rotate(0deg);
        opacity: 1;
    }
}


/* Optional flame effect */

figure.shop-icon-4 {
    position: absolute;
    right: 50px;
    bottom: 120px;
    transition: all 0.7s ease;
    /* animation: 3s linear infinite bf-animate; */
    max-width: 110px;
}

figure.shop-icon-4 img {
    transition: all 0.7s ease;
    animation: 3s linear infinite bf-animate;
}

figure.arrow-img1 {
    position: absolute;
    left: 230px;
    bottom: 250px;
    transition: all 0.7s ease;
    animation: 1s linear infinite bf-animate;
}

.hero-section:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
    content: "";
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center;
    /* background: linear-gradient(180deg, rgba(30, 27, 75, 0.95) 0%, rgba(49, 46, 129, 0.95) 100%), url(image.png); */
}

figure.isolation-layer-1 {
    position: absolute;
    right: -160px;
    top: 0;
    z-index: -1;
    opacity: 0.6;
    /* animation: wave 20s linear infinite; */
}

@keyframes wave {
    0% {
        right: -160px;
    }

    100% {
        right: 0px;
    }
}

@keyframes wave2 {
    0% {
        right: -10px;
    }

    100% {
        right: 0px;
    }
}

figure.isolation-layer-2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0.6;
    /* animation: wave2 15s linear infinite; */
}

/* step form css */

.getstarted {
    position: absolute;
    top: -45px;
    left: -8px
}

.form-wrap form ul.fields {
    /* display: flex; */
    /* align-items: center; */
    /* padding: 20px; */
    background: #f3f4f6;
    border: 0 solid #252525;
    border-radius: 8px;
    gap: 16px;
    position: relative;
    z-index: 9999;
    margin: 25px 0 0;
    /* box-shadow: 0 0 30px #25252536; */
    align-items: start;
    /* justify-content: center; */
    width: 100%;
    display: inline-flex;
    width: 100%;
    height: 92px;
    padding: 20px 20px 20px 28px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: #F6F4F1;
}

.form-wrap form ul.fields li {
    list-style: none;
    width: 80%;
}

::placeholder {
    color: #f3f4f6
}

.form-wrap,
.priceChat p {
    margin-bottom: 0
}

.form-wrap form ul.fields li:nth-child(05) {
    line-height: 0
}

.form-wrap form ul.fields li input,
.form-wrap form ul.fields li select,
.form-wrap form ul.fields li textarea {
    margin: 0;
    border: 1px solid #848484;
    /* background: inherit; */
    /* padding: 8px; */
    color: #252525;
    font-size: 13px;
    height: 40px;
    font-weight: 500;
    outline: 0 !important;
    position: relative;
    /* border-radius: 6px; */
    line-height: 22px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #FFF;
    background: #FFF;
    display: flex;
    width: 98%;
    margin: auto;
    height: 52px;
    padding: 15px 16px 16px 21px;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
    color: #797979;
    font-family: 'Inter';
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.form-wrap form ul.fields li textarea {
    border-radius: 6px;
    margin-top: 0
}

.form-wrap form ul.fields li button {
    /* border: 0; */
    cursor: pointer;
    /* background: #1E1B4B; */
    z-index: 0;
    /* border-right: 1px solid #bfbfbf26; */
    /* border-top: 1px solid #bfbfbf26; */
    /* border-bottom: 1px solid #bfbfbf26; */
    /* border-left: 1px solid #bfbfbf26; */
    border-radius: 8px;
    border: 1px solid #1E1B4B;
    background: #1E1B4B;
}

.form-wrap form ul.fields li button i,
.iconfooter i {
    font-size: 20px;
    color: #f3f4f6
}


.form-wrap form ul.fields li button {
    color: #f3f4f6;
    /* border-radius: .25rem 0 0 .25rem; */
    width: 100%;
    height: 52px;
    color: #FFF;
    text-align: center;
    font-family: 'Inter';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* 146.667% */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-wrap form ul.fields li:last-child {
    width: 30%;
}

.form-wrap form ul.fields li button:nth-child(02),
.form-wrap form ul.fields li button:nth-child(03) {
    border-radius: 8px;
}

.banner_form_btn {
    display: flex;
    gap: 5px;
}

.invalid {
    border: 1px solid #1E1B4B !important
}

.form-wrap form ul.fields li select option {
    background: #c4c4c6;
    color: #252525
}

.invalid {
    border: 1px solid #1E1B4B !important;
}

.form-wrap label.error {
    display: none !important;
}

/* step form css */

.banner-brand-list p {
    color: #100A08;
    text-align: right;
    font-family: 'Inter';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    border-right: 1px solid rgba(222, 117, 38, 0.39);
    padding-right: 2.5rem;
}

.banner-brand-list {
    /* position: absolute; */
    /* bottom: 160px; */
    /* left: 0; */
    /* right: 0; */
    width: 80%;
    margin: 2rem auto 0.5rem;
}

.faqs-sec:before {
    /* background-image: url('../images/how-do-we-bg.png'); */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    /* height: 100%; */
    /* width: 100%; */
    /* content: ""; */
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    /* bottom: 0; */
    /* z-index: -2; */
}

.faqs-sec:after {
    /* content: ""; */
    /* left: 0; */
    /* right: 0; */
    /* top: 0; */
    /* bottom: 0; */
    /* background: #EBE4DA; */
    /* position: absolute; */
    /* width: 100%; */
    /* height: 100%; */
    /* z-index: -2; */
    /* opacity: 0.9; */
}

/* rounded slider */
.tools-we-offers {
    background-image: url('../images/rounded-slider-bg.png');
    background-size: cover;
    height: 750px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    overflow: hidden;
    /*background-attachment: fixed;*/
}

.rounded-slider-child {
    /* border-top: 1px solid #1E1B4B; */
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-radius: 50%;
    width: 1000px;
    height: 499px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    margin-top: 2rem;
}

.parent-rounded-slider {
    position: relative;
    z-index: 0;
}

.rounded-slider-child figure {
    position: absolute;
    z-index: 0;
    background: white;
    border-radius: 312px;
    padding: initial;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rounded-slider-child figure:nth-child(01) {
    top: 220px;
    left: 20px;
}

.rounded-slider-child figure:nth-child(02) {
    left: 130px;
    top: 90px;
}


.rounded-slider-child figure:nth-child(03) {
    left: 220px;
    top: 5px;
}

.rounded-slider-child figure:nth-child(03) {
    left: 280px;
    top: -10px;
}

.rounded-slider-child figure:nth-child(04) {
    left: 400px;
    top: -40px;
}

.rounded-slider-child figure:nth-child(04) {
    left: 470px;
    top: -43px;
}

.rounded-slider-child figure:nth-child(05) {
    right: 280px;
    top: -10px;
}

.rounded-slider-child figure:nth-child(06) {
    right: 130px;
    top: 90px;
}

.rounded-slider-child figure:nth-child(07) {
    top: 220px;
    right: 20px;
}

.rounded-slider-child:before {
    position: absolute;
    content: "";
    background: transparent;
    inset: 1;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    z-index: 0;
    border-top: 1px solid #1E1B4B;
    top: 5px;
}

.rounded-slider-child.rounded-line-2 {
    width: 800px;
    height: 800px;
    margin-top: 6rem;
    left: 0;
}

.rounded-slider-child.rounded-line-2:before {
    width: 800px;
    left: 0px;
    height: 800px;
    top: 30px;
}

.rounded-slider-child.rounded-line-3 {
    width: 600px;
    height: 700px;
    margin-top: 14rem;
}

.rounded-slider-child.rounded-line-3:before {
    width: 600px;
    height: 700px;
    top: -10px;
    left: 0;
}

.rounded-slider-child.rounded-line-3 figure:nth-child(01) {
    top: 30px;
    left: 60px;
}

.rounded-slider-child.rounded-line-3 figure:nth-child(02) {
    top: -50px;
    left: 270px;
}

.rounded-slider-child.rounded-line-3 figure:nth-child(03) {
    top: 30px;
    left: 450px;
}

.rounded-slider-child.rounded-line-4 {
    width: 370px;
    height: 370px;
    margin-top: 21rem;
}

.rounded-slider-child.rounded-line-4:before {
    width: 370px;
    height: 360px;
    top: -30px;
    left: 0;
}

/*  */
.ml6 {
    position: relative;
    text-transform: initial;
}

.ml6 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0em;
    padding-right: 0em;
    padding-bottom: 0em;
    overflow: hidden;
    font-family: 700;
    text-transform: initial;
}

.ml6 .letter {
    display: inline-block;
    line-height: normal;
    font-weight: 700;
    text-transform: initial;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.animate-charcter {
    background-image: linear-gradient(-225deg, #FFF 0%, #fff 29%, #1E1B4B 67%, #fff 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 8s linear infinite;
    display: inline-block;
}

.product-card p {
    height: 72px;
    overflow-y: auto;
}

.rounded-swiper-slider-parent {
    display: none;
}

button#prev-month img {
    transform: rotate(180deg);
    /* filter: brightness(0) invert(1); */
}


/* inner css */
.inner-banner {
    background-image: url('../images/cta-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    padding-bottom: 9rem;
}

.heading-1-1 {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 65px;
    text-transform: capitalize;
}

html {
    overflow-x: hidden;
}

.know-about-us.innner-know-about-us {
    position: relative;
    z-index: 0;
    padding-bottom: 4rem;
}

.know-about-us.innner-know-about-us .we-offer-icon {
    bottom: unset;
    top: 50px;
}

.cta-banner.behind-the-scene {
    background-image: url('../images/cta-bg.png');
    padding: 12rem 0 5rem;
}

.cta-banner.behind-the-scene::after {
    border-radius: 80px 80px 0px 0px;
    opacity: 0.5;
    background: #bcb8ff;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    width: 870px;
    height: 400px;
    flex-shrink: 0;
    margin: auto;
}

.cta-banner.behind-the-scene .tags {
    color: white;
}

.main-orange-highlighted {
    border-radius: 10px;
    background: #1E1B4B;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 360px;
    flex-shrink: 0;
    padding: 4rem 3rem 3rem 2rem;
    position: relative;
    z-index: 0;
}

.main-orange-highlighted p {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    position: relative;
    z-index: 0;
    margin: 0;
}

.main-orange-highlighted::before {
    width: 113px;
    height: 1px;
    flex-shrink: 0;
    content: "";
    position: absolute;
    left: 34px;
    top: 45px;
    z-index: 1;
    background: #ffffff;
    margin: auto;
}

ul.listed-items {
    padding: 0;
    list-style: none;
    margin: 0;
    padding-left: 1rem;
}

ul.listed-items li {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 2rem;
}

ul.listed-items li .heading-3 {
    text-transform: capitalize;
}

.listed-content p {
    margin: 0;
}

figure.icon-rec {
    border-radius: 4px;
    border: 1px solid #1E1B4B;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-banner.inner-cta-banner {
    background-image: url('../images/behing-the-scen-bg.png');
}

.cta-banner.inner-cta-banner::before {
    opacity: 0.9;
}

.grey {
    color: #6D6D6D;
}

.the-passion-card {
    border-radius: 10px;
    border: 1px solid rgba(218, 106, 47, 0.20);
    background: #FFF;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin: 4rem 0 0;
}

.the-passion-card .s-para {
    margin: 0;
}

.the-passion-card .heading-3 {
    text-transform: capitalize;
}

.inner-brand-list {
    margin: 0rem 0 6rem;
}

.inner-brand-list .brand-list {
    border-bottom: 1px solid #EAEAEA;
    height: 160px;
}

.inner-brand-list figure.card-wheel {
    display: none;
}

.cta-banner.behind-the-scene .custom-btn.orange-btn {
    background: white;
    color: #1E1B4B;
}

.our-team.success-stories-sec figure.mic-outer {
    top: 60px;
}

/* inner-baner-two */

.inner-baner-two {
    background-image: url('../images/single-services-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: end;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgb(30 27 75 / 0%) 0%, rgb(49 46 129 / 0%) 100%), url(../images/hero-bg.png);
}

figure.amazon-box {
    position: absolute;
    bottom: -20px;
    left: -40px;
    z-index: 1;
    max-width: 200px;
}

.inner-baner-two .heading-1-1 {
    text-align: start;
    line-height: normal;
    background-image: linear-gradient(30deg, #ffffff 30%, #bcb8ff 30%, #ffffff 60%, #ffffff 20%);
    background-size: -200% auto;
    filter: drop-shadow(-1px 1px 1px #000000c9);
}

/* inner-baner-two */

/* private-label-benefits-card css */

.private-label-benefits-card {
    border-radius: 10px;
    border: 2px dashed #1E1B4B;
    background: #bcb8ff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
    padding: 40px 40px 40px;
}

.private-label-benefits-card .custom-btn-parent {
    justify-content: start;
}

.private-label-benefits-card .accordion {
    border: 0;
}

.private-label-benefits-card .accordion-item {
    border: 0;
}

.private-label-benefits-card .accordion-button {
    color: #1E1B4B;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

.private-label-benefits-card .accordion-body.g-para {
    padding-top: 0;
    color: #1E1B4B;
}

.private-label-benefits-card .custom-btn.orange-btn {
    padding: 18px 30px;
    margin-bottom: 10px;
}

.customers-feedback.private-label-benefits-sec .private-label-benefits-slider {
    margin-bottom: -10rem;
}

.private-label-benefits-card .accordion-button::after {
    display: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6D6D6D;
}

.key-features-seller {
    padding: 20rem 0 8rem;
    position: relative;
    z-index: 0;
}

.key-features-seller-card {
    border-radius: 10px;
    border: 1px solid #1E1B4B;
    background: #bcb8ff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
    padding: 20px;
    height: 390px;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: space-between;
}

.key-features-seller-card figure {
    margin: 0 0 1.5rem;
}

.key-features-seller .our-team-slider {
    padding: 3rem 0 0;
}

.key-features-seller-card figure img {
    text-align: center;
    margin: auto;
}

figure.amazon-sell-layer {
    position: absolute;
    bottom: 0;
    max-width: 190px;
}

figure.treasure-layer {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 185px;
    animation: movebounce 10s linear infinite;
}

.key-features-seller figure.mic-outer {
    top: 250px;
}

figure.shifting-layer-1 {
    position: absolute;
    left: 30px;
    top: 60px;
}

.shifting-detailed-sec {
    position: relative;
    z-index: 2;
    padding: 14rem 0 6rem;
}

figure.shifting-layer-2 {
    position: absolute;
    right: -70px;
    top: 100px;
    animation: 20s linear infinite slide-y;
}

figure.shifting-layer-3 {
    position: absolute;
    bottom: -20px;
    left: 0px;
    z-index: 2;
    animation: movebounce 10s linear infinite;
}

figure.shifting-layer-4 {
    position: absolute;
    bottom: 150px;
    right: 10px;
    animation: 1s linear infinite bf-animate;
}

/* .shifting-detailed-card css */
.shifting-detailed-card {
    border-radius: 10px;
    border: 1px solid #1E1B4B;
    background: #bcb8ff;

    /* Dropshadow */
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
    padding: 30px;
    margin-bottom: 2rem;
    height: 200px;
}

.shifting-detailed-card p {
    margin: 0;
    color: #1E1B4B;
    height: 100px;
    overflow-y: scroll;
}

.shifting-detailed-card h3 {
    color: #1E1B4B;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}

.shifting-deatils-slider {
    height: 550px;
    padding: 4rem 0 2rem;
}

figure.shifting-detailed-figurr {
    height: 444px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

/* conatct css */
.contact-sec {
    padding: 8rem 0 4rem;
    /* overflow-x: hidden; */
    position: relative;
    z-index: 0;
}

.contact-card {
    border-radius: 10px;
    background: #bcb8ff;
    padding: 2rem 25px;
}

.contact-card h3 {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 31.2px;
    font-family: Inter;
}

ul.contact-list {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 25px;
    margin: 2rem 0 0rem;
}

.contact-card p {
    color: #333333;
}

ul.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.contact-list li p {
    margin: 0;
}

ul.contact-list a {
    color: #333;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.contact-card-row {
    padding-top: 3rem;
}

section.iframe-map {
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

.contact-sec figure.mic-outer {
    top: 60px;
}

figure.shop img {
    text-align: end;
    margin-left: auto;
    animation: movebounce 10s linear infinite;
}

@keyframes movebounce {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }

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

.key-features-seller-card figure {
    height: 150px;
    overflow: hidden;
    margin: 0px auto 1rem;
    width: 100%;
}

.key-features-seller-card figure img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    filter: brightness(1.2) saturate(1);
}

figure.card-wheel img {
    animation: 1s linear infinite bf-animate;
}

.rounded-slider-child figure img {
    animation: 3s linear infinite bf-animate-rotate;
}

header#header.fixed {
    position: fixed;
    top: 10px;
    transition: all ease-in-out .7s;
}

header#header.fixed nav.navbar {
    background: #1E1B4B;
}

header#header.fixed nav.navbar .nav-link {
    color: white;
}

header#header.fixed nav.navbar .custom-btn.orange-btn {
    background: white;
    color: #1E1B4B;
}

header#header.fixed nav.navbar .navbar-brand {
    color: white;
}

figure.amazon-box img {
    animation: movebounce 10s linear infinite;
}

figure.current-layer img {
    animation: 2s linear infinite bf-animate;
}

.loud-speaker img {
    animation: 1s linear infinite bf-animate;
}

/* menu */
header .navbar-expand-lg .navbar-nav .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    top: 60px;
    background: #fff;
    padding: 10px;
}

header .dropdown {
    position: unset;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: #1E1B4B;
    color: white;
}

header .dropdown .nav-link.active {
    color: white !important;
}

header .dropdown .nav-link {
    width: 100%;
    text-align: start;
}

header .nav-pills {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.inner-dropdown-menu.row {
    padding-left: 0px;
    list-style: none;
}


header .dropdown-item {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 16px;
    border-radius: 4px;
    color: rgb(42, 42, 42);
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #1E1B4B;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #1E1B4B;
    color: white;
}


header .navbar-expand-lg .navbar-nav .dropdown-menu {
    text-align: center;
}

header .dropdown-item {
    border: 1px solid #1E1B4B;
    margin: 4px auto;
    padding: 8px 0;
}

header#header.fixed .navbar-toggler {
    border-color: white;
    filter: brightness(0) invert(1);
}

.navbar-toggler:focus {
    box-shadow: none;
}

#popup_form .close span {
    position: relative;
    top: -3px;
}

.key-features-seller-card .s-para {
    height: 120px;
    overflow-y: auto;
    color: #1E1B4B;
}

#popup_form {
    backdrop-filter: blur(5px);
}

.custom-btn.orange-btn:hover {
    /* background: #f37838; */
    /* color: white; */
    /* transition: all ease .3s; */
    /* opacity: 1; */
    filter: brightness(1.5) drop-shadow(2px 4px 6px black);
}

div#step1-form button#next-to-step2:hover {
    color: #1E1B4B;
    background: #bcb8ff;
}

.btn-submit:hover {
    color: #bcb8ff !important;
    background: #1E1B4B;
}

.form-wrap form ul.fields li button:hover {
    /* color: white; */
    /* background: #f37838; */
    opacity: 1;
    filter: brightness(2) drop-shadow(2px 4px 6px black);
}

.loader img {
    margin: auto;
}

.logo-w {
    display: none;
}

header#header.fixed .logo-b {
    display: none;
}

header#header.fixed .logo-w {
    display: block;
}

/* menu */

p.for-booking a:hover {
    filter: brightness(1.2);
}

.faq-parent.accordion .accordion-item:hover {
    background: #bcb8ff;
}

.accordion-button:hover {
    color: #1E1B4B;
}

.accordion-button:hover:after {
    filter: brightness(0.5) invert(0);
}

.accordion-button:hover:before {
    filter: brightness(4.5) invert(1);
}

header#header.fixed nav.navbar .custom-btn.orange-btn:hover {
    color: #000000;
}

/*loader css starrt*/
.loader-container {
    background-attachment: fixed;
    background: rgba(0, 17, 114, 0.40);
    backdrop-filter: blur(10px);
    height: 100vh;
    position: fixed;
    z-index: 999999;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    margin: auto;
    flex-direction: column;
}

.loaderMain img {
    max-width: 150px;
    margin: auto;
    /* filter: brightness(0) invert(1); */
    filter: drop-shadow(0px 2px 1px white);
}

@keyframes shadow-pulse {
    0% {
        filter: drop-shadow(0px 3px 2px #fff);
    }

    100% {
        filter: drop-shadow(0px 1.5px 1px #fff);
    }
}

.load-6 .letter {
    animation-name: loadingF;
    animation-duration: 1.6s;
    animation-iteration-count: infinite;
    animation-direction: linear;
}

.l-1 {
    animation-delay: 0.48s;
}

.l-2 {
    animation-delay: 0.6s;
}

.l-3 {
    animation-delay: 0.72s;
}

.l-4 {
    animation-delay: 0.84s;
}

.l-5 {
    animation-delay: 0.96s;
}

.l-6 {
    animation-delay: 1.08s;
}

.letter-holder {
    padding: 10px;
    display: flex;
    color: #fff;
}


@keyframes loadingF {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.load-6 {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.loader {
    text-align: center;
}

/*loader css end*/


.tags.white-tag {
    color: white;
}

.big-para {
    font-size: 25px;
}

.parent-hero-content p.white {
    width: 80%;
    margin: 0rem auto 1.5rem;
}

.swiper.banner-brands-card-slider figure {
    text-align: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.we-offer-sec {
    background-image: url('../images/rounded-slider-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.our-team{
    background-image: url('../images/out-team-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.we-offer-sec:before {
    background: linear-gradient(180deg, rgb(30 27 75 / 80%) 0%, rgb(49 46 129 / 60%) 100%);
    width: 100%;
    height: 100%;
    inset: 0;
    content: "";
    position: absolute;
    z-index: -1;
}

span.icons img {
    filter: brightness(0) invert(0);
}

.month-navigation button img {
    filter: brightness(0) invert(0);
}


.ml15 {
  font-weight: 700;
}

.ml15 .word {
  display: inline-block;
  line-height: 1em;
}