/* ===========================
   Font Imports
=========================== */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-ExtraBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* ===========================
   Global Base Styles
=========================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #383854;
    font-size: 16px;
    line-height: 1.5;
}

/* ===========================
   Typography Styles
=========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Gilroy', sans-serif;
    color: #000;
    font-weight: bold;
}

label,
.navbar-nav .nav-link {
    color: #000;
    font-weight: 700;
}

p,
li,
span,
.section-text {
    color: #383854;
}

.bg-dark-section,
.bg-primary,
.bg-purple {
    color: #ffffff;
}

/* Utility white text override */
.text-white {
    color: #ffffff !important;
}

a:focus,
button:focus,
input:focus,
.btn:active,
.btn:focus,
.btn:active:focus {
    box-shadow: none;
    outline: none;
}

.gap-20 {
    gap: 20px !important;
}

.gap-24 {
    gap: 24px !important;
}

.gap-30 {
    gap: 30px !important;
}

.badge.bg-purple {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    width: fit-content;
    padding: 4px 8px;
}

h1 {
    font-weight: 800;
    font-size: 56px;
}

h2 {
    font-weight: 800;
    font-size: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 7px;
}

.form-group label.form-check-label,
.form-group label.simple-lable {
    font-weight: 400;
}

.form-group .form-control {
    border: 1px solid #CFD2D8;
    padding: 16px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #383854;
}

.form-group .form-control:focus,
.form-group .form-control:active {
    outline: none;
    box-shadow: none;
    border-color: #14157A;
}

.form-group .form-control::placeholder {
    color: #888888;
}

.form-group a {
    color: #14157A;
    text-shadow: 0px 0px 1px 0px #00000003;
    font-weight: 700;
    text-decoration: none;
}

/* ===========================
   Background Color Utilities
=========================== */
.bg-primary {
    background-color: #14157A !important;
}

.bg-purple {
    background-color: #9B51E0 !important;
}

.bg-light-blue {
    background-color: #f6fafd !important;
    color: #383854;
}

.bg-white {
    background-color: #fff !important;
}

/* ===========================
   Buttons
=========================== */

