#navbar {
    position: sticky;
}
.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

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

.support {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
  height: 100%; 
  min-height: 250px; 
}

/*** Heading ***/

.h1-tag {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.2;
}

.h2-tag {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.h3-tag {
    font-size: 1.875rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.h4-tag {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.h5-tag {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.h6-tag {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/

.btn {
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-primary {
    background-color: #B04F08;
    border-color: #B04F08;
}

.btn-primary:hover {
    color: #fff;
    background-color: #e16408;
    border-color: #e16408;
}

.btn-light {
    color: #B04F08;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.wow {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
}

/* When visible */
.wow.show {
  opacity: 1;
  visibility: visible;
}

/* Animations */
.fadeIn {
  transform: translateY(20px);
}
.fadeIn.show {
  transform: translateY(0);
}

.fadeInUp {
  transform: translateY(40px);
}
.fadeInUp.show {
  transform: translateY(0);
}

.fadeInLeft {
  transform: translateX(-40px);
}
.fadeInLeft.show {
  transform: translateX(0);
}

.fadeInRight {
  transform: translateX(40px);
}
.fadeInRight.show {
  transform: translateX(0);
}
 :root {
    --brand-orange: #BF5708;
    --brand-blue: #1E40AF;
    --brand-green: #16A34A;
    --card-radius: 24px;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes tooltipFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.badge-pill {
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-blue));
  color: #fff;
}

.badge-pill {
  border-radius: 999px;
  padding: .28rem .6rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #22c55e;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 1.5s infinite;
}
/*** Navbar ***/

.navbar {
    background: #fff;
    transition: 1s;
}

button:focus {
    box-shadow: none !important;
    outline: 1px solid #fff !important;
}

a:active {
    color: #E16408;
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #fff;
}

.nav-link:focus,
.nav-link:hover {
    color: #B04F08;
}

.navbar {
    border-bottom: 1px solid #d3d3d3;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff !important;
    text-decoration: none;
    background-color: #E16408;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: #fff;
    border: 1px solid transparent !important;
    border-radius: 0.25rem;
    transition: box-shadow .15s ease-in-out;
}

.nav-item {
    padding-left: 20px;
}

.nav-item.active {
    border-bottom: 2px solid #B04F08 !important;
}

.primary_button-top {
    color: #000;
    border-color: #d3d3d3;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 12px !important;
    width: 140px !important;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: #fff;
    border: 1px solid #B04F08;
    border-radius: 0.25rem;
    transition: box-shadow .15s ease-in-out;
}

.navbar-button {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

a {
    text-decoration: none;
}

.brand-logo-image {
    max-width: 125px;
}

/*img {
    display: flex;
    width: 100%;
    height: auto;
}*/

.bg-light {
    background-color: #F5F9FF !important;
}


/*** Hero Header ***/

.trustes-customers-img img {
    width: 100px;
    height: auto;
    padding: 0 5px;
}

.header {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F5F9FF !important;
}

.trustes-customers-img {
    width: auto;
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.main-img {
    width: 650px;
    height: auto;
}

.image-row {
    position: relative;
    top: -43px;
}

.hero-title {
    font-size: 3rem;
    line-height: normal;
    color: #000;
}

.button-wrap {
    margin: 10px 0;
    width: 100%;
}

.request-btn {
    padding: 12px 50px;
    background: #B04F08;
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
}

.requests-btn {
    padding: 12px 59px;
    background: #fff;
    color: #000;
    font-size: 18px;
    margin-left: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid #d3d3d3;
}

.sub-heading {
    font-size: 2.2rem;
    line-height: normal;
    color: #000;
    width: 80%;
    margin-bottom: 30px;
}

.title-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sub-content {
    text-align: center;
    width: 76%;
    font-size: 20px;
    margin-bottom: 30px;
}

p {
    font-size: 18px;
    color: #676565;
    line-height: 28px;
}

.hero-tag {
    margin-top: 0px;
    font-size: 20px;
    color: #000;
    font-weight: 600;
    text-align: left;
}

.hero-content {
    margin-bottom: 5px;
    color: #676565;
}

.hero-resp {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.bg-primary {
    background-color: #fef4ea !important;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}

section {
    padding: 3rem 5rem;
    overflow: hidden;
}


/* new */

.hero-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.title-tag {
    font-size: 16px;
    color: #B04F08;
    background: #FBE389;
    padding: 2px 10px;
    border-radius: 25px;
}

@keyframes half-spin {
    0% {
        transform: rotate(0);
        transform-origin: center;
    }
    50% {
        transform: rotate(90deg);
        transform-origin: center;
    }
}

@keyframes top-bottom {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
}


/*  */

#why_chose .chose-container {
    display: grid;
    grid-template-columns: 32% 35% 32%;
    justify-content: space-between;
    align-items: center;
}

.key-highlight {
    display: inline-block;
    position: relative;
    color: #B04F08;
    font-size: 2rem;
    line-height: 40px;
}

.key-highlight:after {
    content: "";
    height: 23px;
    width: 100%;
    background-image: url(../img/highlight.svg);
    background-size: cover;
    background-repeat: repeat-x;
    position: absolute;
    bottom: -18px;
    left: 0;
    -webkit-animation: titleFill 3s linear infinite;
    animation: titleFill 3s linear infinite;
}

@keyframes titleFill {
    0% {
        width: 0;
    }
    80% {
        width: 100%;
    }
    100% {
        width: 100%;
    }
}

.second-heading {
    font-size: 22px;
}

.promot-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.promot {
    margin-bottom: 0;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

#why_chose .chose-container .chose-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#why_chose .chose-img {
    width: 70%;
    margin-bottom: 2%;
}

#why_chose .chose-text h2 {
    color: #000;
    font-size: 50px;
    letter-spacing: 0.9;
}

#why_chose .chose-text p {
    color: #676565;
    text-align: center;
    padding: 0px 20px;
}

#why_chose .chose-point-container {
    /* display: flex; */
    /* display: grid; */
    /* column-gap: 30px; */
    /* grid-template-columns: 47% 47%;
    gap: 25px; */
    width: 85%;
}

#why_chose .chose-point-container .chose-two {
    margin-top: 22px;
}

#why_chose .chose-point-container .chose-one,
#why_chose .chose-point-container .chose-two {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

#why_chose .chose-right-point {
    margin-left: 36%;
    width: 100%;
    background-color: #EAFFE6 !important;
    color: #000;
}

#why_chose .chose-right-point-minus {
    margin-left: -36%;
    width: 100%;
    background-color: #EAFFE6 !important;
    color: #000;
}

#why_chose .chose-point-box {
    background-color: #F2E9FE;
    border-radius: 20px;
    padding: 3% 5% 0% 5%;
}

.left-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

#why_chose .chose-point-last {
    background-color: #FDE3EA;
    border-radius: 20px;
    padding: 3% 5% 0% 5%;
}

