/* Fonts css start */
@font-face {
    font-family: 'openSans-bold';
    src: url('../fonts/open-sans/OpenSans-Bold.woff2') format('woff2'), url('../fonts/open-sans/OpenSans-Bold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'openSans-light';
    src: url('../fonts/open-sans/OpenSans-Light.woff2') format('woff2'), url('../fonts/open-sans/OpenSans-Light.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'openSans-light-italic';
    src: url('../fonts/open-sans/OpenSans-LightItalic.woff2') format('woff2'), url('../fonts/open-sans/OpenSans-LightItalic.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'openSans-regular';
    src: url('../fonts/open-sans/OpenSans-Regular.woff2') format('woff2'), url('../fonts/open-sans/OpenSans-Regular.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'openSans-medium';
    src: url('../fonts/open-sans/OpenSans-Medium.woff2') format('woff2'), url('../fonts/open-sans/OpenSans-Medium.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'openSans-regular-italic';
    src: url('../fonts/open-sans/OpenSans-Italic.woff2') format('woff2'), url('../fonts/open-sans/OpenSans-Italic.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'openSans-semi-bold';
    src: url('../fonts/open-sans/OpenSans-SemiBold.woff2') format('woff2'), url('../fonts/open-sans/OpenSans-SemiBold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'openSans-extra-bold';
    src: url('../fonts/open-sans/OpenSans-ExtraBold.woff2') format('woff2'), url('../fonts/open-sans/OpenSans-ExtraBold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../fonts/Montserrat/Montserrat-Bold.woff2') format('woff2'), url('../fonts/Montserrat/Montserrat-Bold.ttf') format('woff');
    font-display: swap;
}


@font-face {
    font-family: 'Montserrat-Black';
    src: url('../fonts/Montserrat/Montserrat-Black.woff2') format('woff2'),url('../fonts/Montserrat/Montserrat-Black.woff') format('woff');
    font-display: swap;
}


@font-face {
    font-family: ''Montserrat-Medium'';
    src: url('../fonts/Montserrat/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat/Montserrat-Medium.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'PlusJakartaSans-Regular';
    src: url('../fonts/PlusJakartaSans/PlusJakartaSans-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Plus-Jakarta-Sans';
    src: url('../fonts/PlusJakartaSans/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* Adjust according to the available weight range */
    font-display: swap;
}
.fs-12{
    font-size:12px;
}
.fs-16 {
    font-size: 16px;
}
.w-55 {
    width: 55%;
}

.w-40 {
    width: 40%;
}

.w-48 {
    width: 48%;
}
.mt-24{
    margin-top:24px;
}
.mt-20{
    margin-top:20px;
}

/* Fonts css end */

:root {
    --text-violet: #781793;
    --text-black: #0A1425;
    --text-grey: #5A6781;
    --text-white: #FFFFFF;
    --fs-32: 32px;
    --fs-28: 28px;
    --fs-24: 24px;
    --fs-22: 22px;
    --fs-20: 20px;
    --fs-16: 16px;
    --fs-14: 14px;
    --fs-12: 12px;
}

.new-div {
    position: sticky !important;
    top: 80px !important;
}
.main-card:hover img {
    filter: brightness(0) saturate(100%) invert(100%) !important;
}


.slide-detail.active img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(35%) saturate(6527%) hue-rotate(278deg) brightness(88%) contrast(101%)
    !important;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.typed-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    /*    border-right: 2px solid black;*/
    animation: typing 3s steps(30) 1s forwards, blink 0.75s step-end infinite;
    overflow-wrap: break-word;
}
.nav-link:hover {
    color: #781793 !important; /* Active link color */
}


.nav-link.active {
    color: #781793 !important; /* Active link color */
}

.lead-generation-popup .modal-content .lead-generation-form .lead-popup-form .contact-field-row.mb-0 {
    margin-bottom: 0 !important;
}



html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}
.contact-us-btn:hover {
    color: white ;
}
.login-btn:hover {
    color: #781793;
}
.only-phone-num {
    display: flex;
    justify-content: center;
    background: white;
    font-size: 16px;
    line-height: 24px;
    font-family: 'openSans-regular';
    font-weight: 600;
    color: #5A6781;
    border-bottom: 1px solid #E6E6E6;
    padding: 8px 0px;
}

.opn {
    max-width: 1150px;
    width: 100%;
}
/* Scrollbar Track */
::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
    height: 5px;
}

/* Scrollbar Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background-color: #781793; /* Custom color */

    border-radius: 50px;
}

/* Scrollbar Track Background */
::-webkit-scrollbar-track {
    background-color: #F6EDF8; /* Color of the track */
    border-radius: 5px;
}

/* Optional: Thumb hover effect */
::-webkit-scrollbar-thumb:hover {
    background-color: #5a1073; /* Darker shade when hovered */
}

.quick-contact-form .camp-fields-wrapper .tvd-angular-field.focused input:not([type=checkbox]):not([type=range]):not([type=radio]):not([type=submit]):not([type=button]):not([type=file]) {
    border-color: #781793;
    color: #303030 !important;
}
.btnCampSubmit {
    background: #781793;
    border:none;
}

.quick-contact-form .camp-fields-wrapper .tvd-angular-field input:not([type=checkbox]):not([type=range]):not([type=radio]):not([type=submit]):not([type=button]):not([type=file]) ~ label{
    color:#AAAAAA !important;
}
.quick-contact-form .camp-fields-wrapper .tvd-angular-field.mob-number label {
    position: absolute;
    font-family: 'openSans-regular';
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #aaaaaa;
    top: -6px;
    transform: translate(20px, 1.6rem);
}
.quick-contact-form .tvd-angular-field input:not([type=checkbox]):not([type=range]):not([type=radio]):not([type=submit]):not([type=button]):not([type=file]) ~ label, .tvd-angular-field textarea ~ label {
    top: 10px;
    left: 0;
    margin: 0;
    font-family: openSans-regular;
}

.quick-contact-form .contact-field.focused input ~ label, .tabs-content-main .contact-field.focused textarea ~ label {
    transform: translate(2px, -2px) scale(1) !important;
    padding: 0 5px;
    border-radius: 50px;
}

.quick-contact-form .tvd-angular-field.mob-number.focused label {
    transform: translate(-21px, -18px) scale(1) !important;
    font-size: 12px;
    padding: 0 5px;
    border-radius: 50px;
}

h2.home-head2.namaste-title {
    color: #0A1425 !important;
  
}


.quick-contact-form .camp-fields-wrapper .tvd-angular-field input:not([type=checkbox]):not([type=range]):not([type=radio]):not([type=submit]):not([type=button]):not([type=file]) ~ label {
      color: #AAAAAA;
   }

.quick-contact-form .camp-fields-wrapper .tvd-angular-field.mob-number label {
   
    color: #AAAAAA;
    
}

.quick-contact-form .camp-fields-wrapper .tvd-angular-field input:not([type=checkbox]):not([type=range]):not([type=radio]):not([type=submit]):not([type=button]):not([type=file]) {
    color: #aaaaaa !important;
}

p.only-business-id {
    color: #AAAAAA !important;
}

.gint-contact-field-row {
    width: 14% !important;
    margin-top: 5px;
}

.gint-cc-message.top {
    top: 30px !important;
    left: 0px;
}



span.cc-label {
    color: #303030;
}



.thankyou-work p.head {
    color: #0A1425;
}

.will-repond-shortly {
    font-size: 13px !important;
    color: #303030 !important;
    font-family: 'openSans-regular';
    margin-top: 8px;
}

.check-gif{
height:60px !important;
width:60px !important;
display:block;
}


/* Ankita Ma'am*/
/* Section Styling */
.business-section {
    background: linear-gradient(0deg, #F5ECF7 0%, #FFFFFF 96.31%);
    padding: 30px 20px;
    text-align: center;
    z-index: 1;
    position: relative;
}

    .business-section .title {
        font-size: 20px;
        margin-bottom: 24px;
        color: rgba(90, 103, 129, 1);
        line-height: 28px;
        font-weight: 600;
        font-family: 'openSans-semi-bold';
    }

}

.business-section .title-2 {
    font-size: 38px;
    line-height: 50px;
    font-weight: 600;
    color: #0A1425;
    font-family: openSans-regular;
    padding: 0 40px;
    margin-bottom: 35px;
}

.business-section .highlight {
    color: #3D074B; /* Purple highlight color */
}




/* Logos Grid */
.business-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.logo-card {
    width: 144px;
    padding: 18px 22px 13px;
    background-color: #FFFFFF;
    border-radius: 8px;
    text-align: center;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}



    .logo-card img {
        height: auto;
        margin-bottom: 10px;
    }

    .logo-card p {
        font-size: 14px;
        color: #383838;
        margin: 0;
        line-height: 19px;
        font-weight: 600;
        font-family: 'openSans-bold';
    }

/* About Section Styling */
.about-section {
    background: linear-gradient(180deg, #F5EBF7 0%, #FFFFFF 100%);
    padding: 30px 20px;
    text-align: center;
    padding-bottom: 34px;
}


.overview-badge {
    display: inline-block;
    padding: 8px 24px;
    background-color: #CDC4F5; /* Light purple */
    color: #0A1425; /* Dark purple */
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

.title {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 50px;
    font-family: openSans-bold;
    color: #0A1425;
}

.description {
    font-size: 24px;
    color: #595160;
    line-height: 36px;
    margin-bottom: 40px;
    font-weight: 600;
    font-family: 'openSans-semi-bold';
    padding: 0 43px;
    letter-spacing: 1px;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 65px;
}

.stat {
/*    flex: 1;*/
    text-align: center;
}

    .stat h3 {
        font-size: 64px;
        color: #781793;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 30px;
        font-family: 'openSans-bold';
        text-align: center;
    }

    .stat p {
        font-size: 14px;
        color: #4F3E5E;
        /*        width:fit-content;*/
        text-align: center;
    }

/* Divider between stats */
.divider {
    width: 2px;
    height: 90px;
    background: linear-gradient(180deg, rgba(120, 23, 147, 0) 0%, #781793 44.5%, rgba(120, 23, 147, 0) 100%);
}


/* new-logo-section */
.logo-card.new {
    width: 134px;
    height: 144px;
    border: 1px solid #E0E0E0;
}

.business-section .container {
    width: 100%;
    max-width: 1206px;
}

.business-logos.new {
    gap: 15px;
}


    .business-logos.new.second {
        margin-top: 32px;
    }


/*Ankita Ma'am*/

.header-section {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-section-main {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    border-bottom: 1px solid #091F431A;
}

.navbar-custom {
    max-width: 1200px;
    margin: 0 auto; /* Center the navbar */
    padding: 8px 0px !important;
}

.nav-link {
    font-size: var(--fs-16) !important;
    line-height: 24px !important;
    font-weight: 600 !important;
    color: var(--text-grey) !important;
}

.navbar-buttons {
    gap: 12px;
}

    .navbar-buttons a {
        text-decoration: none;
        font-size: 16px;
        line-height: 24px;
        font-weight: 600;
    }

.contact-us-btn {
    background-color: #781793;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
}

.login-btn {
    color: #781793;
    padding: 12px 16px;
}

.f-links {
    gap: 32px;
}
.req-des-hwk {
    font-size: 14px;
    font-weight: 400;
    color: #303030;
    line-height: 20px;
}
.header-section-banners {
    background: url(../images/banner-ellipse.png), linear-gradient(180deg, #F0E6F2 0%, #FFFFFF 100%);
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.header-section-banners-text {
    font-family: openSans-regular;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 1;
}

.header-section-banners-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-color: rgba(255, 255, 255, 0); /* Fully transparent */
    max-width: 1200px;
    width: 100%;
}
.z-index-top{
    z-index:99;
}
.lead-generation-popup .modal-content .lead-generation-form {
    background-attachment: inherit;
    background-position: bottom right;
}

@media (min-width: 1100px) {
    .header-section-banners-img img {
        margin-top: -173px;
/*        margin-bottom: -200px;*/
    }
}

.common-sub-title {
    font-family: openSans-regular;
    color: var(--text-black);
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
/*    margin-top: 60px;*/
    padding: 8px 24px;
    background: #CDC4F5;
    border-radius: 800px;
    margin-bottom:12px;
}

.header-sec-main-title {
    font-family: openSans-regular;
    font-size: 44px;
    line-height: 55px;
    font-weight: 700;
    color: var(--text-black);
    max-width: 900px;
    margin: 20px 0px;
    text-align: center;
    height:121px;
}

    .header-sec-main-title span {
        color: var(--text-violet)
    }

.header-sec-sub-title {
    font-family: openSans-regular;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #5A6781;
}


.common-main-heading {
    font-family: openSans-regular;
    font-size: 38px;
    line-height: 50px;
    font-weight: 700;
    color: var(--text-black);
    text-align: center;
    margin-bottom: 24px;
    font-family: 'openSans-regular';
}


.partner-us {
    background-image: url('../images/call.png');
    /*    width: 100vw;*/
    /*    height:auto;*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.partner-us-head {
    font-size: 38px;
    line-height: 54px;
    font-weight: 700;
    color: #FFFFFF;
    max-width: 1100px;
    font-family: 'openSans-regular';
}

#about-section .container {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-us-btn {
    background-color: #781793;
    text-decoration: none;
/*    padding: 16px 32px;*/
    display: inline-block;
    margin-top: 35px;
    border-radius: 8px;
}

    .partner-us-btn a {
        font-family: openSans-regular;
        color: white;
        text-decoration: none;
        font-weight: 600;
        padding:16px 32px;
        height:56px;
    }

.parter-us-sub {
    padding: 30px 0px;
}

#how-it-works {
    width: 100%;
    display: flex;
    justify-content: center;
    padding:30px 0;
    padding-bottom:10px;
}

.how-it-work-section {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .how-it-work-section .common-main-heading {
        /*    max-width:888px;*/
        text-align: center;
    }


#key-features {
    width: 100%;
    display: flex;
    justify-content: center;
/*    background: #F5EBF7;*/
    padding: 30px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5EBF7 100%);
}

.key-features-section {
    max-width: 1240px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tabs-box {
    width: 100%;
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid #E6E6E6;
    margin: 35px 0px;
}

.nav-tab-container {
    max-width: 1240px;
    width: 100%;
}

.content-box {
    width: 100%;
}

.content-main {
    display: none;
    justify-content: center;
    max-width: 1200px;
    box-shadow: 0px 0px 10px #091F431A;
    align-items: center;
    gap: 30px;
    border-radius: 15px;
    background: #fff;
    padding-bottom: 20px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}


.content-main.active {
    display: flex; /* Show only the active content */
}

.content-main-left-heading {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #0A1425;
    margin: 30px 0px 20px 0px;
    font-family:openSans-regular;
}

.content-main-left-cards-row {
    display: flex;
    margin-bottom: 12px;
    gap: 12px;
}

.content-main-left-cards-row-cards {
    border: 1px solid #DFC7E8;
    width: 232px;
    height: 124px;
/*    padding: 12px;*/
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    justify-content: center;
    gap: 10px;
}
.content-main-left-cards-row-cards p {
    font-size: 14px;
    font-weight: 400;
    font-family: 'openSans-regular';
    color: #5A6781;
    line-height: 21px;
    letter-spacing:1px;
}

.tabs-btn {
    color: #735A81;
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    padding: 10px 20px;
    cursor:pointer;
    font-family:openSans-regular;
}


    .tabs-btn.active {
        color: #781793;
        border-bottom: 3px solid #781793;
    }

@media (max-width: 1023px) {
    .content-main.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .content-main-left-heading {
        text-align: center;
    }
}

img.slide-img {
    height: 44px;
    width: 44px;
    margin: 26px 0 26px 30px;
}

.key-features-section .common-main-heading {
    /*    padding: 31px 0px;
    margin-top: 12px;*/
    padding: 0 208px;
}

.hiw-img {
/*    margin-top: 35px;*/
}


/*why hawkeye*/
.why-hawkeye-section .common-main-heading {
    /*    margin-top: 14px;*/
    margin-bottom: 30px;
    padding: 0 32px;
}

#why-hawkeye {
    background-image: url('../images/Values.png');
    background-repeat: repeat-y;
    padding: 30px 0px;
    /*    background-size: cover;*/
    display: flex;
    justify-content: center;
    background-position: center top;
    padding-bottom:31px;
}

.gint-captcha-space{
    padding:0 !important;
}

#why-hawkeye .why-hawkeye-section {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

span.roi-num {
    font-size: 36px;
    line-height: 32px;
    font-weight: 600;
    color: #01132E;
    font-family: 'openSans-regular';
}

span.roi-percent {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #66D36D;
    font-family: 'openSans-regular';
}

/*why haw ends*/
/*roi section*/

.roi-section .container {
    width: 100%;
    max-width: 1206px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0px;
}

.roi-section-heading {
    font-size: 52px;
    line-height: 76px;
    font-weight: 600;
    color: #0A1425;
    text-align: center;
    padding: 21px;
    font-family: openSans-regular;
    letter-spacing:1px;
}

.roi-sec-cards {
    border: 1px solid;
    padding: 30px 30px 30px 30px;
    /* width: 494px; */
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    width: 50%;
}
.req-img{
    margin-left:6px;
}

.small-title {
    font-size: 38px;
    line-height: 50px;
    font-weight: 700;
    color: #01132E;
     margin-bottom: 8px; 
    font-family: 'openSans-bold';
}

.roi-card-p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #5A6781;
    letter-spacing: 1px;
}

.span.roi-num {
    font-size: 36px;
    line-height: 32px;
    font-weight: 600;
    color: #01132E;
}

.span.roi-percent {
    color: #66D36D;
}

.roi-sec-card {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 1000px;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 30px;
}


/*roi section ends*/

/*exp partner*/

.cards-section .container {
    max-width: 1200px;
    width: 100%;
}

.common-sub-para {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #5A6781;
    font-family: openSans-regular;
    text-align: center;
/*    margin-top: 20px;*/
    margin-bottom: 24px;
}

/*exp partner ends*/

/*card section starts*/

.cards-section {
    padding: 30px 0px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5EBF7 100%);
}

    .cards-section .container {
        max-width: 1200px;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding:0;
    }

.f-stars {
    gap: 24px;
    display: flex;
}

.main-card-div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px 30px;
}

    .main-card-div .main-card {
        max-width: 380px;
        height: 256px;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0px 8px 40px -5px #091F431A;
        background: #fff;
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        &:hover

{
    background: #781793;
    .title

{
    color: white;
}

.para {
    color: #fff;
}

}
}



.main-card .title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #0A1425;
    font-family: 'openSans-regular';
    margin-top: 20px;
    margin-bottom: 8px;
}

.main-card .para {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #5A6781;
    font-family: 'openSans-regular';
}


/*testimonial section*/
.test-section {
    background: #F6EDF8;
    padding: 30px 0px;
}

    .test-section .container {
        max-width: 1200px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .test-section .common-sub-title {
        margin-top: 0px;
    }

.testi-card {
    background: #fff;
    box-shadow: 0px 8px 40px -5px #091F431A; /* 0.1 for 10% opacity */
    border-radius: 15px;
    padding: 30px;
    width: 50%;
}

.testi-cars {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 0 24px;
}

.test-profile {
    display: flex;
}

.clt-name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #0A1425;
}

.clt-com {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #5A6781;
}

.test-stars {
    margin: 12px 0px;
}

.test-review {
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
    color: #0A1425;
    margin-bottom: 8px;
}

.test-review-p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #5A6781;
    font-family: 'openSans-regular';
}


/*testimonial ends*/
.f-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .f-list a {
        color: #5A6781;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        font-family: 'openSans-regular';
    }
/*faq starts*/
.faq-section {
    background: linear-gradient(180deg, #F6EDF8 0%, #FFFFFF 100%);
    padding: 60px 0px;
}

    .faq-section .container {
        max-width: 1200px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


/*faq acc*/
.faq-acc {
    padding: 0px 30px;
    width: 100%;
}

.faq-acc-item {
    border-bottom: 1px solid #CCD0D8;
}

.faq-acc-header {
    padding: 20px 0px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    line-height: 40px;
    font-weight: 600;
    color: #0A1425;
}


    .faq-acc-header::after {
        content: "+";
        float: right;
        font-weight: bold;
        font-size: 24px;
        transition: transform 0.3s;
    }

    .faq-acc-header.active::after {
        content: "-";
    }

.faq-acc-content {
    display: none; /* Hidden by default */
}

    .faq-acc-content p {
        margin: 0;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        color: #5A6781;
        font-family: openSans-regular;
        margin-bottom: 15px;
    }


/*faq ends*/

.slide-detail {
    display: flex;
    border-bottom: 1px solid #DCDCDC;
    align-items: center;
    gap: 16px;
    margin-right: 56px;
    cursor: pointer;
}


/*.vertical-slide {
    width: 45%;
}

.horizontal-slide {
    width: 55%;
}*/

.right-a1 {
    top: 61%;
    left: 25%;
    /* height: 20px; */
    /* width: 20px; */
    z-index: -1;
}

.right-a2 {
    top: 61%;
    left: 42%;
    z-index: -1;
}

.right-a3 {
    top: 61%;
    left: 58%;
    z-index: -1;
}

.right-a1 img {
    height: 100%;
    width: 50px;
}

.right-a2 img {
    height: 100%;
    width: 50px;
}

.right-a3 img {
    height: 100%;
    width: 50px;
}
.right-a1-loading img, .right-a2-loading img {
    height: 50px;
    width: 100%;
}

.right-a1-loading {
    top: 47%;
    left: -3%;
}

.right-a2-loading {
    top: 47%;
    /* right: 10%; */
    left: 77%;
}

.new-div {
    position: sticky !important;
    top: 80px !important;
}

.hawkeye-slider {
    /*    display: flex;*/
    max-width: 1200px;
    width: 100%;
}

.slide-paras {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #6C626F;
    font-family: 'openSans-regular';
    /* padding: 16px 47px 16px 0; */
/*    max-width: 334px;*/
}

.hor-slide-p1 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #0A1425;
    font-family: 'openSans-regular';
    /* width: 546px; */
    letter-spacing: 1px;
}

.hor-slide-p2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #4D5462;
    font-family: 'openSans-regular';
    /* width: 546px; */
    letter-spacing:1px;
}

.hor-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: self-start;
    gap: 20px;
    margin: 40px 0;
}

/* Default slide style */
.slide-detail {
    /*    transition: border 0.1s ease, color 0.1s ease;*/
}

    /*.slide-detail.active {
        border-left: 4px solid #781793;
        padding-left: 12px;*/ /* Adjust for alignment */
    /*}*/

        /* Style the paragraph within the active slide */
        .slide-detail.active .slide-paras {
            color: #781793;
        }

.bsn {
    /*    background-image: url('../images/optimize.png');*/
    background: linear-gradient(180.53deg, #F5EBF7 0.46%, #FFFFFF 89.78%);
}

.slide-detail.active {
    position: relative; /* Make sure the parent div is positioned */
}

    .slide-detail.active:before {
        content: ''; /* Add the content for the pseudo-element */
        position: absolute; /* Absolutely position the pseudo-element */
        left: 0; /* Align the border to the left of the parent element */
        top: 0; /* Align the border to the top */
        height: 100%; /* Make the pseudo-element the same height as the parent */
        border-left: 4px solid #781793; /* Left border style */
        padding-left: 12px; /* You can adjust this padding as needed */
    }


/*footer section begins*/
.haw-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 30px 20px;
}

    .haw-footer .container-footer {
        max-width: 1200px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }

.container-footer > div {
    max-width: 380px;
    width: 100%;
}


.container-footer .left-div .f-para-left {
    font-family: openSans-regular;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #5A6781;
    margin: 20px 0px;
    letter-spacing: 1px;
}

.mid-div .md-title {
    font-size: 24px;
    line-height: 40px;
    font-weight: 600;
    color: #0A1425;
    font-family: openSans-regular;
    margin-bottom: 20px;
}

.f-list p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #5A6781;
    font-family: openSans-regular;
}

.container-footer .right-div {
    padding: 30px;
/*    gap: 20px;*/
    background: #E5DAF2;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-height: 196px;
    justify-content: center;
}

.f-getintouch {
    font-size: 24px;
    line-height: 40px;
    font-weight: 600;
    color: #0A1425;
    font-family: openSans-regular;
}


.lead-generation-popup .lead-generation-form .contact-field-row .contact-field.mob-number label {
    position: absolute;
    top: -6px !important;
    left: 90px;
    font-size: 16px !important;
}
.fpsg {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #0A1425;
    font-family: openSans-regular;
/*    margin-top: 20px;
    margin-bottom: 24px;*/
    display: flex;
    align-items: center;
    cursor: pointer;
}

.fpsg a {
    color: #0A1425;
}

.fpsg img{
    display:flex;
    margin-right:8px;
}


.copyrights {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #5A6781;
    font-family: openSans-regular;
    text-align: center;
    background: #F6EDF8;
    border: 1px solid #DFC7E8;
    border-radius: 5px;
    padding: 4px 5px;
}

.ccc {
    display: flex;
    justify-content: center;
    padding: 0 16px 40px 16px;
}
/*footer ends*/
.bsn h2.title-2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
    font-family: 'openSans-regular';
    margin-bottom: 35px;
    color: #0A1425;
}

/*1st animations*/

/*.loop-div {
    max-width: 1164px;
    height: 144px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.ld {
    position: absolute;
    left: max(calc(144px * 5), 100%);
    animation-name: scrollLeft;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes scrollLeft {
    to {
        left: -144px;
    }
}

.ld1 {
    animation-delay: calc(15s / 5 * (5 - 1) * -1);
}

.ld2 {
    animation-delay: calc(15s / 5 * (5 - 2) * -1);
}

.ld3 {
    animation-delay: calc(15s / 5 * (5 - 3) * -1);
}

.ld4 {
    animation-delay: calc(15s / 5 * (5 - 4) * -1);
}

.ld5 {
    animation-delay: calc(15s / 5* (5 - 5) * -1);
}

*/

.roi-num {
    font-family: 'openSans-bold';
    font-size: 38px;
    line-height: 50px;

}

.roi-num-w{
    width:206px;
}
.roi-num-m{
    margin-right:10px;
}

.roi-card-pp.d-flex {
    align-items: center;
}

/*second business section animation*/

.loop-div-right {
    position: relative;
    height: 144px;
    overflow: hidden;
    /*    border-radius: 20px;
    border-left: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;*/
    margin-bottom: 32px;
}

.l-right {
    position: absolute;
    right: max(calc(134px * 8), 100%);
    animation-name: scroll2Right;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.slick-dots li button {
    background: #781793;
}

.loop-div-left {
    position: relative;
    height: 144px;
    max-width: 1276px;
    overflow: hidden;
    margin-bottom: 32px;
    /*    border-radius: 20px;
    border-left: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;*/
}

.l-left {
    position: absolute;
    left: max(calc(134px * 8), 100%);
    animation-name: scroll2Left;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes scroll2Left {
    to {
        left: -134px;
    }
}

@keyframes scroll2Right {
    to {
        right: -134px;
    }
}

.s-loop1 {
    animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.s-loop2 {
    animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.s-loop3 {
    animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.s-loop4 {
    animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.s-loop5 {
    animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.s-loop6 {
    animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.s-loop7 {
    animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.s-loop8 {
    animation-delay: calc(30s / 8 * (8 - 8) * -1);
}


/*delete animation*/

/* Container with the background animation */
.header-section-banners {
    background: url(../images/banner-ellipse.png), linear-gradient(180deg, #F0E6F2 0%, #FFFFFF 100%);
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    flex-direction: column;
    /* Animation applied to the background */
    animation: fadeInFromTop 0.5s ease-out forwards;
    padding-top:60px;
}

/* Animation for the inner image */
.header-section-banners-img img {
    opacity: 0; /* Start fully transparent */
    transform: translateY(50px); /* Start 50px below */
    animation: fadeInFromBottom 0.5s ease-out forwards;
    animation-delay: 0.5s;
}

/* Keyframe for fading in the background from the top */
@keyframes fadeInFromTop {
    from {
        background-position: center -50px; /* Move 50px above */
        opacity: 1;
    }

    to {
        background-position: center top;
        opacity: 1;
    }
}

/* Keyframe for fading in the image from the bottom */
@keyframes fadeInFromBottom {
    from {
        transform: translateY(50px); /* Move from below */
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/*delete animation  */

.navbar-toggler {
    border: none;
    outline: none;
    padding: 0;
}

    .navbar-toggler:focus,
    .navbar-toggler:active {
        outline: none; /* Remove the default outline */
        box-shadow: none; /* Remove any box shadow */
    }

.mobbgg {
    display: none;
}

.hiw-mob {
    display: none;
}

span.custom-toggler-icon {
    display: flex;
    align-items: center;
}

a.profile-icon {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    width:180px;
    padding:13px 0;
}

.content-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;

}

.loop-divv {
    display: flex;
    justify-content: center;
    gap: 60px;
}


/************************ Input File ************************/

/********** Angular field start **********/


/**/
.tvd-angular-field {
    margin-bottom: 15px;
    position: relative;
    padding-top: 10px;
}

    .tvd-angular-field input:not([type="checkbox"]):not([type="range"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="file"]),
    .tvd-angular-field textarea {
        outline: none !important;
        font-size: 16px;
        background: transparent !important;
        text-overflow: ellipsis;
        font-weight: 600;
        border: 0;
        border-bottom: 1px solid #ccc;
        -webkit-appearance: none;
        -moz-appearance: none;
        border-radius: 0;
        padding: 0 0 4px 0;
        margin-top: 4px;
        -webkit-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s;
        box-shadow: none !important;
        height: auto;
    }

        .tvd-angular-field input:not([type="checkbox"]):not([type="range"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="file"]) ~ label,
        .tvd-angular-field textarea ~ label {
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
            -webkit-transform-origin: left bottom;
            -ms-transform-origin: left bottom;
            transform-origin: left bottom;
            -webkit-transform: translate(0, 1.4rem) scale(1);
            -ms-transform: translate(0, 1.4rem) scale(1);
            transform: translate(0, 1.4rem) scale(1);
            -moz-transform: translate(0, 1.4rem) scale(1);
            -o-transform: translate(0, 1.4rem) scale(1);
            pointer-events: none;
            margin-left: 7px;
            font-size: 16px;
            color: #AAAAAA;
            transition: all 0.2s;
            -webkit-transition: all 0.2s;
            -moz-transition: all 0.2s;
            -ms-transition: all 0.2s;
            -o-transition: all 0.2s;
            position: absolute;
            top: 0;
            line-height: 1;
        }

    .tvd-angular-field.focused input:not([type="checkbox"]):not([type="range"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="file"]) ~ label,
    .tvd-angular-field.focused textarea ~ label {
        transform: translate(0, 0) scale(1);
        margin-left: 0px;
        -webkit-transform: translate(0, 0) scale(1);
        -moz-transform: translate(0, 0) scale(1);
        -ms-transform: translate(0, 0) scale(1);
        -o-transform: translate(0, 0) scale(1);
    }

    .tvd-angular-field.focused input:not([type="checkbox"]):not([type="range"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="file"]),
    .tvd-angular-field.focused textarea {
        border-color: #243644;
    }

    .tvd-angular-field .infoMsg {
        display: block;
        font-size: 12px;
    }

    .tvd-angular-field .errorMsg {
        display: none;
    }

    .tvd-angular-field.error :not([type="checkbox"]):not([type="range"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="file"]),
    .tvd-angular-field.error textarea,
    .tvd-angular-field.error .tvd-angular-dropdown {
        border-color: #e33b3b !important;
    }

    .tvd-angular-field.error .errorMsg {
        display: block;
        font-size: 12px;
        color: #e33b3b;
    }

    .tvd-angular-field.error .infoMsg {
        display: none;
    }

    .tvd-angular-field .tvd-btn-badge {
        position: absolute;
        right: 0;
        top: 18px;
        font-size: 12px;
        line-height: 0.9;
    }

    .tvd-angular-field .tvd-verify-batch {
        color: #45b52b;
        position: absolute;
        font-size: 12px;
        right: 12px;
        top: 18px;
        display: flex;
        align-items: center;
    }

        .tvd-angular-field .tvd-verify-batch img {
            margin-left: 5px;
        }

    /********** Angular field end **********/

    /********** Angular field bordered start **********/
    .tvd-angular-field.bordered input:not([type="checkbox"]):not([type="range"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="file"]),
    .tvd-angular-field.bordered textarea {
        border: 1px solid #cccccc;
        font-size: 14px;
        padding: 6px 9px 5px 9px;
        border-radius: 3.8px;
        -webkit-border-radius: 3.8px;
        -moz-border-radius: 3.8px;
        -ms-border-radius: 3.8px;
        -o-border-radius: 3.8px;
    }

    .tvd-angular-field.bordered.focused input:not([type="checkbox"]):not([type="range"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="file"]),
    .tvd-angular-field.bordered.focused textarea {
        border-color: #0b4d88;
    }

    .tvd-angular-field.bordered input:not([type="checkbox"]):not([type="range"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="file"]) ~ label,
    .tvd-angular-field.bordered textarea ~ label {
        margin-left: 9px;
        padding: 0 0;
        background: #ffffff;
        transform: translate(0, 1.70rem) scale(1.4);
        -webkit-transform: translate(0, 1.70rem) scale(1.4);
        -moz-transform: translate(0, 1.70rem) scale(1.4);
        -ms-transform: translate(0, 1.70rem) scale(1.4);
        -o-transform: translate(0, 1.70rem) scale(1.4);
    }

    .tvd-angular-field.bordered.focused input:not([type="checkbox"]):not([type="range"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="file"]) ~ label,
    .tvd-angular-field.bordered.focused textarea ~ label {
        margin-left: 6px;
        padding: 0 3px;
        transform: translate(0, 0.5rem) scale(1);
        -webkit-transform: translate(0, 0.5rem) scale(1);
        -moz-transform: translate(0, 0.5rem) scale(1);
        -ms-transform: translate(0, 0.5rem) scale(1);
        -o-transform: translate(0, 0.5rem) scale(1);
    }

    .tvd-angular-field.bordered .infoMsg,
    .tvd-angular-field.bordered.error .errorMsg {
        top: 50px;
    }

    /********** Angular dropdown start **********/
    .tvd-angular-field select {
        display: none;
    }

        .tvd-angular-field select + div + label {
            -webkit-transform: translate(0px, 0px) scale(1);
            -ms-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
            margin: 0px;
            font-size: 11px;
            color: #797979;
            text-align: left;
            position: absolute;
            top: 0;
            line-height: 1;
        }

    .tvd-angular-field .tvd-angular-dropdown {
        -webkit-appearance: none;
        border: none;
        border-bottom: 1px solid #243644;
        cursor: pointer;
        padding: 1px 0 3px;
        background: transparent;
        font-weight: 600;
        color: #253746;
    }

    .tvd-angular-field .dropdown {
        cursor: pointer;
        display: block;
        outline: none;
        padding: 3px 0;
        position: relative;
        text-align: left !important;
        transition: all 0.2s ease-in-out;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        white-space: nowrap;
        width: 100%;
        height: auto;
        box-shadow: none;
        border-radius: 0px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
    }

        .tvd-angular-field .dropdown .list {
            box-sizing: border-box;
            transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
            -webkit-transform: scale(0.75);
            transform: scale(0.75);
            -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.22);
            background-color: #fff;
            border-radius: 0 0 5px 5px;
            margin-top: 2px;
            padding: 3px 0;
            opacity: 0;
            overflow: hidden;
            pointer-events: none;
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 8;
        }

        .tvd-angular-field .dropdown.open .list {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1;
            pointer-events: auto;
            width: 100%;
        }

        .tvd-angular-field .dropdown .list ul {
            margin: 0;
            list-style: none;
        }

.dropdown.open:after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.tvd-angular-field .dropdown:after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: url(../images/down-arrow.png) no-repeat;
    width: 13px;
    height: 8px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
}

.tvd-angular-field .dropdown .option {
    cursor: pointer;
    font-weight: normal;
    outline: none;
    text-align: left;
    width: auto;
    padding: 6px 7px;
    margin: 0;
    font-size: inherit;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
}

/********** Angular dropdown field bordered start **********/

.tvd-angular-field.bordered .tvd-angular-dropdown {
    border: 1px solid #0b4d88;
    font-size: 14px;
    padding: 6px 9px 5px 9px;
    border-radius: 3.8px;
    -webkit-border-radius: 3.8px;
    -moz-border-radius: 3.8px;
    -ms-border-radius: 3.8px;
    -o-border-radius: 3.8px;
}

.tvd-angular-field.bordered select + div + label {
    margin-left: 6px;
    padding: 0 3px;
    background: #ffffff;
    margin-left: 6px;
    transform: translate(0, 0.25rem) scale(1);
    -webkit-transform: translate(0, 0.25rem) scale(1);
    -moz-transform: translate(0, 0.25rem) scale(1);
    -ms-transform: translate(0, 0.25rem) scale(1);
    -o-transform: translate(0, 0.25rem) scale(1);
}

.tvd-angular-field.bordered .dropdown:after {
    bottom: 11px;
}

.tvd-angular-field.bordered .tvd-btn-badge {
    position: absolute;
    right: 5px;
    bottom: 22px;
    font-size: 12px;
    line-height: 0.9;
}

/********** Angular dropdown field bordered end **********/

.lead-generation-popup .modal-content-hwk {
    background-image: url('../images/Untitled.png') !important;
}

.lead-generation-popup .lead-generation-form .lead-popup-form .btnPEAttachement-hwk p span {
    color: #781793;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.lead-generation-form .submit-btn-main .submit-btn-hwk {
    background: #781793;
    border: none;
    padding: 14px 46px;
}

.testimonial-slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
/*    margin: 10px;*/
    text-align: left;
    min-height: 220px;
}

    .testimonial-card small {
        font-size: 14px;
        line-height: 21px;
        color: #5A6781;
        font-weight: 400;
    }

    .testimonial-card h4 {
        margin: 0;
        font-size: 20px;
        color: #0A1425;
        font-weight: 600;
        font-family: 'openSans-regular';
        line-height: 28px;
    }

    .testimonial-card p {
        font-size: 16px;
        color: #5A6781;
        margin-top: 10px;
        line-height: 24px;
        max-width: 324px;
        font-family: 'openSans-regular';
    }



.stars {
    color: #F2627D;
    margin: 10px 0;
}

.testimonial-card strong {
    display: block;
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #0A1425;
    font-weight: 600;
    font-family: 'openSans-regular';
}

/* Slick Dots */
.slick-dots li button:before {
    font-size: 12px;
    color: #c0c0c0;
}

.slick-dots li.slick-active button:before {
    color: #a855f7;
}

.hawkeye-ins-chat {
    font-size: 16px !important;
}
.hawkeye-con{
    font-weight:600 !important;
}

.laoding-arrow1 {
    top: 45%;
}

    .laoding-arrow1 img {
        height: 40px;
        width: 100%;
    }

.laoding-arrow2 {
    top: 40%;
    left: 62%;
}

    .laoding-arrow2 img {
        height: 40px;
        width: 100%;
    }

.top-right1 {
    top: 56%;
    left: 28%;
    transform: rotate(23deg);
}

    .top-right1 img {
        height: 50px;
        width: 100%;
        /* transform: rotate(139deg); */
    }

.top-right2 {
    top: 61%;
    left: 33%;
    transform: rotate(23deg);
}

    .top-right2 img {
        height: 50px;
        width: 100%;
    }

.top-right3 {
    top: 61%;
    left: 64%;
    transform: rotate(-23deg);
}

    .top-right3 img {
        height: 50px;
        width: 100%;
        /* transform: rotate(139deg); */
    }

.top-right4 {
    top: 56%;
    left: 69%;
    transform: rotate(-23deg);
}

    .top-right4 img {
        height: 50px;
        width: 100%;
    }

/*VIPIN BUG FIXES*/
.testimonial-card {
    height: auto;
}

.slick-track {
    display: flex;
    gap:24px;
}
.header-sec-main-title {
    margin-bottom: 24px;
    font-family:openSans-bold;
}
.header-sec-sub-title {
    margin-bottom: 36px;
}
.common-main-heading {
    font-family: openSans-bold !important;
}

.slide-paras {
    font-family: openSans-bold;
}

h2.home-head2.namaste-title{
    font-family:openSans-regular !important;
    font-weight:600 !important;
}
.overview-badge{
    font-family:openSans-regular;
}

.tabs-box{
    margin-top:0;
}
.why-hawkeye-section .common-main-heading{
    font-family:openSans-bold !important;
}
.key-features-section .common-main-heading{
    font-family:openSans-bold !important;
}
.bsn h2.title-2{
    font-family:openSans-bold !important;
    margin-bottom:24px;
}

.roi-sec-card{
    margin-bottom:0 !important;
}
.testimonial-slider.slick-slider{
padding-bottom:0;
}
.partner-us-head{
    max-width:1080px;
}
.partner-us-btn a{
    width:215px;
}
.camp-banner-base-hwk{
    margin-top:-16px !important;
}
@media (min-width: 768px) {
    .quick-contact-form .camp-fields-wrapper .tvd-angular-field input:not([type=checkbox]):not([type=range]):not([type=radio]):not([type=submit]):not([type=button]):not([type=file]) {
        max-width: 217px !important;
    }
    .content-main-left {
        /* padding: 35px 0; */
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .slick-track:after, .slick-track:before{
        content:none !important;
    }
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    h2.home-head2.namaste-title {
        padding-top: 20px !important;
    }
    .why-hawkeye-section .common-main-heading{
        margin-bottom:24px;
    }
    .fpsg.mt-20 {
        margin-top: 16px;
    }

    .fpsg.mt-24 {
        margin-top: 12px;
    }
    .container-footer .right-div{
        height:176px;
    }
    .testimonial-card {
        display: flex !important;
        align-items: center;
        flex-direction: column;
        height: auto;
    }
    .roi-sec-cards{
        padding:8px 24px !important;
    }
}
ul.slick-dots {
    bottom: -15px;
}

/*VIPIN BUG FIXES*/
@media (min-width: 320px) and (max-width:767px) {

    .partner-us {
        background-image: url('../images/Call-to-action.png');
    }
    .header-sec-main-title span {
        color: var(--text-violet);
        white-space: pre-wrap;
        display: block !important;
    }

    .loading-arr-m1 img, .loading-arr-m2 img {
        height: 17px;
        width: 55px;
    }

    .loading-arr-m1 {
        position: absolute;
        top: 5%;
        left: 6%;
    }

    .loading-arr-m2 {
        position: absolute;
        top: 20%;
        right: 35%;
    }

    .top-right-m1 img, .top-right-m2 img {
        height: 25px;
    }

    .top-right-m1 {
        position: absolute;
        top: 29%;
        left: 31%;
        transform: rotate(32deg);
    }

    .top-right-m2 {
        position: absolute;
        top: 36%;
        left: 63%;
        transform: rotate(-27deg);
    }

    .right-arr-m1 {
        transform: rotate(90deg);
        );
        );
        top: 24px;
        left: 7%;
    }

    .right-arr-m2 {
        transform: rotate(90deg);
        bottom: 7%;
        left: 5%;
    }

    .right-arr-m1 img {
        height: 20px;
        width: 65px;
    }

    .right-arr-m2 img {
        height: 20px;
        width: 65px;
    }

    .right-m1 img {
        height: 50px;
        width: 100%;
    }


    .right-m2 img {
        height: 50px;
        width: 100%;
    }


    .right-m3 img {
        height: 50px;
        width: 100%;
    }

    .right-m1 {
        top: 36%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .right-m2 {
        top: 42%;
        transform: rotate(90deg);
        right: 12%;
        z-index: -1;
    }

    .right-m3 {
        top: 62%;
        transform: rotate(180deg);
        left: 38%;
        z-index: -1;
        /* transform:translate(-50%,-50%); */
    }



/*    .loop-divv {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }*/
    .haw-footer{
        padding:24px 16px;
    }

    .only-phone-num {
        display: none;
    }

    .f-links {
        gap: 0;
    }

    .testimonial-slider {
        width: 90%;
        margin: 0 auto;
        position: relative;
    }

    .mobile-nav-icons {
        /* text-decoration: none; */
        font-size: 11px;
        line-height: 16px;
        text-align: center;
        color: #5A6781;
        font-weight: 700;
        text-transform: uppercase;
        /* display: flex; */
        /* margin: auto; */
        gap: 8px;
    }

    .navbar-custom {
        padding: 12px 12px !important;
    }

    span.custom-toggler-icon {
        display: flex;
        align-items: center;
    }

    a.profile-icon {
        height: 20px;
        width: 20px;
        display: flex;
        align-items: center;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        width: 82px;
        padding:5px 0;
    }

    /*    span.custom-toggler-icon {
        height: 20px;
        width: 20px;
        display: flex;
    }
*/
    a.contact-us-btn-mob.me-2 {
        text-decoration: none;
        color: #5A6781;
    }

    a.login-btn-mob.me-2 {
        text-decoration: none;
        color: #5A6781;
    }

    .common-sub-title {
        font-family: openSans-regular;
        color: var(--text-black);
        font-size: 11px;
        line-height: 16px;
        font-weight: 600;
        /*        margin-top: 32px;*/
        padding: 8px 24px;
        background: #CDC4F5;
        border-radius: 800px;
    }

    .header-sec-main-title {
        font-family: openSans-bold;
        font-size: 28px;
        line-height: 36px;
        font-weight: 700;
        color: var(--text-black);
        max-width: 298px;
        margin: 16px 0px;
        text-align: center;
        height:120px;
        margin-bottom:46px;
    }

    .desktopbgg {
        display: none;
    }
    .arrow-class{
        display:none;
    }

    .mobbgg {
        display: block;
        top: -50px;
        position: relative;
    }
    .header-sec-sub-title{
        padding:0 30px;
    }

    .ld {
        left: max(calc(96px* 6), 100%);
    }

    .logo-card {
/*        width: 96px;
        height: 96px;
        padding: 0;*/
    }

    .loop-div {
        overflow: visible;
    }

    .business-section .title {
        font-size: 16px;
        margin-bottom: 24px;
        color: #5A6781;
        line-height: 24px;
        font-weight: 600;
    }

    .business-section {
        padding: 24px 0;
        overflow: hidden;
    }

    .about-section {
        padding: 24px 16px;
        text-align: center;
        overflow: hidden;
    }

    .title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 24px;
        line-height: 27px;
        color: #0A1425;
    }

    .description {
        font-family: openSans-regular;
        font-size: 16px;
        color: #595160;
        line-height: 24px;
        margin-bottom: 12px;
        font-weight: 400;
        letter-spacing: 1px;
        padding:0;
    }

    .stat h3 {
        font-size: 32px;
        margin-bottom: 12px
    }

    .stats {
        flex-wrap: wrap;
        gap:25px 12px;
    }

        .stats .stat {
/*            flex: 0 0 calc(33.333%);*/
        }

/*    .divider-2 {
        display: none;
    }
*/

    /*why hawkeye media query*/
    .hawkeye-slider {
        display: flex;
        flex-direction: column;
    }

    .vertical-slide {
        width: 100%;
        /* display: flex; */
        /* overflow: hidden; */
    }

    .new-div {
        display: flex;
        overflow-y: hidden;
    }

    .slide-paras {
        font-size: 14px;
        line-height: 21px;
        font-weight: 800;
        width:164px;
    }

    .slide-paras-seamless{
        width:208px;
    }
    .slide-detail {
        margin-right: 0;
        max-width: 248px;
        gap: 8px;
    }

    img.slide-img {
        height: 24px;
        width: 24px;
        margin: 0;
        margin-left: 8px;
    }

    .horizontal-slide {
        width: 100%;
    }

    .container-footer {
        flex-direction: column;
    }


    .hor-slide {
        display: none; /* Hide horizontal slides by default */
    }

        .hor-slide.active {
            display: flex; /* Show active horizontal slide */
            align-items:center;
            margin: 20px 0px 0px 0px;
            gap:0;
        }


    .new-div {
        overflow: scroll; /* Allow scrolling */
        -ms-overflow-style: none; /* For Internet Explorer */
        scrollbar-width: none; /* For Firefox */
    }

        .new-div::-webkit-scrollbar {
            display: none; /* Hide the scrollbar for Chrome, Safari, and Opera */
        }

    #how-it-works {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 24px 0;
    }

    .hiw-pc ,.right-a1 ,.right-a2 ,.right-a3 {
        display: none;
    }

    .hiw-mob {
        display: block;
    }

    .main-card-div {
        gap: 12px 12px;
    }

    .cards-section {
        padding: 24px 0;
    }

    .overview-badge {
        font-size: 11px;
    }

    #key-features {
        background: linear-gradient(180deg, #FFFFFF 0%, #F5EBF7 100%);
        padding: 24px 0px;
    }

    .roi-section .container {
        padding: 24px 0;
    }

    .content-box {
        padding: 16px;
    }

    .content-main {
        padding: 0;
    }

    .content-main-left {
        padding: 16px 12px 0 12px;
    }

    .content-main-left-cards {
        width: 100%;
    }

    .content-main-left-heading {
        font-size: 20px;
        line-height: 30px;
        text-align: left;
        margin: 0;
        margin-bottom: 22px;
    }


    .content-main-left-cards {
        max-width: 304px;
        max-width: 500px;
    }

    .content-main {
        gap: 0;
    }

    .tabs-box {
        overflow: scroll;
        scroll-behavior: smooth;
        scrollbar-width: none;
        margin: 0;
        padding-left:40px;
    }

    .tabs-btn {
        font-family:openSans-bold;
        min-width: 186px;
        padding: 10px 10px;
        font-size: 14px;
        line-height: 21px;
        text-align: center;
        font-weight:800;
    }

    .content-main-left-cards-row-cards {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
        color: #5A6781;
        height: auto;
        width: 50%;
        padding: 12px;
        gap: 10px;
    }

        .content-main-left-cards-row-cards img {
            margin-bottom: 10px;
        }

    .content-main-right {
        padding: 0 12px 28px 12px;
    }

    .key-features-section .common-main-heading {
        padding: 0;
        font-size: 20px;
        line-height: 27px;
        padding: 0px 32px;
    }

    .bsn h2.title-2 {
        font-size: 20px;
        line-height: 27px;
        text-align: center;
        margin-bottom:24px;
    }

    .loop-div-left {
        height: 96px;
        margin-bottom: 12px;
    }

    .loop-div-right {
        height: 96px;
        margin-bottom: 12px;
    }

    .logo-card.new {
        height: 96px;
        width: 96px;
        border: none;
        border-radius: 8px;
        padding: 16px 12px 17px 12px;
    }

    .l-left {
        left: max(calc(96px * 8), 100%);
    }

    .l-right {
        right: max(calc(96px * 8), 100%);
    }

    .roi-section-heading {
        font-size: 24px;
        line-height: 32px;
        padding: 5px 16px;
    }

    .roi-sec-card {
        display: block;
        min-width: 320px;
        width: 100%;
        padding: 0 16px;
    }

    .roi-sec-cards {
        width: 100%;
        margin-bottom: 12px;
        padding: 12px;
    }

    .container-footer .right-div {
        max-width: 100%;
        width: 100%;
        padding: 12px 24px;
    }

    .partner-us-head {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 1px;
        padding: 0 15px;
    }
    .parter-us-sub {
        padding: 24px 0px;
    }

    .partner-us-btn{
        margin-top:32px;
    }
    .main-card .para {
        display: none;
    }

    .main-card {
        max-height: 167px;
        width: 158px;
        /* align-items: center; */
    }

    .main-card-div .main-card {
        align-items: center;
        text-align: center;
    }

    .main-card .title {
        font-size: 16px;
        line-height: 24px;
        height: 79px;
        text-align: center;
        display: flex;
        align-items: center;
        margin: 0;
    }
    .testimonial-card strong{
        font-size:18px;
    }

    .main-card img {
        height: 44px;
        width: 44px;
    }

    .testi-cars {
        padding: 0 16px;
        display: block;
    }

    .common-sub-para {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
    }

    .common-main-heading {
        font-size: 20px;
        line-height: 27px;
    }

    .test-section {
        padding: 24px 0px;
        background: linear-gradient(180deg, #FFFFFF 0%, #F5EBF7 100%);
    }

    .testi-card {
        width: 100%;
        margin-bottom: 20px;
    }

    #why-hawkeye {
        padding: 24px 0px;
    }

    .roi-num {
        font-family: 'openSans-bold';
        font-size: 28px;
        line-height: 32px;
        font-weight: 600;
        color: #01132E;
    }

 
    .roi-card-p {
        font-size: 14px;
        line-height: 21px;
        font-weight: 400;
        color: #5A6781;
        letter-spacing: 0.5px;
    }
        .roi-num-w {
        width: 153px;
    }

    .logo-card p {
        font-size: 11px;
    }

    .header-section-banners {
        padding-top: 0px;
    }

    .testi-card {
        width: 320px;
    }

    .testimonial-card p {
        text-align: center;
    }

    .testimonial-card strong {
        text-align: center;
    }

    .stars {
        text-align: center;
    }

    .testimonial-card small {
        display: block;
        text-align: center;
    }

    .testimonial-card h4 {
        text-align: center;
    }

   
   


}

.testimonial-card {
    min-height: 328px !important;
    width: auto !important;
    flex: 1;
}

@media (min-width: 768px) and (max-width:1024px) {
    .partner-us-one {
        background-image: url('../images/partner-us.png');
    }
    .top-right1 {
        top: 62%;
    }

    .top-right2 {
        top: 66%;
    }

    .top-right3 {
        top: 65%;
    }

    .top-right4 {
        top: 61%;
    }

    .laoding-arrow1 {
        top: 56%;
    }

    .laoding-arrow2 {
        top: 51%;
    }
    .only-phone-num {
        display: none;
    }

    .f-links {
        gap: 0;
    }

    .vertical-slide.col-6 {
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    .mobile-nav-icons {
        /* text-decoration: none; */
        font-size: 11px;
        line-height: 16px;
        text-align: center;
        color: #5A6781;
        font-weight: 700;
        text-transform: uppercase;
        /* display: flex; */
        /* margin: auto; */
        gap:24px;
    }

    a.profile-icon {
        height: 20px;
        width: 20px;
    }

    img {
    }

    span.custom-toggler-icon {
        height: 20px;
        width: 20px;
        display: flex;
    }

    a.contact-us-btn-mob.me-2 {
        text-decoration: none;
        color: #5A6781;
    }

    a.login-btn-mob.me-2 {
        text-decoration: none;
        color: #5A6781;
    }
    .navbar-custom{
        padding:12px 24px !important;
    }

}

@media (max-width: 462px) {
    .divider-2 {
        display: none;
    }
}


@media (max-width: 768px) {

    #why-hawkeye {
        background-image: url('../images/Values-Mobile.png');
    }
    .content-main-left-cards-row-cards {
        justify-content: flex-start;
    }
    .hor-slide-p1 {
        text-align: center;
        font-size: 20px;
        line-height: 30px;
        color: #0A1425;
        font-weight: 600;
        font-family: 'openSans-semi-bold';
    }

    .hor-slide-p2 {
        font-size: 14px;
        font-family: 'openSans-regular';
        text-align: center;
        color: #4D5462;
        margin-top: 12px;
    }
    .loop-divv {
        position: relative;
        height: 96px; /* Fixed height */
        overflow: hidden;
        /*margin-bottom: 16px;*/ /* Spacing adjustment */
        width: 100%; /* Full width */
    }
    .container.new-con {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .loop-divv .logo-card {
        position: absolute;
        width: 96px;
        height: 96px;
        padding: 18px 12px 12px;
    }
    .l-left-small {
        position: absolute;
        left: max(calc(96px * 5), 100%);
        animation-name: scrollLeftSmall;
        animation-duration: 20s; /* Adjusted speed */
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    @keyframes scrollLeftSmall {
        to {
            left: -96px;
        }
    }
    .loop-divv .logo-card img {
        width: 34px; /* Image width */
        height: 24px; /* Image height */
        display: block; /* Block display for spacing control */
        /*margin: 0 auto 4px;*/ /* Center image and add spacing below */
    }

    /* New animation delay classes */
    .delay-1 {
        animation-delay: calc(20s / 5 * (5 - 1) * -1);
    }

    .delay-2 {
        animation-delay: calc(20s / 5 * (5 - 2) * -1);
    }

    .delay-3 {
        animation-delay: calc(20s / 5 * (5 - 3) * -1);
    }

    .delay-4 {
        animation-delay: calc(20s / 5 * (5 - 4) * -1);
    }

    .delay-5 {
        animation-delay: calc(20s / 5 * (5 - 5) * -1);
    }



    .loop-div-right {
        position: relative;
        height: 96px; /* Adjusted height */
        overflow: hidden;
        margin-bottom: 12px;
    }

    .l-right {
        position: absolute;
        right: max(calc(96px * 6), 100%); /* Adjusted width */
        animation-name: scrollRightNew;
        animation-duration: 30s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    .slick-dots li button {
        background: #781793;
    }

    .loop-div-left {
        position: relative;
        height: 96px; /* Adjusted height */
        max-width: 1276px;
        overflow: hidden;
        margin-bottom: 12px;
    }

    .l-left {
        position: absolute;
        left: max(calc(96px * 6), 100%); /* Adjusted width */
        animation-name: scrollLeftNew;
        animation-duration: 30s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    @keyframes scrollLeftNew {
        to {
            left: -96px; /* Adjusted to new size */
        }
    }

    @keyframes scrollRightNew {
        to {
            right: -96px; /* Adjusted to new size */
        }
    }

    .s-loop1 {
        animation-delay: calc(30s / 6 * (6 - 1) * -1);
    }

    .s-loop2 {
        animation-delay: calc(30s / 6 * (6 - 2) * -1);
    }

    .s-loop3 {
        animation-delay: calc(30s / 6 * (6 - 3) * -1);
    }

    .s-loop4 {
        animation-delay: calc(30s / 6 * (6 - 4) * -1);
    }

    .s-loop5 {
        animation-delay: calc(30s / 6 * (6 - 5) * -1);
    }

    .s-loop6 {
        animation-delay: calc(30s / 6 * (6 - 6) * -1);
    }

    .small-title {
        font-size: 28px;
        line-height: 32px;
        font-weight: 600;
        color: #01132E;
        margin-bottom: 0px;
        font-family: openSans-regular;
    }

  

    .bsn {
        /* background-image: url(../images/optimize.png); */
        /* background: linear-gradient(180.53deg, #F5EBF7 0.46%, #FFFFFF 89.78%); */
        background: linear-gradient(0deg, #F5ECF7 0%, #FFFFFF 96.31%);
    }



    .testimonial-card h4 {
        margin: 0;
        font-size: 18px;
        color: #0A1425;
        font-weight: 600;
        font-family: 'openSans-regular';
        line-height: 24px;
    }
    .testimonial-card{
        padding:0;
        padding:16px 12px;
        
    }
        .testimonial-card strong{
            font-size:18px;
        }
    .common-sub-para{
        margin-bottom:16px;
    }
    .common-sub-para-client{
    margin-top:-4px;
    }
    .main-card-div .main-card {
        padding: 14px 12px;
        display: flex;
        justify-content: space-between;
    }
}




@media (min-width: 1024px) {
    .slick-dots {
        display: none;
    }
}


@media (min-width: 768px) {
    .right-m1, .right-m2, .right-m3, .right-arr-m1, .right-arr-m2 {
        display: none;
    }
    .arrow-class-mob{
        display:none;
    }

}


@media screen and (max-width: 767px) and (min-width: 320px) {
    .camp-lead-base {
 
        padding: 8px;
    }

    .thankyou-work > p{
        padding:0 32px;
    }

    .header-section-banners-text {
        background-image: url('../images/corner.png'), url('../images/bot-corner.png');
        background-repeat: no-repeat, no-repeat;
        background-position: left top, bottom right;
        width: 100%;
        padding-top: 32px;
    }


    .header-sec-sub-title{
        display:none;
    }

    .camp-lead-mbwrapper .gint-contact-field-row {
        width: 100% !important;
        margin-top: 0px;
    }

    .captcha-class {
        margin-top: 20px;
        width: 100%;
        color: #303030;
        font-weight:400;
        font-size:14px;
        line-height:20px;
    }
    .quick-contact-form .camp-fields-wrapper .connect-btn.homebtn{
        margin-top:35px !important;
        margin-bottom:23px !important;
    }

    .quick-contact-form .camp-fields-wrapper .tvd-angular-field.mob-number.focused label {
        transform: translate(-16px, -2px) !important;
    }

    #revolution-main{
        display:none;
    }

    .camp-lead-mbwrapper{
        border-radius:16px !important;
    }

    .thankyou-work p.head {
        font-size: 20px;
    }
    .lead-generation-popup .modal-content .lead-generation-form .modal-title {
        font-size: 24px;
        max-width: 214px;
        font-weight: 700;
        font-family: 'openSans-bold';
    }

    .submit-btn-hwk{
        margin-top:0px;
    }
    .lead-generation-popup .lead-generation-form .lead-popup-form .lead-popup-form-captcha {
        display: flex;
        align-items: flex-start; 
        margin: 10px 0;
        flex-direction: column;
    }
    .lead-popup-form-captcha .contact-field-row:last-child {
        margin: 0 0 0 0;
        flex-direction: column;
    }

    .cc-text-hwk{
        display:none !important;
    }


    .lead-generation-form-hwk {
        padding: 0 !important;
    }

    .camp-banner-base-hwk  {
        margin-bottom:0px !important;
        margin-top:-20px !important;
    }

    .loop-divv .logo-card p {
        font-size: 11px;
        line-height:17px;
        font-weight:400;
        color: #383838;
        font-family:openSans-regular;

    }
    .how-it-work-section .common-main-heading {
        text-align: center;
        padding: 0 24px;
    }

    .fpsg img {
        display: flex;
        margin-right: 8px;
        height: 24px;
        width: 24px;
    }
    .container-footer .left-div .f-para-left{
        font-size:14px;
        font-size:14px;
    }
    .fpsg {
        font-size: 14px;
    }
    .f-list a{
        font-size:14px;
    }
    .partner-us-btn a {
        font-family: openSans-regular;
        color: white;
        text-decoration: none;
        font-weight: 600;
        padding: 16px 25px;
        width: 199px;
        height: 44px;
    }

    .roi-sec-card{
        margin-bottom:16px;
    }

    .logo-card img {
        height: 24px;
        width:34px;
    }

    .hwk-captcha{
        padding-left:0px;
    }
    

}

@media (min-width: 768px) {

    .header-section-banners-img {
        margin-top: -54px;
    }
}
@media (min-width: 768px) and (max-width: 1100px) {
    .header-section-banners-img {
        margin-top: -185px;
    }
}
@media only screen and (max-width: 540px) {
    .lead-generation-popup .lead-generation-form .lead-popup-form .lead-popup-form-captcha {
        width: 100%;
         padding: 0 0 0px 0; 
    }
}
@media (max-width: 992px) {
    .lead-generation-form .submit-btn-main .submit-btn-hwk {
        background: #781793;
        border: none;
        padding: 14px 46px;
        width: 100%;
        text-align: center;
    }                                                           

    .lead-popup-form .form-group .cc-message {
        position: absolute;
        top: 36px;
        left: 0px;
        width: 250px;
        text-align: left;
        margin-left: 0;
    }
}


.slick-center {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}