.btn-primary {
    background-color: #14157A;
    border-color: #14157A;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: inherit;
    padding: 16px 30px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary .hover-overlay {
    position: absolute;
    width: calc(100% + 6em);
    height: calc(100% + 6em);
    border-radius: 100%;
    background-color: #fff;
    transition: 0.2s ease-in;
    top: 50%;
    left: 50%;
    transform: translate3d(0, 110px, 0) translate(-50%, -50%);
    z-index: -1;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: transparent;
    border-color: #14157A;
    color: #14157A;
}

.btn-primary:hover .hover-overlay {
    transform: translate3d(0, 0, 0) translate(-50%, -50%);
}

.btn-secondary {
    background-color: #fff;
    border-color: #fff;
    color: #14157A;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: inherit;
    padding: 16px 40px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary .hover-overlay {
    position: absolute;
    width: calc(100% + 6em);
    height: calc(100% + 6em);
    border-radius: 100%;
    background-color: #0f1165;
    transition: 0.2s ease-in;
    top: 65%;
    left: 50%;
    transform: translate3d(0, 110px, 0) translate(-50%, -50%);
    z-index: -1;
}

.btn-secondary:hover {
    /* background-color: #0f1165; */
    border-color: #fff;
    color: #ffffff;
}

.btn-secondary:hover .hover-overlay {
    transform: translate3d(0, 0, 0) translate(-50%, -50%);
}

.btn-secondary:focus,
.btn-secondary:active {
    background-color: #0f1165;
}

/* ===========================
   Navbar Links Style
=========================== */

.main-navbar {
    padding-top: 15px;
    padding-bottom: 15px;
    border: 0;
    backdrop-filter: blur(30px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #fff;
    transition: transform 0.5s ease;
}

.main-navbar.hide-header {
    transform: translateY(-100%);
}

.main-navbar .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 700;
    line-height: 23.4px;
    letter-spacing: -0.09px;
    color: #000 !important;
    transition: all 0.3s ease;
    padding: 5px 20px;
    position: relative;
}

.main-navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -75%;
    width: 0;
    height: 2px;
    background-color: #14157A;
    transition: 0.2s ease-in;
}

.main-navbar .navbar-nav .nav-link:hover,
.main-navbar .navbar-nav .nav-link:active,
.main-navbar .navbar-nav .nav-link.active {
    color: #14157A !important;
    text-decoration: none;
}

.main-navbar .navbar-nav .nav-link:hover::after,
.main-navbar .navbar-nav .nav-link.active::after {
    width: 100%;
}

.main-navbar .btn-primary {
    padding: 10px 14px;
    font-weight: 700;
}

/* ===========================
   Section Styling
=========================== */

.eventScan-body {
    padding-top: 86px;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}

section p {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 26px;
}

section .sec-card {
    backdrop-filter: blur(7.800000190734863px);
    box-shadow: 0px 4px 4px 0px #23286914;
    background: #FFFFFFCC;
    padding: 24px;
    border-radius: 20px;
    width: fit-content;
}

section .sec-card ul li {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 24px
}

section .sec-card ul li:last-child {
    margin-bottom: 0;
}

.banner-section {
    background-image: url('../images/background-images/Math-line.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    flex-direction: row;
}

.banner-section .banner-content {
    width: 100%;
    max-width: 510px;
}

.banner-section .btn-primary {
    max-width: 190px;
    font-size: 16px;
    font-weight: 700;
}

.banner-section .banner-mobile-img {
    position: relative;
    width: auto;
    height: calc(100vh - 200px);
    margin: auto;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-mobile-img .bmi-inner {
    position: relative;
    width: auto;
    height: auto;
}

.banner-mobile-img img {
    position: absolute;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.banner-mobile-img img.banner-mobile {
    position: relative;
    width: auto;
    height: calc(100vh - 200px);
    opacity: 1;
    z-index: 1;
}

.banner-section .banner-mobile-img img.banner-mobile {
    position: relative;
    width: auto;
    height: calc(100vh - 200px);
    opacity: 1;
    z-index: 1;
}

.banner-section .banner-mobile-img img.userBnr {
    position: absolute;
    top: 24%;
    left: -85%;
    transform: translateX(80%) rotate(-7deg);
    width: calc(100% + 10%);
    z-index: 1;
    box-shadow: 8px 14px 38px rgb(39 44 49 / 10%), 1px 3px 8px rgba(39, 44, 49, 0.03);
    border-radius: 16px;
}

.banner-section .banner-mobile-img img.noteBnr {
    position: absolute;
    top: 53%;
    left: -75%;
    z-index: -1;
    width: calc(100% + 4%);
    transform: translateX(80%) rotate(-7deg);
    box-shadow: 8px 14px 38px rgb(39 44 49 / 10%), 1px 3px 8px rgba(39, 44, 49, 0.03);
    border-radius: 8px;
}

.banner-section .banner-mobile-img img.qrFrame {
    position: absolute;
    bottom: 15%;
    right: -50%;
    z-index: -1;
    width: calc(100% - 55%);
    transform: translateX(-110%);
}

.banner-section .banner-mobile-img img.scanBnr {
    position: absolute;
    top: 35%;
    right: -55%;
    z-index: 2;
    width: calc(100% - 30%);
    transform: translateX(-80%) rotate(7deg);
    box-shadow: 8px 14px 38px rgb(39 44 49 / 10%), 1px 3px 8px rgba(39, 44, 49, 0.03);
    border-radius: 4px;
}

.banner-section .banner-mobile-img img.attendiesBnr {
    position: absolute;
    top: 48%;
    right: -40%;
    width: calc(100% - 40%);
    transform: translateX(-80%) rotate(7deg);
    z-index: 1;
    box-shadow: 8px 14px 38px rgb(39 44 49 / 10%), 1px 3px 8px rgba(39, 44, 49, 0.03);
    border-radius: 4px;
}

.banner-section .banner-mobile-img img.leadBadge {
    position: absolute;
    top: 2%;
    left: -35%;
    transform: translateX(175%);
    width: calc(100% - 70%);
}

.banner-section .banner-mobile-img img.existingBadge {
    position: absolute;
    top: -7%;
    left: 22%;
    transform: translate(-25%, 250%);
    opacity: 1;
    width: calc(100% - 45%);
}

.banner-section .banner-mobile-img img.hotBadge {
    position: absolute;
    right: -35%;
    top: 2%;
    transform: translateX(-175%);
    width: calc(100% - 70%);
}

.banner-section.loaded .banner-mobile-img img:not(.banner-mobile) {
    opacity: 1;
    /* transform: translate(0, 0); */
    transform: translateX(0);
}

.banner-section.loaded .banner-mobile-img img.userBnr:not(.banner-mobile) {
    transform: translateX(0) rotate(-7deg);
}

.banner-section.loaded .banner-mobile-img img.noteBnr:not(.banner-mobile) {
    transform: translateX(0) rotate(-7deg);
}

.banner-section.loaded .banner-mobile-img img.scanBnr:not(.banner-mobile) {
    transform: translateX(0) rotate(7deg);
}

.banner-section.loaded .banner-mobile-img img.attendiesBnr:not(.banner-mobile) {
    transform: translateX(0) rotate(7deg);
}

.userBnr {
    transition-delay: 0.1s;
}

.noteBnr {
    transition-delay: 0.2s;
}

.qrFrame {
    transition-delay: 0.3s;
}

.scanBnr {
    transition-delay: 0.4s;
}

.attendiesBnr {
    transition-delay: 0.5s;
}

.leadBadge {
    transition-delay: 0.6s;
}

.existingBadge {
    transition-delay: 0.7s;
}

.hotBadge {
    transition-delay: 0.8s;
}

section.introduction {
    background-image: url('../images/background-images/bg-blue.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}

section.introduction h2 {
    margin-bottom: 45px;
    color: #fff;
}

section.introduction p {
    color: #fff;
    width: 100%;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

section.introduction .card {
    border-radius: 8px;
    padding: 8px;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #9B51E0 100%);
    border: 0;
}

section.introduction .card .inner {
    backdrop-filter: blur(38.57337951660156px);
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
}

section.introduction .card .card-content {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.introduction .card .card-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: #14157A;
    margin-bottom: 0;
}

section.introduction .card .card-pra {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #000;
}

section.introduction .card .card-img {
    padding: 15px 0px 0px 0px;
}

section.introduction .card .card-img img {
    width: 100%;
    height: auto;
}

section.scan-visitor {
    background-image: url('../images/background-images/scan-bg-before.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top left, bottom right;
    background-size: inherit, inherit;
}

section.never-miss .sec-header,
section.never-miss p {
    width: 100%;
    max-width: 515px;
}

section.never-miss .sec-header .badge {
    margin-bottom: 16px;
}

section.never-miss .sec-header h2 {
    margin-bottom: 0;
    font-size: 32px;
}

section.booth-analytics {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

section.booth-analytics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-image: url('../images/background-images/booth-analytics-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

section.booth-analytics::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100px;
    background-image: url('../images/background-images/booth-analystics-top.svg');
    background-size: inherit;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: -1;
}

section.booth-analytics .sec-img {
    position: relative;
}

section.booth-analytics .sec-img img.inner-images {
    position: absolute;
    transition: 0.3s all;
}

section.booth-analytics .sec-img img.scan-an {
    top: 25%;
    left: 31%;
    width: 37%;
    transform: translate(0, 0);
}

section.booth-analytics .sec-img img.attendies-an {
    top: 35%;
    left: 30%;
    width: 37%;
    transform: translate(0, 0);
}

section.booth-analytics .sec-img img.leads-an {
    top: 45%;
    left: 29%;
    width: 37%;
    transform: translate(0, 0);
}

section.booth-analytics .sec-img img.graph-an {
    bottom: 8%;
    left: 29%;
    width: 25%;
    transform: translate(0, 0) scale(1);
}

section.booth-analytics.section-load .sec-img img.scan-an {
    transform: translate(-35%, 5%);
}

section.booth-analytics.section-load .sec-img img.attendies-an {
    transform: translate(35%, 27%);
}

section.booth-analytics.section-load .sec-img img.leads-an {
    transform: translate(-35%, 25%);
}

section.booth-analytics.section-load .sec-img img.graph-an {
    transform: translate(100%, 50%) scale(2);
}


section.get-pricing {
    background-image: url('../images/background-images/get-pricing-bg.svg');
    background-repeat: no-repeat;
    background-position: bottom 40px center;
    background-size: inherit;
    padding-bottom: 140px;
}

section.get-pricing .pricing-content {
    width: 100%;
    max-width: 385px;
}

section.get-pricing h2 {
    font-size: 32px;
}

.pricing-form-card {
    box-shadow: 0px 10px 70px 0px #21242914;
    background: #FFFFFF;
    padding: 24px;
    border-radius: 20px;
}

section.banner-primary {
    padding-top: 25px;
}

section.banner-primary .container {
    background: linear-gradient(85.65deg, #7F4DCD -29.73%, #9350DB -9.5%, #4844A8 37.16%, #31147A 102.8%);
    border-radius: 20px;
    padding: 80px 70px;
    position: relative;
    z-index: 1;
    color: #fff;
    overflow: hidden;
}

section.banner-primary .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-image: url('../images/background-images/banner-primary-1-bg.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    z-index: -1;
}

section.banner-primary .container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/background-images/banner-primary-2-bg.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    z-index: -1;
}

section.banner-primary .container .sec-header {
    width: 100%;
    max-width: 500px;
}

section.banner-primary .btn-secondary {
    position: absolute;
    top: 50%;
    right: 70px;
    transform: translate(200%, -50%);
    font-weight: 700;
    font-size: 18px;
    transition: .8s ease;
}

section.banner-primary.bp-animation .btn-secondary {
    transform: translate(0, -50%);
}

section.faq .faq-card {
    background: linear-gradient(90deg, #14157A -16.34%, #4844A8 61.1%, #9350DB 116.15%, #7F4DCD 140.02%);
    position: relative;
    border-radius: 20px;
    z-index: 1;
    padding: 37px 33px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    color: #fff;
    overflow: hidden;
}

section.faq .faq-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background-images/faq-card-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

section.faq .faq-card .title {
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.02;
}

section.faq .faq-card p {
    font-size: 16px;
    letter-spacing: -0.02;
    line-height: 24px;
    margin-bottom: 18px;
}

section.faq .faq-card .btn-secondary {
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    transform: translateY(200%);
    transition: .7s ease;
}

section.faq.faq-load .faq-card .btn-secondary {
    transform: translateY(0);
}

section.faq .faq-body .accordion-item,
section.faq .faq-body .accordion-button {
    background-color: transparent;
}

section.faq .faq-body .accordion-item {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    border-bottom: 1px solid #14157A1A;
    margin-bottom: 10px;
}

section.faq .faq-body .accordion-item .accordion-collapse {
    border-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

section.faq .faq-body .accordion-item .accordion-body {
    background-color: #fff;
    padding: 22px 30px;
    padding-top: 2px;
}

section.faq .faq-body .accordion-button {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    padding: 22px 30px;
}

section.faq .faq-body .accordion-button::after {
    content: '\F280';
    background-image: none;
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    transform: rotate(0deg);
    transition: 0.2s ease-in;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

}

section.faq .faq-body .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #14157A;
    box-shadow: none;
}

section.faq .faq-body .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}

section.bookDemo {
    position: relative;
    padding: 0;
}

section.bookDemo .book-demo-banner {
    padding-top: 87px;
    padding-bottom: 87px;
    background-image: url('../images/background-images/demo-main-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
}

section.bookDemo .book-demo-banner .banner-demo-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 550px;
}

section.bookDemo .book-demo-banner .banner-demo-content h1 {
    color: #fff;
    margin-bottom: 0;
}

section.bookDemo .book-demo-banner .banner-demo-content p {
    color: #FFFFFFB2;
    margin-bottom: 0;
}

section.bookDemo .book-demo-services {
    padding-top: 40px;
    padding-bottom: 30%;
}

section.bookDemo .book-demo-services .bds-box {
    width: 100%;
    max-width: 365px;
}

section.bookDemo .book-demo-services .bds-box .bds-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

section.bookDemo .book-demo-services .bds-box .bds-item .bds-icon {
    box-shadow: 0px 2px 8px 0px #2328691A;
    background: linear-gradient(90deg, #14157A -16.34%, #4844A8 61.1%, #9350DB 116.15%, #7F4DCD 140.02%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

section.bookDemo .book-demo-services .bds-box .bds-item .bds-icon img {
    height: 23px;
    width: auto;
}

section.bookDemo .book-demo-services .bds-box .bds-item .bds-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #000;
}

section.bookDemo .book-demo-form {
    position: absolute;
    top: 8%;
    right: 7%;
    width: 650px;
    z-index: 1;
}

section.bookDemo .book-demo-form::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6%;
    width: 100%;
    height: 55%;
    background-image: url('../images/card-images/bookDemo-card-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}

section.bookDemo .book-demo-form .pricing-form-card {
    width: 100%;
    max-width: 550px;
    margin: auto;
}

/* ===========================
   Footer Styles
=========================== */
.footer {
    background-color: #14157A;
    color: #ffffff;
}

.footer .footerTop {
    padding-top: 50px;
    padding-bottom: 40px;
}

.footer .center-nav li {
    font-weight: 400;
    font-style: italic;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    color: #fff;
}

.footer .social-nav li .social-link {
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    border: 1px solid #FFFFFF40;
    color: #fff;
    transition: 0.2s all;
    padding: 0;
    background-color: transparent;
    margin: 5px 5px;
    border-radius: 50%;
    transform: scale(1);
}

.footer .social-nav li .social-link i {
    font-size: 24px;
}

.footer .social-nav li .social-link i::before {
    line-height: inherit !important;
    vertical-align: middle !important;
}

.footer .social-nav li .social-link:hover {
    background-color: #fff;
    color: #14157A;
    transform: scale(1.18);
}

.footer .footer-bottom {
    padding-top: 43px;
    padding-bottom: 34px;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #fff;
}

.footer .footer-bottom ul.usefulLink-nav li a,
.footer .footer-bottom a {
    padding: 10px 10px;
    color: #fff;
    text-decoration: none;
}

.footer .footer-bottom ul.usefulLink-nav li a:hover,
.footer .footer-bottom a:hover {
    color: #FFFFFFB2;
}

.footer .footer-line .container {
    height: 1px;
    background: #FFFFFF26;
}


/* ===========================
   Meda Quries Responsives
=========================== */

@media (min-width: 1800px) {
    .banner-section .banner-mobile-img img.banner-mobile {
        height: calc(100vh - 280px);
    }

    .banner-section .banner-mobile-img img.existingBadge {
        top: -10%;
    }
}

@media (max-width: 1400px) {

    section.bookDemo .book-demo-banner .banner-demo-content {
        max-width: 450px;
    }

    section.bookDemo .book-demo-form {
        right: 0;
    }

    .banner-section .banner-mobile-img img.banner-mobile {
        height: calc(100vh - 350px);
    }

    .banner-section .banner-mobile-img img.userBnr {
        border-radius: 12px;
    }

}

@media (max-width: 1200px) {

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    .banner-section .banner-content {
        width: 100%;
        max-width: 380px;
    }

    .banner-section .banner-mobile-img img.banner-mobile {
        height: calc(100vh - 450px);
    }

    .banner-section .banner-mobile-img img.userBnr {
        border-radius: 8px;
    }

    section.faq .faq-body .accordion-button {
        font-size: 18px;
        padding: 18px 25px;
        padding-right: 35px;
    }

    section.bookDemo .book-demo-banner .banner-demo-content {
        max-width: 350px;
    }

    .footer .social-nav li .social-link {
        width: 40px;
        height: 40px;
    }

    .footer .social-nav li .social-link i {
        font-size: 18px;
    }
}

@media (max-width: 1200px) and (min-width: 992px) {

    section.bookDemo .book-demo-services .bds-box {
        max-width: 300px;
    }

    .footer .footerTop {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .footer .footerTop img {
        max-width: 180px;
    }

    .footer .center-nav li {
        font-size: 16px;
    }

    .footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer .footer-bottom {
        font-size: 12px;
    }

    .footer .footer-bottom ul.usefulLink-nav li a,
    .footer .footer-bottom a {
        padding: 5px 5px;
    }
}

@media (max-width: 992px) {

    .navbar-brand img {
        width: 100%;
        max-width: 170px;
    }

    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .banner-section {
        padding-top: 80px;
        padding-bottom: 0;
        height: auto;
    }

    .banner-section .banner-content {
        max-width: 600px;
        margin: auto;
    }

    .banner-section .banner-mobile-img img.banner-mobile {
        width: 240px;
        height: auto;
    }

    .banner-section .banner-mobile-img img.userBnr {
        border-radius: 6px;
    }

    .banner-section .banner-mobile-img img.existingBadge {
        top: -10%;
    }

    section.banner-primary .container {
        padding: 40px 30px;
    }

    section.banner-primary .btn-secondary {
        position: relative;
        left: 0;
        transform: none;
        margin-top: 40px;
    }

    section.banner-primary.bp-animation .btn-secondary {
        transform: none;
    }

    section.banner-primary .container::after {
        background-size: cover;
    }

    section.introduction .card .card-content {
        padding: 20px 14px;
        gap: 13px;
    }

    section.introduction {
        background-size: inherit;
    }

    section.introduction .card .card-title {
        font-size: 18px;
        line-height: 24px;
    }

    section.introduction .card .card-pra {
        font-size: 16px;
        line-height: 24px;
    }

    section.get-pricing {
        padding-bottom: 80px;
    }

    section.banner-primary {
        padding-top: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    section.banner-primary .container::before {
        width: 100%;
    }

    section.banner-primary .container::after {
        width: 100%;
        background-size: 50%;
        background-position: top right;
    }

    section.bookDemo .book-demo-banner {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    section.bookDemo .book-demo-banner .banner-demo-content {
        max-width: 550px;
    }

    section.bookDemo .book-demo-services {
        padding-bottom: 80px;
    }

    section.bookDemo .book-demo-services .bds-box {
        width: 100%;
        max-width: 665px;
    }

    section.bookDemo .book-demo-form {
        position: relative;
        top: 0;
        margin-top: 40px;
    }

    section.faq .faq-card .btn-secondary,
    section.faq.faq-load .faq-card .btn-secondary {
        transform: none;
    }
}

/* ===========================
   Mobile Menu
=========================== */

.toggle-menu {
    background-color: #14157A;
    border-color: #14157A;
    color: #ffffff;
    border-radius: 8px;
    width: 50px;
    height: 41px;
    position: relative;
    padding: 0;
}

.toggle-menu span {
    display: block;
    width: 30px;
    height: 2px;
    overflow: hidden;
    position: absolute;
    background-color: #fff;
    transition: 0.3s all;
    transform-origin: left center;
    left: 10px
}

.toggle-menu span:first-child {
    top: 13px
}

.toggle-menu span:nth-child(2) {
    top: 20px;
}

.toggle-menu span:last-child {
    top: 27px;
}

.toggle-menu.active span:first-child {
    top: 9px;
    transform: rotate(45deg);
    left: 13px;
}

.toggle-menu.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.toggle-menu.active span:last-child {
    top: 31px;
    transform: rotate(-45deg);
    left: 13px;
}

.toggle-menu:focus,
.toggle-menu:active {
    box-shadow: none;
}

.menu-overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    overflow: hidden;
    z-index: 1;
    top: 0;
    left: 0;
    transition: 0.5s ease-in;
    background-color: rgb(31 0 118 / 95%);
    z-index: 98;
}

.menu-overlay .overlay-content {
    position: relative;
    top: 15%;
    text-align: center;
    overflow: hidden;
    display: none;
}

.menu-overlay .overlay-content ul li a {
    width: 100%;
    padding: 20px 30px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}

.menu-overlay.show-menu {
    height: 100%;
    transition: 0.5s ease-in;
}

@media (min-width: 992px) {
    .toggle-menu {
        display: none;
    }
}

@media (max-width: 767px) {

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 26px;
    }

    section p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 26px;
    }

    .gap-24 {
        gap: 18px !important;
    }

    .banner-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .banner-section .banner-mobile-img {
        width: 100%;
        height: auto;
    }

    .banner-section .banner-mobile-img img.banner-mobile {
        width: 160px;
    }

    .banner-section .banner-mobile-img img.userBnr {
        left: -75%;
        width: calc(100% - 10%);
        border-radius: 4px;
    }

    section.introduction {
        background-size: cover;
    }

    section.introduction h2 {
        margin-bottom: 30px;
    }

    section.introduction .card {
        width: 100%;
        max-width: 350px;
        margin: auto;
    }

    section.introduction .card .card-content {
        padding: 20px 16px;
        gap: 15px;
    }

    section.introduction .card .card-title {
        font-size: 20px;
        line-height: 24px;
    }

    section.introduction .card .card-pra {
        font-size: 16px;
        line-height: 24px;
    }

    section.booth-analytics {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    section.booth-analytics::before {
        width: 100%;
    }

    section.booth-analytics::after {
        top: unset;
        bottom: 0;
        width: 40%;
        height: 10%;
        background-size: 100%;
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
    }

    section.banner-primary .container {
        padding: 30px 20px;
    }

    section.bookDemo .book-demo-banner {
        padding-top: 35px;
        padding-bottom: 35px;
        background-position: center;
    }

    section.bookDemo .book-demo-services .bds-box {
        max-width: 365px;
    }

    section.bookDemo .book-demo-services .bds-box .bds-item {
        gap: 10px;
    }

    section.bookDemo .book-demo-services .bds-box .bds-item .bds-icon {
        width: 35px;
        height: 35px;
    }

    section.bookDemo .book-demo-services .bds-box .bds-item .bds-icon img {
        height: 16px;
    }

    section.bookDemo .book-demo-services .bds-box.gap-30 {
        gap: 20px !important;
    }

    section.bookDemo .book-demo-form {
        margin-top: 30px;
    }

    section.bookDemo .book-demo-form .pricing-form-card {
        max-width: 90%;
    }

    section.bookDemo .book-demo-form::after {
        bottom: -13%;
    }

    .footer-bottom ul.usefulLink-nav {
        flex-direction: column;
        align-items: center;
    }

    .footer .footer-bottom ul.usefulLink-nav li a,
    .footer .footer-bottom a {
        padding: 5px 10px;
    }
}

@media (max-width: 400px) {

    h1 {
        font-size: 30px;
    }

    .main-navbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-brand {
        padding: 0;
    }

    /* .navbar-brand img {
        max-width: 130px;
    } */

    .banner-section .banner-mobile-img img.banner-mobile {
        width: 130px;
    }

    section.never-miss .sec-header h2,
    section.get-pricing h2 {
        font-size: 27px;
    }

    .main-navbar .btn-primary {
        padding: 6px 10px;
    }

    .toggle-menu {
        width: 40px;
        height: 34px;
    }

    .toggle-menu span {
        width: 20px;
        height: 2px;
    }

    .toggle-menu span:first-child {
        top: 8px;
    }

    .toggle-menu span:nth-child(2) {
        top: 15px;
    }

    .toggle-menu span:last-child {
        top: 22px;
    }

    .toggle-menu.active span:first-child {
        top: 7px;
        left: 13px;
    }

    .toggle-menu.active span:last-child {
        top: 21px;
        left: 12px;
    }

    .eventScan-body {
        padding-top: 66px;
    }

}

@media (max-width: 320px) {
    .navbar-brand img {
        max-width: 110px;
    }

    .banner-section .banner-mobile-img img.banner-mobile {
        width: 110px;
    }

}