#why_chose .chose-point-box h4 {
    display: flex;
    font-size: 22px;
    align-items: center;
}


/*  */

.featured-beneifts ul {
    margin-bottom: 0;
}

#sticky {
    position: sticky;
    position: -webkit-sticky;
    transition: 1.5s;
    top: 100px;
    color: #fff;
    width: 100%;
    z-index: 99;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* box-shadow: 1px 1px 2rem rgba(192, 185, 185, 0.5); */
    /* padding: 0px; */
}

#wrapper {
    margin: auto;
}

#home .tab_user {
    margin-top: 0px;
}

.featured-beneifts {
    padding: 3rem 0rem;
    background: #F5F9FF;
}

#wrapper {
    height: fit-content !important;
}

@media (min-width: 1200px) {
    .productone-insight h1 {
        font-size: 2rem !important;
    }
}

.tab_user {
    margin-top: 30px;
    height: fit-content;
    display: inline-block;
}


/* new */

.feature-wrapper-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.feature-wrapper-section {
    position: relative;
}

.feature-wrapper-section .feature-single {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-bottom: 80px;
    position: relative;
    margin-top: 150px;
}

.feature-wrapper-section .feature-single-2 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 80px;
    position: relative;
    margin-top: 100px;
}

.feature-wrapper-section .text-block {
    flex: 1 1 310px;
}

.feature-wrapper-section .feature-single-2 .text-block {
    flex: 1 1 354px;
}

.feature-wrapper-section .text-block h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 0px;
}

.feature-wrapper-section .feature-single-2 {
    margin-top: 150px;
}

.feature-wrapper-section .feature-single-2 .card-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    width: 70%;
    position: relative;
    z-index: 12;
}

.feature-wrapper-section .text-block p {
    font-size: 18px;
}

.feature-wrapper-section .feature-single-2 .text-block p {
    font-size: 18px;
    width: 45%;
}

.feature-wrapper-section .card-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    width: 70%;
}

.feature-wrapper-section .card {
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    border-radius: 20px;
    border: 1px solid transparent;
}

.firts-feature {
    margin-top: 130px !important;
}

.feature-wrapper-section .card h3 {
    font-size: 20px;
    font-weight: 500;
}

.feature-icon {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.feature-wrapper-section .card p {
    font-size: 18px;
    flex-grow: 1;
    line-height: 25px;
}

.feature-wrapper-section .card a {
    font-size: 14px;
    text-decoration: none;
    color: #1d1c1d;
    display: inline-block;
}

.feature-wrapper-section .illustration {
    flex: 1 1 400px;
    text-align: center;
}

.feature-wrapper-section .illustration img {
    max-width: 30%;
    height: auto;
    position: absolute;
    left: 20px;
    /*top: -100px;*/
}

.feature-wrapper-section .feature-single-2 .illustration img {
    max-width: 30%;
    height: auto;
    position: absolute;
    left: auto;
    right: -15px;
    top: -1px;
}


/* h4 {
text-align: center;
} */

@media (min-height: 768px) {
    #wrapper {
        height: fit-content !important;
    }
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    flex-direction: row;
    justify-content: center;
}

.nav-pills-custom .nav-link {
    color: #aaa;
    background: #fff;
    position: relative;
}

.nav-border {
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, .2);
    border-radius: 10px;
}

.deep {
    padding: 1rem 0rem;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: space-between;
}

.section-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.tab_user {
    transition: margin-top 0.3s;
    /* Optional for smooth transition */
}

.stink ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-left: 0;
    padding-top: 1rem;
    border-radius: 10px;
}

.stink {
    margin: 0 auto;
    text-align: center;
}

.stink ul li {
    display: flex;
    text-align: left;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background-color: #fff;
    align-items: flex-start;
}

.stink ul li a {
    display: inline-block;
    text-decoration: none;
    color: #222222;
    padding: 16px 20px 12px 20px;
    font-size: 18px;
    font-weight: 500;
}

.brand-section .section-head {
    margin-bottom: 30px;
    font-weight: 600;
}

.stink ul li.active {
    border: none !important;
    border-radius: 10px;
    /* transition: 0.3s ease background-color; */
    background: #FCF0E6;
    transition: background-color 0.1s ease;
}

.stink ul li.active a {
    color: #B04F08 !important;
}

@media (min-height: 768px) {
    #wrapper {
        height: fit-content !important;
    }
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 765px) {
    #sticky {
        display: none;
    }
}

.why-icon {
    width: 40px;
    height: auto;
    margin-right: 5px;
}

.button-span {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.button-image {
    width: 130px;
    height: auto;
}

button:focus {
    outline: none !important;
    /* Remove focus outline */
}

.features-single-box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

.feature-title {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.feature-title h4 {
    text-align: left;
    width: 50%;
}

.eight-feature {
    margin-bottom: 25px !important;
}

.featured-beneifts .container {
    max-width: 1200px;
}


/* integration-section Css Start */

.integration-section {
    overflow: hidden;
    margin: 30px 0;
}

.integration-section .container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.integration-grid {
    min-height: 400px;
    grid-column-gap: 72px;
    grid-row-gap: 72px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.5fr 1fr;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto;
    grid-auto-columns: 1fr;
    display: grid;
}

.integration-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    display: flex;
}

#w-node-_007ee1af-5bbc-9b44-f88a-8b158ac6b082-efc1e174 {
    align-self: center;
}

.integration-wrap-right {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
}

.integration.hubspot {
    position: relative;
    top: -43px;
    left: -120px;
}

.integration.slack {
    position: relative;
    right: -22px;
}

.integration.intercom {
    margin-left: 16px;
    margin-right: 16px;
    position: relative;
    left: -191px;
}

.integration.kickstarter {
    position: relative;
}

.integration.paypal {
    position: relative;
    bottom: -30px;
    left: -150px;
}

.integration.unbounce {
    position: relative;
    bottom: -50px;
    left: 50px;
}

.integration-section .title-wrap {
    max-width: 650px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    height: 100%;
}

.form-heading {
    color: #000;
    letter-spacing: -.04em;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
}

.form-subheading {
    color: #494a7d;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

.integration.mailchimp {
    position: relative;
    top: -43px;
    left: -36px;
}

.integration.flowbase {
    position: relative;
    top: 20px;
    right: 122px;
}

.integration.salesforce {
    position: relative;
    left: 80px;
    top: -56px;
}

.integration.unbounce-2 {
    position: relative;
}

.integration.surveymonkey {
    position: relative;
    bottom: -40px;
    left: 120px;
}

.integration.hubspot-small {
    position: relative;
    bottom: -86px;
    left: -50px;
}

.integration {
    border-radius: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 16px;
    margin-right: 16px;
    display: flex;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.integration-logo {
    width: 115px;
}

#platform-content {
    font-size: 20px;
    color: #676565;
    font-weight: 500 !important;
}

.platform-block {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 50px;
}


/*================================================
Index 02 Service Area CSS
=================================================*/

.service-card-2 {
    margin-top: 30px;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    margin-top: 30px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
    height: 340px;
    background: #fff;
}

.service-card-2 span {
    width: 97%;
    height: 40%;
    transform: rotate(-15deg);
    border-radius: 0px 0px 50px 50px;
    background-color: #ffeced;
    overflow: hidden;
    position: absolute;
    left: 10px;
    top: -60px;
    transition: 0.5s ease;
}

.service-card-2 span::before {
    content: "";
    width: 0%;
    height: 0%;
    transition: 0.5s ease-in;
    border-radius: 0px 0px 50px 50px;
    background-color: #B04F08;
    position: absolute;
    top: 0;
    right: 0;
}

.service-card-2 .service-card-content {
    position: relative;
}

.service-card-2 .service-card-content .service-card-2-img {
    width: 85px;
    height: 85px;
    padding: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-card-2 .service-card-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-card-2 .service-card-content .default-button-3 {
    margin-top: 10px;
}

.service-card-2:hover span::before {
    width: 100%;
    height: 100%;
    right: unset;
    left: 0;
    transition: 0.5s ease;
    border-radius: 0px 0px 50px 50px;
}

.service-slider-area-2 .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.service-slider-area-2 .owl-dots .owl-dot {
    width: 30px;
    height: 8px;
    margin: 0px 3px;
    border-radius: 15px;
    background-color: #b5d2fe;
}

.service-slider-area-2 .owl-dots .active {
    background-color: var(--mainColor);
}

.service .container {
    padding: 25px 0px;
}

.service .sub-heading {
    margin-bottom: 5px;
}


/*  */

.carousel-indicators {
    position: absolute;
    left: -305px;
    right: 200px;
    bottom: -50px;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.contentn p {
    color: #676565;
    font-size: 22px;
}

#carouselExampleIndicators .carousel-indicators [data-bs-target] {
    position: relative;
    width: 75px !important;
    height: 75px !important;
    border: none;
    border-radius: 50px;
    margin-left: 10px;
}

.testimonial {
    background: #F5F9FF;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #000 !important;
    text-align: center;
    /* background: 0 0; */
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 390px;
    margin-bottom: 50px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.soft-rating-img {
    max-width: 100%;
    height: 100%;
}

.carousel-indicators .active {
    opacity: 1;
    background: #B04F08 !important;
}

.client-logo {
    width: 65px !important;
    height: 65px !important;
    border-radius: 50px !important;
}

#carouselExampleIndicators .carousel-indicators [data-bs-target] span img {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 0;
    height: 100%;
    border-radius: inherit;
}

.dub-resp {
    text-align: left;
}

.brand-app {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.grid-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.secondary-heading {
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

.client-name {
    color: #000;
}

.name h6 {
    color: #676565;
    font-size: 18px;
}

.testimonial .section-heading {
    margin-bottom: 0;
}

.quote {
    width: 130px;
    height: auto;
}


/*  */

.need_section .need_block {
    background: #FBE389;
    padding: 48px 50px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    color: var(--text-white);
    display: flex;
}

.need_section {
    width: 100%;
    top: -100px;
    margin-top: -40px;
    position: relative;
}

.need_block {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.need_text {
    width: 80%;
}

.section_title p {
    width: 80%;
    font-size: 20px;
    color: #000;
}




/* ===== Scrollbar CSS ===== */


/* Firefox */

* {
    scrollbar-width: auto;
    scrollbar-color: #B04F08 #ffffff;
}


/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 14px;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
}

*::-webkit-scrollbar-thumb {
    background-color: #B04F08;
    border-radius: 10px;
    border: 3px solid #ffffff;
}

.section-block {
    max-width: 95%;
}




@media (min-width: 1300px) and (max-width: 1399.98px) {
    .flex .main-box-content-wrap,
    .flex .main-box-content-warpper2 {
        width: 100%;
    }
}

@media (min-width: 280px) and (max-width: 576px) {
    .form-box {
        margin: 20px 0px;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }
    .brand-section h2,
    .why h2 {
        margin-bottom: 30px;
    }
}

/*  */

.support-section .row {
    padding: 80px;
    border-radius: 10px;
    background: #F5F9FF;
}

.sub-content .container {
    background: aliceblue;
    padding: 45px 0;
    border-radius: 15px;
}

.support-section .sub-content {
    width: 90%;
}

.customer-support-img-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 80%;
    margin-top: 25px;
}

.support-img {
    width: 60px;
    margin-bottom: 20px;
    height: auto;
}

.support {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.support-section {
    padding: 0rem 5rem 3rem;
    margin-top: -50px;
}

.support p {
    width: 80%;
}

.security .container-xxl {
    padding: 80px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    #progress {
        position: fixed;
        bottom: 70px;
        right: 20px;
        height: 60px !important;
        width: 60px !important;
        display: none;
        place-items: center;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        z-index: 9999;
    }
}

#progress {
    position: fixed;
    bottom: 70px;
    right: 20px;
    height: 70px;
    width: 70px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9999999;
}

#progress-value {
    display: block;
    height: calc(100% - 8px);
    width: calc(100% - 8px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #001a2e;
}

.scroll-arrow {
    width: 30px;
}


/* contact us */

.form-wrapper {
    background-color: #ffffff;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    border-radius: 12px;
    animation: fadeIn 1s ease-out;
}

.title {
    font-size: 28px;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-column {
    flex: 1;
    min-width: 250px;
}

.form-label {
    display: block;
    color: #333;
    font-size: 18px;
    margin-bottom: 5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: border-color 0.3s, transform 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #B04F08;
    outline: none;
    transform: scale(1.02);
}

.form-textarea {
    resize: none;
}

.submit-button {
    display: block;
    width: 30%;
    padding: 8px;
    background: #B04F08;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.submit-button:hover {
    background: #B04F08;
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px;
    }
    .title {
        font-size: 24px;
    }
    .subtitle {
        font-size: 14px;
    }
    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 540px) {
    .form-wrapper {
        padding: 20px;
    }
    .title {
        font-size: 20px;
    }
    .subtitle {
        font-size: 12px;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .form-column {
        min-width: 100%;
    }
    .form-label {
        font-size: 12px;
    }
    .form-input,
    .form-textarea {
        padding: 10px;
    }
    .submit-button {
        padding: 10px;
        font-size: 14px;
    }
}

.submit-button {
    padding: 10px;
    font-size: 18px;
}


/*  */

.faq .accordion-container {
    width: 100%;
    max-width: 1000px;
}

.faq .accordion-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.faq .accordion-header {
    background-color: #fff;
    color: #000;
    padding: 15px;
    font-size: 20px;
    border: none;
    height: 75px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.faq .accordion-header:hover {
    background-color: #B04F08;
    color: #fff;
}

.faq .accordion-header.active {
    background-color: #B04F08;
    color: #fff;
}

.faq .accordion-content {
    background-color: #FAFAFA;
    overflow: hidden;
    padding: 0 15px;
    border-radius: 10px;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.faq .accordion-content p {
    margin: 15px 0;
    line-height: 1.5;
    font-size: 18px;
}

.faq .icon {
    transition: transform 0.3s ease;
}

.faq .active .icon {
    transform: rotate(45deg);
}

.faq {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.benefit-p {
    margin: 0 !important;
}

.image-holder {
    display: flex;
    flex-direction: row;
    justify-content: center;
}


/* button */

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 10px 32px; */
    background-color: transparent;
    border: 2px solid transparent;
    color: #B04F08;
    gap: 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.text {
    font-size: 20px;
    font-weight: 500;
    text-decoration: underline;
}

.svg {
    height: 100%;
    width: fit-content;
}

.svg svg {
    width: 50px;
    height: 30px;
}

.button:hover .svg svg {
    animation: jello-vertical 0.9s both;
    transform-origin: left;
}

@keyframes jello-vertical {
    0% {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(0.75, 1.25, 1);
    }
    40% {
        transform: scale3d(1.25, 0.75, 1);
    }
    50% {
        transform: scale3d(0.85, 1.15, 1);
    }
    65% {
        transform: scale3d(1.05, 0.95, 1);
    }
    75% {
        transform: scale3d(0.95, 1.05, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}


/* responsive  */

@media (max-width: 575.98px) {
    .h1-tag {
        font-size: calc(1.375rem + 1.5vw);
        margin-top: 0;
        margin-bottom: .5rem;
        font-weight: 500;
        line-height: 1.2;
    }
    .h2-tag {
        font-size: calc(1.325rem + .9vw);
        margin-top: 0;
        margin-bottom: .5rem;
        font-weight: 500;
        line-height: 1.2;
    }
    .h3-tag {
        font-size: calc(1.3rem + .6vw);
        margin-top: 0;
        margin-bottom: .5rem;
        font-weight: 500;
        line-height: 1.2;
    }
    .h4-tag {
        font-size: calc(1.275rem + .3vw);
        margin-top: 0;
        margin-bottom: .5rem;
        font-weight: 500;
        line-height: 1.2;
    }
    #why_chose .chose-text p {
        padding: 0px !important;
    }
    .client-logo {
       width: 45px !important;
       height: 45px !important;
       border-radius: 50px !important;
    }
    #carouselExampleIndicators .carousel-indicators [data-bs-target] {
       position: relative;
       width: 50px !important;
       height: 55px !important;
       border: none;
       border-radius: 50px;
       margin-left: 10px;
    }
}

@media screen and (max-width: 767px) {
    section {
        padding: 25px 10px;
        overflow: hidden !important;
    }
    .hero-title {
        font-size: 30px;
        line-height: normal;
        color: #000;
    }
    .text {
        font-size: 18px;
        font-weight: 500;
        text-decoration: underline;
    }
    .sub-heading {
        font-size: 25px;
        line-height: normal;
        color: #000;
        width: 100%;
        margin-bottom: 0px;
    }
    .key-highlight {
        display: inline-block;
        position: relative;
        color: #B04F08;
        font-size: 25px;
        line-height: 40px;
    }
    .service-card-2 {
        margin-top: 30px;
        overflow: hidden;
        padding: 15px;
        text-align: center;
        position: relative;
        box-shadow: 0 0 45px rgba(0, 0, 0, .08);
        margin-top: 30px;
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 10px;
        height: 300px;
        background: #fff;
    }
    .feature-title {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .feature-title h4 {
        text-align: center;
        width: 100%;
    }
    .features-single-box h4 {
        text-align: center;
        margin-bottom: 20px;
    }
    .tab_user {
        margin-top: 20px;
        height: fit-content;
        display: inline-block;
    }
    .collab-row img {
        margin: 30px 0px;
    }
    .mob-resp {
        display: flex;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }
    .sub-content {
        text-align: center;
        width: 100%;
        font-size: 18px;
        margin-bottom: 30px;
        line-height: 28px;
    }
    .hero-text {
        display: none;
    }
    #why_chose .chose-point-container {
        /* display: flex
    ; */
        /* display: grid
    ; */
        /* column-gap: 30px; */
        width: 100%;
    }
    #why_chose .chose-right-point {
        margin-left: 0%;
        width: 100%;
        background-color: #EAFFE6 !important;
        color: #000;
    }
    #why_chose .chose-container {
        display: grid;
        grid-template-columns: 100%;
        justify-content: space-between;
        align-items: center;
    }
    #why_chose .chose-point-box h4 {
        font-size: 18px;
    }
    #why_chose .chose-point-box {
        background-color: #F2E9FE;
        border-radius: 20px;
        padding: 3% 5% 5% 5%;
    }
    #why_chose .chose-point-last {
        background-color: #FDE3EA;
        border-radius: 20px;
        padding: 3% 5% 5% 5%;
    }
    #why_chose .chose-point-container .chose-one,
    #why_chose .chose-point-container .chose-two {
        display: flex;
        flex-direction: column;
        row-gap: 22px;
        margin-top: 20px;
    }
    #why_chose .chose-right-point-minus {
        margin-left: 0%;
        width: 100%;
        background-color: #EAFFE6 !important;
        color: #000;
    }
    .home-banner .accordion {
        width: 100%;
        max-width: 600px;
        margin: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .accordion-header span {
        font-size: 18px;
        font-weight: 500;
    }
    .accordion {
        width: 100%;
        max-width: 600px;
        margin: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .platform-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 9px;
        margin-top: 0px;
    }
    p {
        font-size: 16px;
        color: #676565;
        line-height: 25px;
        margin-bottom: 0;
    }
    .integration_section .platforms_list .list_block {
        background: #F5F9FF 0% 0% no-repeat padding-box;
        box-shadow: 0px 3px 15px #edebf6;
        border: 1px solid #f1eff7;
        border-radius: 6px;
        min-height: 130px;
        width: 145px;
        height: 145px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        /* margin-top: 30px; */
        border-bottom: 4px solid transparent;
        transition: .4s all;
        overflow: hidden;
    }
    #platform-contents {
        width: 100%;
        padding: 0px;
        border-radius: 25px;
        border: 1px solid transparent;
        font-size: 20px;
        color: #676565;
        font-weight: 400 !important;
    }
    .service .container {
        padding: 0;
    }
    .need_text {
        width: 100%;
    }
    .need_section .need_block {
        background: #FBE389;
        padding: 35px 25px;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 20px;
        color: #000;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .section_title p {
        width: 100%;
        font-size: 16px;
        color: #000;
    }
    .need_action {
        margin-top: 20px;
    }
    .carouselExampleIndicators {
        margin-top: 20px;
    }
    .contentn p {
        color: #676565;
        font-size: 17px;
        line-height: 28px;
    }
    .quote {
        width: 90px;
        height: auto;
    }
    .carousel-indicators {
        position: absolute;
        left: 0;
        right: 0;
        bottom: -100px;
        z-index: 2;
        display: flex;
        justify-content: center;
        padding: 0;
        margin-right: 0;
        margin-bottom: 1rem;
        margin-left: 0;
        list-style: none;
    }
    .testimonial .container {
        height: 925px;
    }
    .grid-box {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 10px;
    }
    .carousel-indicators {
        position: absolute;
        left: 0;
        right: 0;
        bottom: -100px;
        z-index: 2;
        display: flex;
        justify-content: center;
        padding: 0;
        margin-right: 0;
        margin-bottom: 1rem;
        margin-left: 0;
        list-style: none;
    }
    .support-section {
        padding: 0rem 1rem 3rem;
        margin-top: -110px;
    }
    .support-section .row {
        padding: 30px 0;
        border-radius: 10px;
        background: #F5F9FF;
    }
    .customer-support-img-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
        margin-top: 0px;
        flex-wrap: wrap;
    }
    .secondary-heading {
        text-align: center;
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 30px;
        color: #000;
    }
    .faq .accordion-header {
        font-size: 18px;
        height: 100%;
    }
    img {
        display: flex;
        width: 100%;
        height: auto;
    }
    .featured-beneifts {
        padding: 1rem 0rem;
        background: #F5F9FF;
    }
    .feature-wrapper-section .text-block h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .feature-wrapper-section .text-block p {
        font-size: 16px;
        line-height: 25px;
    }
    .feature-wrapper-section .card-flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        width: 100%;
        margin-top: 15px;
    }
    .firts-feature {
        margin-top: 20px !important;
    }
    .feature-wrapper-section .illustration img {
        max-width: 100%;
        height: auto;
        position: absolute;
        left: 0px;
        top: 100%;
        padding: 15px;
    }
    .feature-wrapper-section .feature-single-2 {
        margin-top: 75%;
    }
    .feature-wrapper-section .feature-single-2 .text-block p {
        font-size: 16px;
        width: 100%;
        line-height: 28px;
    }
    .feature-wrapper-section .card p {
        font-size: 16px;
        flex-grow: 1;
        line-height: 25px;
    }
    .feature-wrapper-section .feature-single-2 .card-flex {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        width: 100%;
        position: relative;
        z-index: 12;
        flex-wrap: wrap;
    }
    .feature-wrapper-section .feature-single-2 .illustration img {
        max-width: 100%;
        height: auto;
        position: absolute;
        left: auto;
        right: 0px;
        top: 100%;
        padding: 15px;
    }
    .feature-wrapper-section .third-feature {
        margin-top: 75%;
    }
    .feature-wrapper-section .five-feature {
        margin-top: 75%;
    }
    .feature-wrapper-section .seven-feature {
        margin-top: 75%;
    }
    .feature-wrapper-section .eight-feature {
        margin-bottom: 75% !important;
    }
    .feature-wrapper-section .text-block {
        flex: 1 1 315px;
    }
    .w-layout-grid {
        display: block;
        margin-top: 30px;
    }
    .integration-wrap {
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    .integration-wrap-right {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
    }
    .Business_counter .sub-heading {
        margin-bottom: 20px;
    }
    .form-heading {
        color: #000;
        letter-spacing: -.02em;
        margin-top: 0;
        margin-bottom: 0px !important;
        font-size: 25px;
        font-weight: 700;
        line-height: 1.1;
    }
    .integration.hubspot {
        position: relative;
        top: 0px;
        left: 0;
    }
    .integration.slack {
        position: relative;
        top: 0px;
        right: 0px;
    }
    .integration.intercom {
        margin-left: 16px;
        margin-right: 16px;
        position: relative;
        left: 0;
    }
    .integration.paypal {
        position: relative;
        bottom: -0;
        left: 0;
    }
    .integration.unbounce {
        position: relative;
        bottom: 0px;
        left: 0px;
    }
    .integration-logo {
        width: 100px;
        height: auto;
    }
    .integration.mailchimp {
        position: relative;
        top: 0px;
        left: 0px;
    }
    .integration.flowbase {
        position: relative;
        top: 0px;
        right: 0px;
    }
    .integration.salesforce {
        position: relative;
        left: 0px;
        top: 0px;
    }
    .integration.surveymonkey {
        position: relative;
        bottom: 0px;
        left: 0px;
    }
    .integration.hubspot-small {
        position: relative;
        bottom: 0px;
        left: 0px;
    }
    .integration-section {
        overflow: hidden;
        margin: 0px 0;
    }
}

@media (min-width: 768px) and (max-width:999.98px) {
    #first-section {
      margin-top: 50px !important;
    }
    section {
        padding: 1.5rem 1rem;
        overflow: hidden !important;
        margin-top: 0px !important;
    }
    .hero-title {
        font-size: 2rem;
        line-height: normal;
        color: #000;
    }
    .button-wrap {
        margin: 5px 0;
        width: 100%;
    }
    .key-highlight {
        display: inline-block;
        position: relative;
        color: #B04F08;
        font-size: 1.8rem;
        line-height: normal;
    }
    .sub-heading {
        font-size: 1.8rem;
        line-height: normal;
        color: #000;
        width: 100%;
        margin-bottom: 30px;
    }
    #why_chose .chose-point-container {
        /* display: flex
    ; */
        /* display: grid
    ; */
        /* column-gap: 30px; */
        width: 100%;
    }
    #why_chose .chose-point-container .chose-one,
    #why_chose .chose-point-container .chose-two {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
    #why_chose .chose-right-point {
        margin-left: 0%;
        width: 100%;
        background-color: #EAFFE6 !important;
        color: #000;
    }
    #why_chose .chose-container {
        display: grid;
        grid-template-columns: 35% 30% 35%;
        justify-content: space-between;
        align-items: center;
    }
    .mob-resp {
        display: flex;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }
    #why_chose .chose-right-point-minus {
        margin-left: 0%;
        width: 100%;
        background-color: #EAFFE6 !important;
        color: #000;
    }
    .service-card-2 {
        margin-top: 30px;
        overflow: hidden;
        padding: 15px;
        text-align: center;
        position: relative;
        box-shadow: 0 0 45px rgba(0, 0, 0, .08);
        margin-top: 30px;
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 10px;
        height: 300px;
        background: #fff;
    }
    .support {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .tab_user {
        margin-top: 30px;
        height: fit-content;
        display: inline-block;
    }
    .hero-text {
        display: none;
    }
    .Business_counter .container {
        padding: 0;
        max-width: 100%;
    }
    .sub-heading {
        font-size: 1.8rem;
        line-height: normal;
        color: #000;
        width: 85%;
        margin-bottom: 30px;
    }
    #why_chose .chose-point-box h4 {
        display: flex;
        font-size: 22px;
        align-items: center;
    }
    .accordion {
        width: 100%;
        max-width: 600px;
        margin: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .contentn p {
        color: #676565;
        font-size: 18px;
    }
    .feature-title {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .feature-title h4 {
        text-align: center;
        width: auto;
    }
    .features-single-box h4 {
        text-align: center;
    }
    .secondary-heading {
        text-align: center;
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 30px;
        color: #000;
    }
    .quote {
        width: 90px;
        height: auto;
    }
    .carousel-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
        height: fit-content;
        margin-bottom: 50px;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
    }
    .support {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .carousel-indicators {
        position: absolute;
        left: 0;
        right: 0;
        bottom: -63px;
        z-index: 2;
        display: flex;
        justify-content: center;
        padding: 0;
        margin-right: 15%;
        margin-bottom: 1rem;
        margin-left: 15%;
        list-style: none;
    }
    .sub-content {
        text-align: center;
        width: 100%;
        font-size: 18px;
        margin-bottom: 30px;
    }
    .featured-beneifts .container {
        max-width: 90%;
    }
    .testimonial .secondary-heading {
        margin-bottom: 0;
    }
    .need_section {
        width: 100%;
        top: -20px;
        margin-top: -40px;
        position: relative;
    }
    .need_section .need_block {
        background: #FBE389;
        padding: 20px 20px;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 20px;
        color: var(--text-white);
        display: flex;
    }
    .request-btn {
        /* padding: 12px 67px; */
        background: #B04F08;
        color: #fff;
        font-size: 18px;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid transparent;
        width: 170px;
        padding: 10px;
    }
    .section_title p {
        width: 100%;
        font-size: 20px;
        color: #000;
    }
    .support-section {
        padding: 1.5rem 1rem 1.5rem;
        margin-top: -50px;
    }
    .support-section .row {
        padding: 60px 0;
        border-radius: 10px;
        background: #F5F9FF;
    }
    .counter-wrap h4 {
        font-size: 18px;
    }
    .customer-support-img-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-top: 25px;
    }
    .form-heading {
        color: #000;
        letter-spacing: -.02em;
        margin-top: 0;
        margin-bottom: 0px !important;
        font-size: 25px;
        font-weight: 700;
        line-height: 1.1;
    }
    #platform-content {
        font-size: 20px;
        color: #676565;
        font-weight: 400 !important;
    }
    .integration-logo {
        width: 100px;
    }
    .integration.mailchimp {
        position: relative;
        top: -43px;
        left: 85px;
    }
    .integration.salesforce {
        position: relative;
        left: 100px;
    }
    .integration.surveymonkey {
        position: relative;
        bottom: -30px;
        left: 100px;
    }
    .integration.hubspot-small {
        position: relative;
        bottom: -20px;
        left: -50px;
    }
    .integration.hubspot {
        position: relative;
        top: -43px;
        left: -85px;
    }
    .integration.paypal {
        position: relative;
        bottom: -30px;
        left: -80px;
    }
    .integration.unbounce {
        position: relative;
        bottom: -30px;
        left: 50px;
    }
    .integration.intercom {
        margin-left: 16px;
        margin-right: 16px;
        position: relative;
        left: -110px;
    }
    .feature-wrapper-section .card p {
        font-size: 16px;
        flex-grow: 1;
        line-height: 25px;
    }
    .feature-wrapper-section .card h3 {
        font-size: 18px;
        font-weight: 500;
    }
    .feature-wrapper-section .text-block h3 {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 0px;
    }
    .feature-wrapper-section .text-block p {
        font-size: 16px !important;
        line-height: 25px;
    }
    .feature-wrapper-section .feature-single-2 .illustration img {
        max-width: 35%;
        height: auto;
        position: absolute;
        left: auto;
        right: -10px;
        top: -60px;
    }
    .feature-wrapper-section .illustration img {
        max-width: 35%;
        height: auto;
        position: absolute;
        left: 0px;
        top: -45px;
    }
    .service .container {
        padding: 0px 0px;
    }
    .w-layout-grid {
        display: flex;
        justify-content: center;
    } 
    .feature-wrapper-section .feature-single {
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        flex-wrap: wrap;
        margin-bottom: 30px;
        position: relative;
        margin-top: 80px;
    }
    .feature-wrapper-section .feature-single-2 {
        margin-top: 80px;
    }
    .firts-feature {
        margin-top: 50px !important;
    }
    .eight-feature {
        margin-bottom: 0px !important;
    }
    .featured-beneifts .container {
        max-width: 800px;
    }
}

@media (min-width: 1000px) and (max-width:1013.98px) {
    section {
        padding: 2rem 2rem;
        overflow: hidden !important;
    }
    .hero-title {
        font-size: 2.5rem;
        line-height: normal;
        color: #000;
    }
    .button-wrap {
        margin: 5px 0;
        width: 100%;
    }
    .key-highlight {
        display: inline-block;
        position: relative;
        color: #B04F08;
        font-size: 1.8rem;
        line-height: normal;
    }
    .sub-heading {
        font-size: 2rem;
        line-height: normal;
        color: #000;
        width: 100%;
        margin-bottom: 30px;
    }
    #why_chose .chose-point-container {
        /* display: flex
    ; */
        /* display: grid
    ; */
        /* column-gap: 30px; */
        width: 90%;
    }
    #why_chose .chose-point-container .chose-one,
    #why_chose .chose-point-container .chose-two {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
    #why_chose .chose-right-point {
        margin-left: 17%;
        width: 100%;
        background-color: #EAFFE6 !important;
        color: #000;
    }
    #why_chose .chose-container {
        display: grid;
        grid-template-columns: 35% 30% 35%;
        justify-content: space-between;
        align-items: center;
    }
    .sub-heading {
        font-size: 2rem;
        line-height: normal;
        color: #000;
        width: 85%;
        margin-bottom: 30px;
    }
    #why_chose .chose-point-box h4 {
        display: flex;
        font-size: 22px;
        align-items: center;
    }
    #why_chose .chose-right-point-minus {
        margin-left: -17%;
        width: 100%;
        background-color: #EAFFE6 !important;
        color: #000;
    }
    .faq-section .container {
        max-width: 800px;
        overflow: hidden;
    }
    .featured-beneifts .container {
        max-width: 95%;
    }
    .support {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .accordion {
        width: 100%;
        max-width: 600px;
        margin: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .contentn p {
        color: #676565;
        font-size: 18px;
    }
    .service-card-2 {
        margin-top: 30px;
        overflow: hidden;
        padding: 15px;
        text-align: center;
        position: relative;
        box-shadow: 0 0 45px rgba(0, 0, 0, .08);
        margin-top: 30px;
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 10px;
        height: 340px;
        background: #fff;
    }
    .secondary-heading {
        text-align: center;
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 30px;
        color: #000;
    }
    .quote {
        width: 90px;
        height: auto;
    }
    .carousel-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
        height: fit-content;
        margin-bottom: 50px;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
    }
    .carousel-indicators {
        position: absolute;
        left: 0;
        right: 0;
        bottom: -63px;
        z-index: 2;
        display: flex;
        justify-content: center;
        padding: 0;
        margin-right: 15%;
        margin-bottom: 1rem;
        margin-left: 15%;
        list-style: none;
    }
    .testimonial .secondary-heading {
        margin-bottom: 0;
    }
    .need_section {
        width: 100%;
        top: -20px;
        margin-top: -40px;
        position: relative;
    }
    .need_section .need_block {
        background: #FBE389;
        padding: 20px 20px;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 20px;
        color: var(--text-white);
        display: flex;
    }
    .request-btn {
        /* padding: 12px 67px; */
        background: #B04F08;
        color: #fff;
        font-size: 18px;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid transparent;
        width: 170px;
        padding: 10px;
    }
    .section_title p {
        width: 100%;
        font-size: 20px;
        color: #000;
    }
    .support-section {
        padding: 1.5rem 1rem 1.5rem;
        margin-top: -50px;
    }
    .support-section .row {
        padding: 60px 0;
        border-radius: 10px;
        background: #F5F9FF;
    }
    .counter-wrap h4 {
        font-size: 22px;
    }
    .customer-support-img-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-top: 25px;
    }
    .contentn p {
        color: #676565;
        font-size: 18px;
    }
    .feature-wrapper-section .illustration img {
        max-width: 45%;
        height: auto;
        position: absolute;
        left: 10px;
        top: -60px;
    }
    .feature-wrapper-section .text-block h3 {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 0px;
    }
    .feature-wrapper-section .text-block p {
        font-size: 18px;
        line-height: 25px;
    }
    .firts-feature {
        margin-top: 60px !important;
    }
    .feature-wrapper-section .feature-single-2 {
        margin-top: 120px;
    }
    .feature-wrapper-section .feature-single-2 {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-bottom: 0px;
        position: relative;
        margin-top: 100px;
    }
    .feature-wrapper-section .feature-single {
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        flex-wrap: wrap;
        margin-bottom: 80px;
        position: relative;
        margin-top: 80px;
    }
    .feature-wrapper-section .card p {
        font-size: 16px;
        flex-grow: 1;
        line-height: 25px;
    }
    #platform-content {
        font-size: 20px;
        color: #676565;
        font-weight: 400 !important;
    }
    .integration-logo {
        width: 100px;
    }
    .integration.mailchimp {
        position: relative;
        top: -43px;
        left: 85px;
    }
    .integration.salesforce {
        position: relative;
        left: 100px;
    }
    .integration.surveymonkey {
        position: relative;
        bottom: -30px;
        left: 100px;
    }
    .integration.hubspot-small {
        position: relative;
        bottom: -20px;
        left: -50px;
    }
    .integration.hubspot {
        position: relative;
        top: -43px;
        left: -85px;
    }
    .integration.paypal {
        position: relative;
        bottom: -30px;
        left: -80px;
    }
    .integration.unbounce {
        position: relative;
        bottom: -30px;
        left: 50px;
    }
    .integration.intercom {
        margin-left: 16px;
        margin-right: 16px;
        position: relative;
        left: -110px;
    }
    .form-heading {
        color: #000;
        letter-spacing: -.04em;
        margin-top: 0;
        margin-bottom: 0px;
        font-size: 30px;
        font-weight: 700;
        line-height: 1.1;
    }
}

@media (min-width: 1014px) and (max-width:1100px) {
    section {
        padding: 2.5rem 3rem;
        overflow: hidden !important;
    }
    .hero-title {
        font-size: 2.5rem;
        line-height: normal;
        color: #000;
    }
    .button-wrap {
        margin: 5px 0;
        width: 100%;
    }
    .key-highlight {
        display: inline-block;
        position: relative;
        color: #B04F08;
        font-size: 1.8rem;
        line-height: normal;
    }
    .contentn p {
        color: #676565;
        font-size: 18px;
    }
    .sub-heading {
        font-size: 2rem;
        line-height: normal;
        color: #000;
        width: 100%;
        margin-bottom: 30px;
    }
    #why_chose .chose-point-container {
        /* display: flex
    ; */
        /* display: grid
    ; */
        /* column-gap: 30px; */
        width: 100%;
    }
    #why_chose .chose-point-container .chose-one,
    #why_chose .chose-point-container .chose-two {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
    #why_chose .chose-right-point {
        margin-left: 17%;
        width: 100%;
        background-color: #EAFFE6 !important;
        color: #000;
    }
    #why_chose .chose-right-point-minus {
        margin-left: -17%;
        width: 100%;
        background-color: #EAFFE6 !important;
        color: #000;
    }
    #why_chose .chose-container {
        display: grid;
        grid-template-columns: 35% 30% 35%;
        justify-content: space-between;
        align-items: center;
    }
    .sub-heading {
        font-size: 2rem;
        line-height: normal;
        color: #000;
        width: 85%;
        margin-bottom: 30px;
    }
    #why_chose .chose-point-box h4 {
        display: flex;
        font-size: 22px;
        align-items: center;
    }
    .featured-beneifts .container {
        max-width: 95%;
    }
    .support {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .accordion {
        width: 100%;
        max-width: 600px;
        margin: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .service-card-2 {
        margin-top: 30px;
        overflow: hidden;
        padding: 15px;
        text-align: center;
        position: relative;
        box-shadow: 0 0 45px rgba(0, 0, 0, .08);
        margin-top: 30px;
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 10px;
        height: 100%;
        background: #fff;
    }
    .secondary-heading {
        text-align: center;
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 30px;
        color: #000;
    }
    .quote {
        width: 90px;
        height: auto;
    }
    .carousel-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
        height: fit-content;
        margin-bottom: 50px;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
    }
    .carousel-indicators {
        position: absolute;
        left: -150px;
        right: 200px;
        bottom: -120px;
        z-index: 2;
        display: flex;
        justify-content: center;
        padding: 0;
        margin-right: 15%;
        margin-bottom: 1rem;
        margin-left: 15%;
        list-style: none;
    }
    .testimonial .secondary-heading {
        margin-bottom: 0;
    }
    .need_section {
        width: 100%;
        top: -20px;
        margin-top: -40px;
        position: relative;
    }
    .need_section .need_block {
        background: #FBE389;
        padding: 20px 20px;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 20px;
        color: var(--text-white);
        display: flex;
    }
    .request-btn {
        /* padding: 12px 67px; */
        background: #B04F08;
        color: #fff;
        font-size: 18px;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid transparent;
        width: 170px;
        padding: 10px;
    }
    .section_title p {
        width: 100%;
        font-size: 20px;
        color: #000;
    }
    .support-section {
        padding: 1.5rem 1rem 1.5rem;
        margin-top: -50px;
    }
    .support-section .row {
        padding: 60px 0;
        border-radius: 10px;
        background: #F5F9FF;
    }
    .counter-wrap h4 {
        font-size: 18px;
    }
    .customer-support-img-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-top: 25px;
    }
    .feature-wrapper-section .feature-single-2 .illustration img {
        max-width: 45%;
        height: auto;
        position: absolute;
        left: auto;
        right: -15px;
        top: -115px;
    }
    .firts-feature {
        margin-top: 130px !important;
    }
    #platform-content {
        font-size: 20px;
        color: #676565;
        font-weight: 400 !important;
    }
    .integration-logo {
        width: 100px;
    }
    .integration.mailchimp {
        position: relative;
        top: -43px;
        left: 85px;
    }
    .integration.salesforce {
        position: relative;
        left: 100px;
    }
    .integration.surveymonkey {
        position: relative;
        bottom: -30px;
        left: 100px;
    }
    .integration.hubspot-small {
        position: relative;
        bottom: -20px;
        left: -50px;
    }
    .integration.hubspot {
        position: relative;
        top: -43px;
        left: -85px;
    }
    .integration.paypal {
        position: relative;
        bottom: -30px;
        left: -80px;
    }
    .integration.unbounce {
        position: relative;
        bottom: -30px;
        left: 50px;
    }
    .integration.intercom {
        margin-left: 16px;
        margin-right: 16px;
        position: relative;
        left: -110px;
    }
    .form-heading {
        color: #000;
        letter-spacing: -.04em;
        margin-top: 0;
        margin-bottom: 0px;
        font-size: 30px;
        font-weight: 700;
        line-height: 1.1;
    }
    .service .sub-heading {
        margin-bottom: 10px;
    }
}

@media (min-width: 1101px) and (max-width:1300px) {
    section {
        padding: 3rem 4rem;
        overflow: hidden !important;
    }
    .hero-title {
        font-size: 2.5rem;
        line-height: normal;
        color: #000;
    }
    .button-wrap {
        margin: 5px 0;
        width: 100%;
    }
    .key-highlight {
        display: inline-block;
        position: relative;
        color: #B04F08;
        font-size: 1.8rem;
        line-height: normal;
    }
    .contentn p {
        color: #676565;
        font-size: 18px;
    }
    .sub-heading {
        font-size: 2rem;
        line-height: normal;
        color: #000;
        width: 75%;
        margin-bottom: 30px;
    }
    #why_chose .chose-point-container {
        /* display: flex
    ; */
        /* display: grid
    ; */
        /* column-gap: 30px; */
        width: 90%;
    }
    #why_chose .chose-point-container .chose-one,
    #why_chose .chose-point-container .chose-two {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
    #why_chose .chose-right-point {
        margin-left: 30%;
        width: 90%;
        background-color: #EAFFE6 !important;
        color: #000;
    }
    #why_chose .chose-container {
        display: grid;
        grid-template-columns: 35% 30% 35%;
        justify-content: space-between;
        align-items: center;
    }
    #why_chose .chose-right-point-minus {
        margin-left: -20%;
        width: 90%;
        background-color: #EAFFE6 !important;
        color: #000;
    }
    .faq-section .container {
        max-width: 800px;
        overflow: hidden;
    }
    .accordion {
        width: 100%;
        max-width: 600px;
        margin: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .support {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    #why_chose .chose-point-box h4 {
        display: flex;
        font-size: 22px;
        align-items: center;
    }
    #why_chose .chose-text p {
        color: #676565;
        text-align: center;
        margin-top: 30px;
        padding: 0px 10px;
    }
    .service-card-2 {
        margin-top: 30px;
        overflow: hidden;
        padding: 15px;
        text-align: center;
        position: relative;
        box-shadow: 0 0 45px rgba(0, 0, 0, .08);
        margin-top: 30px;
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 10px;
        height: 100%;
        background: #fff;
    }
    .secondary-heading {
        text-align: center;
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 30px;
        color: #000;
    }
    .quote {
        width: 90px;
        height: auto;
    }
    .carousel-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
        height: 390px;
        margin-bottom: 50px;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
    }
    .carousel-indicators {
        position: absolute;
        left: -150px;
        right: 200px;
        bottom: -50px;
        z-index: 2;
        display: flex;
        justify-content: center;
        padding: 0;
        margin-right: 15%;
        margin-bottom: 1rem;
        margin-left: 15%;
        list-style: none;
    }
    .testimonial .secondary-heading {
        margin-bottom: 0;
    }
    .need_section {
        width: 100%;
        top: -100px;
        margin-top: -40px;
        position: relative;
    }
    .need_section .need_block {
        background: #FBE389;
        padding: 20px 20px;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 20px;
        color: var(--text-white);
        display: flex;
    }
    .request-btn {
        /* padding: 12px 67px; */
        background: #B04F08;
        color: #fff;
        font-size: 18px;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid transparent;
        width: 170px;
        padding: 10px;
    }
    .section_title p {
        width: 100%;
        font-size: 20px;
        color: #000;
    }
    .support-section {
        padding: 1.5rem 1rem 1.5rem;
        margin-top: -50px;
    }
    .support-section .row {
        padding: 60px 0;
        border-radius: 10px;
        background: #F5F9FF;
    }
    .counter-wrap h4 {
        font-size: 22px;
    }
    .customer-support-img-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 80%;
        margin-top: 25px;
    }
    .service .sub-heading {
        margin-bottom: 10px;
    }
    .feature-wrapper-section .feature-single-2 .illustration img {
        max-width: 45%;
        height: auto;
        position: absolute;
        left: auto;
        right: -20px;
        top: -115px;