/*! CSS Used from: Embedded */
body {
    transition: opacity ease-in 0.2s;
}

/*! CSS Used from: https://smartping.ai/wp-content/themes/smartping/assets/css/bootstrap.min.css */
*,
::after,
::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

h1,
h5 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--bs-heading-color);
}

h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width:1200px) {
    h1 {
        font-size: 2.5rem;
    }
}

h5 {
    font-size: 1.25rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ul {
    padding-left: 2rem;
}

ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: underline;
}

a:hover {
    --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

img,
svg {
    vertical-align: middle;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

button,
input,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

select {
    word-wrap: normal;
}

select:disabled {
    opacity: 1;
}

[type=button],
[type=submit],
button {
    -webkit-appearance: button;
}

[type=button]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

textarea {
    resize: vertical;
}

iframe {
    border: 0;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.col {
    flex: 1 0 0%;
}

@media (min-width:768px) {
    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
    .form-control {
        transition: none;
    }
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.form-control::placeholder {
    color: var(--bs-secondary-color);
    opacity: 1;
}

.form-control:disabled {
    background-color: var(--bs-secondary-bg);
    opacity: 1;
}

textarea.form-control {
    min-height: calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: .125rem;
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}

.form-check-input {
    --bs-form-check-bg: var(--bs-body-bg);
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
}

.form-check-input[type=checkbox] {
    border-radius: .25em;
}

.form-check-input:active {
    filter: brightness(90%);
}

.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: .5;
}

.btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

.btn:first-child:active {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
}

.btn:disabled {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: var(--bs-btn-disabled-bg);
    border-color: var(--bs-btn-disabled-border-color);
    opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0d6efd;
    --bs-btn-border-color: #0d6efd;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

.fade {
    transition: opacity .15s linear;
}

@media (prefers-reduced-motion:reduce) {
    .fade {
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

/*.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none;}*/
/*.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;}*/
/*@media (prefers-reduced-motion:reduce){*/
/*.nav-link{transition:none;}*/
/*}*/
/*.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color);}*/
/*.nav-link:disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default;}*/
/*.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd;}*/
/*.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius);}*/
/*.nav-pills .nav-link.active{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg);}*/
.tab-content>.tab-pane {
    display: none;
}

.tab-content>.active {
    display: block;
}

.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-bg: var(--bs-body-bg);
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: var(--bs-border-width);
    --bs-modal-border-radius: var(--bs-border-radius-lg);
    --bs-modal-box-shadow: var(--bs-box-shadow-sm);
    --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: var(--bs-border-width);
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: var(--bs-border-width);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
}

.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
}

@media (min-width:576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: var(--bs-box-shadow);
    }

    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
    }

    .modal-sm {
        --bs-modal-width: 300px;
    }
}

@media (min-width:992px) {

    .modal-lg,
    .modal-xl {
        --bs-modal-width: 800px;
    }
}

@media (min-width:1200px) {
    .modal-xl {
        --bs-modal-width: 1140px;
    }
}

.d-none {
    display: none !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

.align-content-center {
    align-content: center !important;
}

.align-self-center {
    align-self: center !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.mt-1 {
    margin-top: .25rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: .25rem !important;
}

.mb-2 {
    margin-bottom: .5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-2 {
    padding-top: .5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

@media (min-width:768px) {
    .d-md-block {
        display: block !important;
    }

    .order-md-1 {
        order: 1 !important;
    }

    .order-md-2 {
        order: 2 !important;
    }
}

/*! CSS Used from: https://smartping.ai/wp-content/cache/min/1/wp-content/themes/smartping/assets/css/swiper.min.css?ver=1763465950 */
.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-wrapper {
    transform: translate3d(0, 0, 0);
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

/*! CSS Used from: https://smartping.ai/wp-content/cache/background-css/1/smartping.ai/wp-content/cache/min/1/wp-content/themes/smartping/assets/css/header.css?ver=1763465950&wpr_t=1764732222 */
#page {
    -webkit-transition: .25s cubic-bezier(.645, .045, .355, 1);
    -o-transition: .25s cubic-bezier(.645, .045, .355, 1);
}

#page {
    position: relative;
    transition: .25s cubic-bezier(.645, .045, .355, 1);
}

/*! CSS Used from: https://smartping.ai/wp-content/cache/background-css/1/smartping.ai/wp-content/themes/smartping/assets/css/style.min.css?wpr_t=1764732222 */
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-display: swap;
    font-weight: 400;
    line-height: 1.5;
    color: #443A47;
    background-color: #FFFCFF;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}

.btn,
a {
    webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

p {
    color: #443A47;
}

@media (min-width: 1460px) {
    .container {
        max-width: 1490px;
    }
}

h5 {
    color: #19131C;
}

.form-control:focus {
    border-color: #782891 !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(120, 40, 145, .25);
}

.btn {
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 54px;
    padding: 0 40px;
    cursor: pointer;
    white-space: nowrap;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-radius: 6px;
    outline: 0;
}

.btn-primary {
    background: #782891;
}

.btn-hover-primary:hover,
.btn-hover-primary:focus {
    background: #71198d;
    border-color: #71198d;
}

.btn:first-child:active {
    color: #fff;
    background: #71198d;
    border-color: #71198d;
}

.swiper-container {
    -webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
    -o-transition: all .3s cubic-bezier(.645, .045, .355, 1);
    transition: all .3s cubic-bezier(.645, .045, .355, 1);
}

.swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.intro-section {
    position: relative;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 726px;
}

.intro-section .container {
    z-index: 9;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .intro-section {
        height: 550px;
    }
}

@media only screen and (max-width:767px) {
    .intro-section {
        height: 500px;
    }
}

.intro-section {
    max-height: 726px;
    overflow: hidden;
}

.video-slide video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: calc(100% + 3px);
    min-height: calc(100% + 3px);
    opacity: 1;
    max-width: calc(100% + 3px);
}

img {
    max-width: 100%;
    height: auto;
}

.form-wrap {
    gap: 25px;
}

.form-wrap .btn {
    min-width: 133px;
}

.section-padding-t-100 {
    padding-top: 65px;
}

.section-padding-b-100 {
    padding-bottom: 65px;
}

.custom-tabs {
    position: relative;
    gap: 35px;
}

.custom-tabs .nav-link {
    padding: 10px 20px;
    font-size: 18px;
    color: #443A47;
}

.custom-tabs:after {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    right: 0;
    max-width: 1040px;
    margin: 0 auto;
    bottom: -15px;
    height: 1px;
}

.custom-tabs .nav-link.active,
.custom-tabs .nav-link:hover {
    background: linear-gradient(137.77deg, #4E105A 0%, #2A0431 100%);
    color: #fff;
}

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: -60px;
    z-index: 999;
    -webkit-box-shadow: 0 30px 50px rgba(0, 0, 0, .03);
    box-shadow: 0 30px 50px rgba(0, 0, 0, .03);
    display: block;
    padding: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
    line-height: 60px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    background-color: #782891;
    background-size: 200% auto;
    background-position: left center;
    color: #fff;
    -webkit-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    -o-transition: all .25s cubic-bezier(.645, .045, .355, 1);
    transition: all .25s cubic-bezier(.645, .045, .355, 1);
    overflow: hidden;
}

.check-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
    display: flex;
    gap: 25px;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    font-size: 18px;
}

.check-list li:before {
    content: "";
    width: 23px;
    height: 23px;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAyMyAyMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMS41MDM0IDEuNDQzMzZDMTQuMTQwNyAxLjQ5MTAyIDE2LjY1MzggMi41NzIxMiAxOC41MDIgNC40NTQwMkMyMC4zNTAyIDYuMzM1OTIgMjEuMzg1NyA4Ljg2ODE4IDIxLjM4NTcgMTEuNTA1OUMyMS4zODU3IDE0LjE0MzUgMjAuMzUwMiAxNi42NzU4IDE4LjUwMiAxOC41NTc3QzE2LjY1MzggMjAuNDM5NiAxNC4xNDA3IDIxLjUyMDcgMTEuNTAzNCAyMS41Njg0QzguODY2MTQgMjEuNTIwNyA2LjM1MzAxIDIwLjQzOTYgNC41MDQ4MSAxOC41NTc3QzIuNjU2NjEgMTYuNjc1OCAxLjYyMTA5IDE0LjE0MzUgMS42MjEwOSAxMS41MDU5QzEuNjIxMDkgOC44NjgxOCAyLjY1NjYxIDYuMzM1OTIgNC41MDQ4MSA0LjQ1NDAyQzYuMzUzMDEgMi41NzIxMiA4Ljg2NjE0IDEuNDkxMDIgMTEuNTAzNCAxLjQ0MzM2Wk05LjQxMzY4IDE0Ljc3NDZMNi45NDk0IDEyLjMwODFDNi43NDc2OCAxMi4xMDU3IDYuNjM0NDIgMTEuODMxNiA2LjYzNDQyIDExLjU0NThDNi42MzQ0MiAxMS4yNjAxIDYuNzQ3NjggMTAuOTg2IDYuOTQ5NCAxMC43ODM1QzcuMTUyMTQgMTAuNTgyIDcuNDI2MzggMTAuNDY4OSA3LjcxMjIzIDEwLjQ2ODlDNy45OTgwOCAxMC40Njg5IDguMjcyMzIgMTAuNTgyIDguNDc1MDYgMTAuNzgzNUwxMC4yMTEgMTIuNTIxN0wxNC41MzE3IDguMjAwOThDMTQuNzM0MSA3Ljk5OTI2IDE1LjAwODMgNy44ODYgMTUuMjk0IDcuODg2QzE1LjU3OTggNy44ODYgMTUuODUzOSA3Ljk5OTI2IDE2LjA1NjMgOC4yMDA5OEMxNi4yNTc4IDguNDAzNTMgMTYuMzcwOCA4LjY3NzU5IDE2LjM3MDggOC45NjMyNkMxNi4zNzA4IDkuMjQ4OTQgMTYuMjU3OCA5LjUyMyAxNi4wNTYzIDkuNzI1NTVMMTAuOTcyMiAxNC44MDk2QzEwLjg2OSAxNC45MTIzIDEwLjc0NjEgMTQuOTkzMSAxMC42MTA5IDE1LjA0NzFDMTAuNDc1NyAxNS4xMDExIDEwLjMzMSAxNS4xMjczIDEwLjE4NTUgMTUuMTI0QzEwLjAzOTkgMTUuMTIwOCA5Ljg5NjU1IDE1LjA4ODEgOS43NjM5MiAxNS4wMjgxQzkuNjMxMyAxNC45NjggOS41MTIxNyAxNC44ODE4IDkuNDEzNjggMTQuNzc0NloiIGZpbGw9IiM3ODI4OTEiLz4KPC9zdmc+Cg==);
}

.text-white * {
    color: #fff !important;
}

.text-primary-bright {
    color: #C92CFA !important;
}

.contact-form .row {
    margin-bottom: 30px;
}

.contact-form textarea {
    resize: none;
}

.form-check-label a {
    text-decoration: none;
}

.contact-form .btn-primary {
    width: 304px;
}

#confirmationModal .modal-content select {
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSI+DQogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+DQogICAgICAgIDxwb2x5Z29uIHBvaW50cz0iMCAwIDI0IDAgMjQgMjQgMCAyNCIvPg0KICAgICAgICA8cGF0aCBkPSJNNi43MDcxMDY3OCwxNS43MDcxMDY4IEM2LjMxNjU4MjQ5LDE2LjA5NzYzMTEgNS42ODM0MTc1MSwxNi4wOTc2MzExIDUuMjkyODkzMjIsMTUuNzA3MTA2OCBDNC45MDIzNjg5MywxNS4zMTY1ODI1IDQuOTAyMzY4OTMsMTQuNjgzNDE3NSA1LjI5Mjg5MzIyLDE0LjI5Mjg5MzIgTDExLjI5Mjg5MzIsOC4yOTI4OTMyMiBDMTEuNjcxNDcyMiw3LjkxNDMxNDI4IDEyLjI4MTA1ODYsNy45MDEwNjg2NiAxMi42NzU3MjQ2LDguMjYyODQ1ODYgTDE4LjY3NTcyNDYsMTMuNzYyODQ1OSBDMTkuMDgyODQzNiwxNC4xMzYwMzgzIDE5LjExMDM0NjUsMTQuNzY4NjA1NiAxOC43MzcxNTQxLDE1LjE3NTcyNDYgQzE4LjM2Mzk2MTcsMTUuNTgyODQzNiAxNy43MzEzOTQ0LDE1LjYxMDM0NjUgMTcuMzI0Mjc1NCwxNS4yMzcxNTQxIEwxMi4wMzAwNzU3LDEwLjM4NDEzNzggTDYuNzA3MTA2NzgsMTUuNzA3MTA2OCBaIiBmaWxsPSIjMDAwMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyLjAwMDAwMywgMTEuOTk5OTk5KSByb3RhdGUoLTE4MC4wMDAwMDApIHRyYW5zbGF0ZSgtMTIuMDAwMDAzLCAtMTEuOTk5OTk5KSAiLz4NCiAgICA8L2c+DQo8L3N2Zz4=);
}

.form-check {
    padding-left: 9px;
}

.form-check input {
    background-color: transparent;
}

.custom-models-section .modal-content {
    background-image: var(--wpr-bg-f30489ef-942d-4ddd-98b3-4fd617f22daf);
    background-size: cover;
    border: none;
    border-radius: 12px;
}

.custom-models-section .modal-dialog {
    max-width: 600px;
}

.custom-models-section .modal-content {
    padding: 30px;
}

@media (max-width: 1440px) {
    .custom-models-section .modal-dialog {
        max-width: 1000px;
    }

    .custom-models-section .modal-content {
        padding: 20px;
    }
}

.custom-models-section .modal-content .form-control {
    font-size: 15px;
    font-family: "Inter", sans-serif;
}

.custom-models-section .modal-content input.form-control,
#confirmationModal select {
    min-height: 42px;
}

.custom-models-section p {
    margin-bottom: 0;
}

.custom-models-section .contact-form .row {
    margin-bottom: 10px;
}

.form-check .form-check-label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.form-check .form-check-label a {
    margin: 0 5px;
}

.custom-models-section .modal-header {
    padding: 0;
}

.custom-models-section .close {
    right: 10px;
    position: absolute;
    top: 0;
    outline: 0 0 0 !important;
    box-shadow: 0 0 0 !important;
    border: none;
    background: transparent;
    font-size: 35px;
    opacity: 0.5;
    z-index: 999;
}

.custom-models-section select {
    color: #19131C;
}

.custom-models-section .form-control::placeholder {
    color: #19131C;
    opacity: 1;
}

.custom-models-section .form-check-input:focus {
    border-color: #782891;
    box-shadow: 0 0 0 .25rem rgba(120, 40, 145, .25);
}

.custom-models-section .form-check-input:checked {
    background-color: #782891;
    border-color: #782891;
}

.custom-models-section .form-check {
    font-size: 13px;
    display: flex;
    align-items: center;
}

.custom-models-section .form-check input {
    border: 1px solid #443A47;
}

.custom-models-section .btn-primary {
    width: 200px;
    font-size: 14px;
    line-height: 46px;
    height: 48px;
    float: right;
}

.title {
    text-transform: capitalize;
}

.custom-models-section .wpcf7-response-output {
    text-align: center;
    font-size: 14px;
}

.modal-header {
    text-align: center;
    border-bottom: none;
}

#youtubevideoModal .close {
    background: transparent;
    border: none;
    position: absolute;
    font-size: 36px;
    color: #fff;
    z-index: 9;
    right: -40px;
    color: #fff;
    font-size: 34px;
    top: 0;
    line-height: 0;
}

#youtubevideoModal .modal-body {
    background: linear-gradient(271.47deg, #782891 -4.56%, #683AC9 99.7%);
    border-radius: 8px;
    padding: 10px 10px 7px;
}

#youtubevideoModal .modal-content {
    background: transparent;
}

#SchedulepopModal select {
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSI+DQogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+DQogICAgICAgIDxwb2x5Z29uIHBvaW50cz0iMCAwIDI0IDAgMjQgMjQgMCAyNCIvPg0KICAgICAgICA8cGF0aCBkPSJNNi43MDcxMDY3OCwxNS43MDcxMDY4IEM2LjMxNjU4MjQ5LDE2LjA5NzYzMTEgNS42ODM0MTc1MSwxNi4wOTc2MzExIDUuMjkyODkzMjIsMTUuNzA3MTA2OCBDNC45MDIzNjg5MywxNS4zMTY1ODI1IDQuOTAyMzY4OTMsMTQuNjgzNDE3NSA1LjI5Mjg5MzIyLDE0LjI5Mjg5MzIgTDExLjI5Mjg5MzIsOC4yOTI4OTMyMiBDMTEuNjcxNDcyMiw3LjkxNDMxNDI4IDEyLjI4MTA1ODYsNy45MDEwNjg2NiAxMi42NzU3MjQ2LDguMjYyODQ1ODYgTDE4LjY3NTcyNDYsMTMuNzYyODQ1OSBDMTkuMDgyODQzNiwxNC4xMzYwMzgzIDE5LjExMDM0NjUsMTQuNzY4NjA1NiAxOC43MzcxNTQxLDE1LjE3NTcyNDYgQzE4LjM2Mzk2MTcsMTUuNTgyODQzNiAxNy43MzEzOTQ0LDE1LjYxMDM0NjUgMTcuMzI0Mjc1NCwxNS4yMzcxNTQxIEwxMi4wMzAwNzU3LDEwLjM4NDEzNzggTDYuNzA3MTA2NzgsMTUuNzA3MTA2OCBaIiBmaWxsPSIjMDAwMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyLjAwMDAwMywgMTEuOTk5OTk5KSByb3RhdGUoLTE4MC4wMDAwMDApIHRyYW5zbGF0ZSgtMTIuMDAwMDAzLCAtMTEuOTk5OTk5KSAiLz4NCiAgICA8L2c+DQo8L3N2Zz4=);
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

@media (max-width: 1024px) {
    .form-wrap .btn {
        min-width: auto !important;
    }
}

@media (max-width: 1400px) and (min-width: 992px) {
    .custom-models-section .close {
        right: 5px;
    }

    .tab-content.pt-5 {
        padding-top: 1.5rem !important;
    }

    .check-list li {
        font-size: 15px;
    }
}

@media (max-width: 1023px) {
    .custom-models-section .modal-dialog {
        max-width: 900px;
    }
}

@media (max-width: 991px) {
    .custom-models-section .modal-dialog {
        max-width: 700px;
    }
}

.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
    background: #9c2cbf !important;
    border: #6c757d !important;
    opacity: 0.6 !important;
}

.wpcf7 form .wpcf7-response-output {
    padding: 10px !important;
    border-radius: 8px;
}

.home-videoyt-div {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

@media screen and (max-width: 768px) {
    .intro-section {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        height: 100% !important;
        padding: 50px 0 !important;
    }
}

.home-lead-form .timeSelect option {
    color: #000 !important;
}

.home-lead-form .timeSelect option[disabled="disabled"] {
    color: gray !important;
}

/*! CSS Used from: https://smartping.ai/wp-content/cache/min/1/wp-content/themes/smartping/assets/css/responsive.css?ver=1763465950 */
@media screen and (max-width:1700px) and (min-width:1400px) {
    .check-list li {
        font-size: 16px;
    }
}

@media screen and (max-width:1365px) and (min-width:1200px) {

    .btn,
    body {
        font-size: 14px;
    }

    .check-list li {
        font-size: 16px;
    }

    .video-slide video {
        min-width: calc(100% + 15px);
        min-height: calc(100% + 15px);
        max-width: calc(100% + 15px);
    }

    .form-wrap {
        gap: 20px;
    }

    .intro-section {
        height: 550px;
    }
}

@media screen and (max-width:1100px) {

    .check-list li,
    body {
        font-size: 14px;
    }

    .custom-tabs .nav-link {
        font-size: 16px;
    }

    .btn {
        height: 44px;
        font-size: 14px;
    }

    .btn {
        line-height: 42px;
        padding: 0 25px;
    }

    .video-slide video {
        min-width: calc(100% + 150px);
        min-height: calc(100% + 150px);
        opacity: 1;
        max-width: calc(100% + 150px);
    }

    .intro-section {
        height: 500px;
        padding: 100px 0;
    }

    .form-wrap {
        gap: 15px;
    }

    .section-padding-b-100 {
        padding-bottom: 50px;
    }

    .section-padding-t-100 {
        padding-top: 50px;
    }
}

@media screen and (max-width:991px) {
    .custom-tabs .nav-link {
        font-size: 14px;
    }

    .intro-section {
        padding: 50px 0;
    }

    .video-slide {
        padding: 80px 0;
    }

    .custom-tabs {
        gap: 10px;
    }
}

@media screen and (max-width:767px) {
    .section-padding-b-100 {
        padding-bottom: 70px;
    }

    .section-padding-t-100 {
        padding-top: 70px;
    }

    #pills-tabContent .row.align-items-center {
        gap: 20px;
    }

    .video-slide video {
        min-width: calc(100% + 700px);
        min-height: calc(100% + 700px);
        opacity: 1;
        max-width: calc(100% + 700px);
    }

    .intro-section {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        height: 100%;
    }
}

@media screen and (max-width:575px) {
    .intro-section {
        padding: 20px 0;
    }

    .video-slide video {
        margin-top: 0 !important;
    }

    .custom-tabs {
        gap: 0;
    }
}

@media screen and (max-width:420px) {
    .check-list li {
        font-size: 14px;
    }

    .form-wrap {
        flex-wrap: wrap;
    }

    .check-list li {
        padding-left: 28px;
    }

    .check-list li:before {
        width: 18px;
        height: 18px;
        top: 5px;
        background-size: 100% 100%;
    }
}

@media screen and (max-width:767px) {
    .section-padding-t-100 {
        padding-top: 70px;
    }

    .section-padding-b-100 {
        padding-bottom: 45px;
    }

    .contact-form .btn-primary {
        width: 100%;
    }

    .contact-form .row {
        margin-bottom: 20px;
    }

    .contact-form .row .col-md-6:first-child {
        margin-bottom: 10px;
    }
}

@media screen and (max-width:575px) {
    .section-padding-t-100 {
        padding-top: 35px;
    }

    .section-padding-b-100 {
        padding-bottom: 35px;
    }
}

/*! CSS Used from: https://smartping.ai/wp-content/cache/min/1/npm/swiper@11/swiper-bundle.min.css?ver=1763465950 */
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

.swiper-wrapper {
    transform: translate3d(0, 0, 0);
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}

/*! CSS Used from: https://smartping.ai/wp-includes/css/dist/block-library/style.min.css?ver=6.8.3 ; media=all */
@media all {
    ul {
        box-sizing: border-box;
    }
}

/*! CSS Used from: https://smartping.ai/wp-content/cache/background-css/1/smartping.ai/wp-content/cache/min/1/wp-content/plugins/date-picker-for-contact-form-7/assents/jquery-ui-themes/themes/base/jquery-ui.css?ver=1763465950&wpr_t=1764732222 ; media=all */
@media all {

    .ui-helper-clearfix:before,
    .ui-helper-clearfix:after {
        content: "";
        display: table;
        border-collapse: collapse;
    }

    .ui-helper-clearfix:after {
        clear: both;
    }

    .ui-datepicker {
        width: 17em;
        padding: .2em .2em 0;
        display: none;
    }

    .ui-widget {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1em;
    }

    .ui-widget.ui-widget-content {
        border: 1px solid #c5c5c5;
    }

    .ui-widget-content {
        border: 1px solid #ddd;
        background: #fff;
        color: #333;
    }

    .ui-corner-all {
        border-top-left-radius: 3px;
    }

    .ui-corner-all {
        border-top-right-radius: 3px;
    }

    .ui-corner-all {
        border-bottom-left-radius: 3px;
    }

    .ui-corner-all {
        border-bottom-right-radius: 3px;
    }
}

/*! CSS Used from: https://smartping.ai/wp-content/cache/background-css/1/smartping.ai/wp-content/cache/min/1/wp-content/plugins/date-picker-for-contact-form-7/assents/jquery-ui-themes/themes/base/theme.css?ver=1763465950&wpr_t=1764732222 ; media=all */
@media all {
    .ui-widget {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1em;
    }

    .ui-widget.ui-widget-content {
        border: 1px solid #c5c5c5;
    }

    .ui-widget-content {
        border: 1px solid #ddd;
        background: #fff;
        color: #333;
    }

    .ui-corner-all {
        border-top-left-radius: 3px;
    }

    .ui-corner-all {
        border-top-right-radius: 3px;
    }

    .ui-corner-all {
        border-bottom-left-radius: 3px;
    }

    .ui-corner-all {
        border-bottom-right-radius: 3px;
    }
}

/*! CSS Used from: https://smartping.ai/wp-content/cache/min/1/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=1763465950 ; media=all */
@media all {
    .wpcf7 .screen-reader-response {
        position: absolute;
        overflow: hidden;
        clip: rect(1px, 1px, 1px, 1px);
        clip-path: inset(50%);
        height: 1px;
        width: 1px;
        margin: -1px;
        padding: 0;
        border: 0;
        word-wrap: normal !important;
    }

    .wpcf7 form .wpcf7-response-output {
        margin: 2em .5em 1em;
        padding: .2em 1em;
        border: 2px solid #00a0d2;
    }

    .wpcf7 form.init .wpcf7-response-output {
        display: none;
    }

    .wpcf7-form-control-wrap {
        position: relative;
    }

    .wpcf7-list-item {
        display: inline-block;
        margin: 0 0 0 1em;
    }

    .wpcf7-spinner {
        visibility: hidden;
        display: inline-block;
        background-color: #23282d;
        opacity: .75;
        width: 24px;
        height: 24px;
        border: none;
        border-radius: 100%;
        padding: 0;
        margin: 0 24px;
        position: relative;
    }

    .wpcf7-spinner::before {
        content: '';
        position: absolute;
        background-color: #fbfbfc;
        top: 4px;
        left: 4px;
        width: 6px;
        height: 6px;
        border: none;
        border-radius: 100%;
        transform-origin: 8px 8px;
        animation-name: spin;
        animation-duration: 1000ms;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    @media (prefers-reduced-motion:reduce) {
        .wpcf7-spinner::before {
            animation-name: blink;
            animation-duration: 2000ms;
        }
    }

    .wpcf7 .wpcf7-submit:disabled {
        cursor: not-allowed;
    }

    .wpcf7 input[type="email"] {
        direction: ltr;
    }
}

/*! CSS Used from: Embedded */
.wpcf7 .wpcf7-recaptcha iframe {
    margin-bottom: 0;
}

/*! CSS Used from: Embedded */
.rll-youtube-player {
    position: relative;
    padding-bottom: 56.23%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.rll-youtube-player img {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}

.rll-youtube-player img:hover {
    -webkit-filter: brightness(75%);
}

.rll-youtube-player .play {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: var(--wpr-bg-4a9e2703-f36a-4525-be62-e2e2ed9b31f0) no-repeat center;
    background-color: transparent !important;
    cursor: pointer;
    border: none;
}

/*! CSS Used from: Embedded */
[data-wpr-lazyrender] {
    content-visibility: auto;
}

/*! CSS Used from: Embedded */
.custom-models-section .modal-content {
    --wpr-bg-f30489ef-942d-4ddd-98b3-4fd617f22daf: url('https://smartping.ai/wp-content/themes/smartping/assets/images/sparc/bg01.png');
}

.rll-youtube-player .play {
    --wpr-bg-4a9e2703-f36a-4525-be62-e2e2ed9b31f0: url('https://smartping.ai/wp-content/plugins/wp-rocket/assets/img/youtube.png');
}

.check-list li:before {
    --wpr-bg-f7a4729f-8a16-42cd-9f9c-e363a0756df8: url('https://smartping.ai/wp-content/uploads/2025/07/Icon-Frame-1.png');
}

/*! CSS Used from: Embedded */
body {
    font-family: 'Poppins', sans-serif !important;
}

.font-20 {
    font-size: 18px !important;
    font-weight: 500 !important;
}

.font-45 {
    font-size: 36px !important;
    font-weight: 700 !important;
}

.p-20 {
    padding-top: 20px !important;
}

.font-30 {
    font-size: 24px !important;
    font-weight: 400 !important;
}

.cst-gradient-heading {
    background: linear-gradient(90deg, #fe9792, #ff6bf5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.pt-50 {
    padding-top: 44px !important;
}

.font-38 {
    font-size: 38px !important;
    font-weight: 700 !important;
}

.font-17 {
    font-size: 17px !important;
    font-weight: 700 !important;
}

.bg-black {
    background-color: #000000 !important;
    border-radius: 60px !important;
    padding: 40px !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.sub-content p {
    margin-bottom: 5px !important;
}

.voices-zone {
    position: relative;
    border-radius: 60px !important;
    padding: 40px !important;
    overflow: hidden;
    z-index: 1;
    background-color: white !important;
}

.voices-zone::before {
    content: '';
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-repeat: no-repeat;
    background-size: 50% 50%;
    background-position: 0 0;
    background-image: conic-gradient(from 25deg, #8B3BA3, #D9D9D9, #8B3BA3);
    animation: rotate 4s linear infinite;
    border-radius: 50%;
}

.voices-zone::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 6px;
    left: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    background: #000000;
    border-radius: 54px;
}

.voice-samples {
    border: 1px solid white !important;
    border-radius: 15px !important;
    padding: 15px 10px !important;
    cursor: pointer !important;
}

.font-16 {
    font-size: 16px !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.font-21 {
    font-size: 21px !important;
}

.audio-button {
    cursor: pointer !important;
    background-color: #C5C5C5 !important;
    max-width: fit-content !important;
    padding: 30px !important;
}

.play-audio {
    cursor: pointer !important;
    background-color: #C5C5C5 !important;
    justify-items: center !important;
    max-width: fit-content !important;
    padding: 14px !important;
}

.voice-samples.active-voice {
    background-color: #8B3BA3 !important;
    border-color: white !important;
    color: white;
}

.feature-heading {
    font-weight: 500;
    font-size: 30px;
    letter-spacing: 0;
    background: linear-gradient(90deg, #4F0468, #C766E5, #22002D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.outcome-box {
    background-color: #F6F6F6 !important;
    color: #333333 !important;
    border-radius: 35px !important;
    padding: 30px !important;
    height: 370px !important;
}

.outcome-content {
    font-size: 17px !important;
    font-weight: 400 !important;
}

.gradient-header {
    font-weight: 500;
    font-size: 20px !important;
    letter-spacing: 0;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: black !important;
}

.feature-image {
    width: 660px !important;
    height: auto !important;
}

.feature-section .col-md-5 {
    width: 48% !important;
}

.feature-section .col-md-1 {
    width: 4% !important;
}

.font-54 {
    font-size: 54px !important;
}

.cstm-icon {
    width: 71px !important;
    height: auto !important;
}

.advantages-section {
    color: #333333 !important;
}

.advantage-box {
    background-color: #F4F2F5 !important;
    padding: 30px 20px !important;
    border-radius: 30px !important;
    height: 220px !important;
    border: 1px solid #e5e2e2;
}

.feature-section,
.feature-section p {
    color: #333333 !important;
}

svg {
    width: 100%;
    max-width: 800px;
}

.swiper-slide {
    display: flex;
    height: auto;
}

.swiper-container.outcome-slider {
    padding-bottom: 40px;
    position: relative;
}

.swiper-slide {
    width: 320px;
}

.outcome-box {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
    min-height: 250px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.custom-progress-bar {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    z-index: 10;
    cursor: pointer;
}

.custom-progress-indicator {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #4F0468, #C766E5, #22002D);
    border-radius: 3px;
    transition: all 0.3s ease;
    width: 0;
    left: 0;
    pointer-events: none;
}

.rating-section {
    background-color: #40134D !important;
}

.bg-cstm {
    background-color: #232323 !important;
    border-radius: 60px !important;
    border: 1px solid #52006D !important;
    padding: 60px !important;
    color: white !important;
    max-height: max-content !important;
}

/*.nav-link{color:white!important;border:1px solid #767676!important;}*/
/*.custom-tabs .nav-link.active,.custom-tabs .nav-link:hover{background:#8B3BA3!important;color:#fff;}*/
.check-list li:before {
    background-image: var(--wpr-bg-f7a4729f-8a16-42cd-9f9c-e363a0756df8);
    width: 28px !important;
    height: 28px !important;
    background-repeat: no-repeat;
}

.check-list li {
    padding-left: 45px !important;
}

.bg-demo {
    background-color: #282828 !important;
}

.custom-tabs:after {
    height: 0px !important;
}

@media (min-width: 768px) {
    .custom-tabs {
        gap: 12px !important;
        justify-content: center !important;
    }

    .ml-3 {
        margin-left: 50px !important;
    }

    .custom-padding {
        padding-top: 50px !important;
    }

    .pt-20 {
        padding-top: 20px !important;
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding-top: 20px !important;
        padding-bottom: 0px !important;
    }

    .font-20 {
        font-size: 16px !important;
    }

    .font-45 {
        font-size: 20px !important;
    }

    .custom-heading p {
        display: inline;
        white-space: normal;
    }

    .p-20 {
        padding-top: 10px !important;
    }

    .mb-4 {
        margin-bottom: 10px !important;
    }

    .pt-50 {
        padding-top: 20px !important;
    }

    .bg-black {
        padding: 20px !important;
        margin: 0px !important;
    }

    .font-38 {
        font-size: 23px !important;
    }

    .feature-section {
        padding: 0px 30px !important;
    }

    .feature-section .col-md-5 {
        width: 100% !important;
    }

    .pt-5 {
        padding-top: 10px !important;
    }

    .swiper-slide {
        width: 100% !important;
    }

    .rating-section .col-md-4 {
        width: 33% !important;
    }

    .font-54 {
        font-size: 28px !important;
    }

    .cstm-icon {
        width: 48px !important;
    }

    .rating-section .align-self-center {
        align-self: start !important;
    }

    .bg-cstm {
        padding: 30px 10px !important;
        margin: 0px 0px !important;
    }

    .custom-tabs {
        gap: 4px !important;
    }

    .check-list .font-17 {
        font-size: 14px !important;
    }

    .check-list li:before {
        width: 16px !important;
        height: 16px !important;
    }

    .check-list {
        gap: 15px !important;
    }

    .feature-heading {
        font-size: 22px !important;
    }

    .feature-section .p-5 {
        padding: 0px !important;
        padding-top: 10px !important;
    }

    .feature-section .font-17 {
        font-size: 14px !important;
    }

    .order-1 {
        margin-bottom: 20px !important;
    }
}

.button-pulse-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(139, 59, 163, 0.2);
    box-shadow: 0 0 15px rgba(139, 59, 163, 0.5);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    animation: none;
}

.audio-button {
    position: relative;
    width: 120px;
    background-color: #c5c5c5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.audio-button img {
    width: 28px;
    height: 28px;
}

#response-txt,
#response-txt1 {
    margin-top: 20px !important;
    width: 100%;
    height: 6em;
    overflow: hidden;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
    box-sizing: border-box;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: white !important;
    stroke-width: 3;
}

.progress-ring-fill {
    fill: none;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 315.74;
    stroke-dashoffset: 315.74;
    transition: stroke-dashoffset 0.2s linear;
}

.voice-samples:hover {
    background-color: #52006D;
    color: #fff;
}

.video-slide video {
    max-width: max-content !important;
}

.mic-icon {
    cursor: pointer !important;
    width: 89px !important;
}

.flip-words {
    display: inline-block;
    position: relative;
    perspective: 1000px;
    min-width: 16ch;
    text-align: left;
    vertical-align: baseline;
}

.flip-container {
    perspective: 1000px;
    vertical-align: baseline;
    height: max-content;
    overflow: hidden;
}

.flip-words {
    transform-origin: 50% 50% -0.5em;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in, opacity 0.6s ease;
    white-space: nowrap;
}

.main-heading {
    line-height: 1.3em !important;
}

.video-container {
    background: transparent !important;
    padding: 0;
}

.expbtn {
    border-radius: 15px !important;
    color: #8B3BA3 !important;
    background-color: #F5D5FF !important;
}

.intro-section .container {
    height: -webkit-fill-available !important;
}

.intro-section {
    height: max-content !important;
}

.video-slide video {
    top: 27%;
}

/*! CSS Used from: Embedded */
.modal-xl {
    height: -webkit-fill-available !important;
}

.modal-xl .modal-content {
    height: 100% !important;
}

.banner-dynamic {
    transition: color .5s ease-in-out
}

.highlight {
    color: #fc5e02 !important
}


a:hover{text-decoration:none;}
*{margin:0;padding:0;box-sizing:border-box;scroll-behavior:smooth;}
.schedule-btn{background:#fc5e02;border:1.30942px solid #fc5e02;box-shadow:0px 7.8565px 34.9178px rgba(0,0,0,.15);border-radius:8.25px;padding:8px 40px;color:#fff;font-family:"Work Sans";font-size:18px;cursor:pointer;font-weight:700;}
.schedule-btn:hover{background:#fff;border:1.30942px solid #fc5e02;color:#fc5e02;}
.schedule-head1 h4{font-family:"Work Sans";font-style:normal;font-weight:700;font-size:36px;color:#291e30;line-height:43px;}
.schedule-sec{padding:80px 0;}
@media (max-width:991.8px){
.schedule-head1 h4{font-size:28px;line-height:33px;}
.schedule-sec{padding:40px 30px 60px;}
.schedule-btn{font-size:20px;line-height:22px;}
}
@media only screen and (max-width:991.8px){
.ttext1{font-size:14px!important;line-height:17px!important;}
}
.ttext1{font-family:"DM Sans";font-style:normal;font-weight:400;font-size:18px;line-height:22px;color:#000;padding-bottom:20px;}

@media (max-width:991.98px){
.hide-sm{display:none;}
}
a:hover{text-decoration:none;}
*{margin:0;padding:0;box-sizing:border-box;scroll-behavior:smooth;}
/*.nav-item{background:#ebebeb;}*/
/*.nav-tabs{border-bottom:none;}*/
/*.nav-tabs .nav-link{font-size:16px;font-weight:600;color:#a0a0a0;background:#ebebeb;border:none;padding:12px 20px;margin-top:10px;}*/
/*.nav-tabs .nav-link.active{color:#1d1d1d;background:#fff;font-weight:700;border-width:1px 1px 0;border-style:solid;border-color:#ececec;border-radius:12px 12px 0 0!important;}*/
/*.nav-tabs .nav-link:hover{color:#1d1d1d;}*/
/*@media only screen and (min-width:767px){*/
/*.nav{flex-wrap:wrap!important;}*/
/*}*/
/*@media only screen and (max-width:766px){*/
/*.nav{flex-wrap:wrap!important;}*/
/*}*/
/*@media only screen and (max-width:698px){*/
/*.nav-tabs .nav-link{color:#98949a!important;border-top:0!important;border-right:0!important;border-left:0!important;font-size:18px;font-weight:400;line-height:27px;font-family:"Poppins",serif!important;}*/
/*.nav-tabs .nav-item{margin-bottom:-10px;}*/
/*}*/
/*@media only screen and (min-width:698px){*/
/*.nav-tabs .nav-link{color:#98949a!important;border-top:0!important;border-right:0!important;border-left:0!important;font-style:normal;font-weight:400;font-family:"Poppins",serif;font-style:normal;font-size:28px;line-height:42px;border:0 solid transparent;}*/
/*}*/
/*.nav-item.nav-link{border:1px solid #e0e0e0!important;}*/
/*.nav-tabs .nav-link.active{font-size:32px!important;font-family:"Poppins",serif!important;font-weight:600;color:#291e30!important;line-height:42px;margin-top:0;border:2px solid #ececec!important;}*/
/*.project-tab{padding:80px 0;}*/
@media only screen and (max-width:698px){
.tab-heading h3{font-family:"Work Sans",sans-serif;font-style:normal;font-weight:700;font-size:28px;line-height:34px;color:#222;}
}
@media only screen and (min-width:699px){
.tab-heading h3{font-family:"Work Sans";font-style:normal;font-weight:700;font-size:36px;color:#291e30;line-height:43px;}
}
.project-tab a{text-decoration:none;color:#000;font-weight:600;}
/*.nav-tabs{border-bottom:none!important;}*/
.nettinhead{font-family:"Work Sans";font-style:normal;font-weight:700;font-size:32px;line-height:38px;color:#291e30;}
@media only screen and (max-width:991.8px){
.nettinhead{font-size:19px;line-height:23px;}
.ttext{font-size:14px!important;line-height:17px!important;}
/*.nav-tabs .nav-link.active{font-size:20px!important;font-weight:600;line-height:30px!important;}*/
}
/*#nav-tabContent{background:#fff;padding:40px 20px 30px 50px;}*/
/*#nav-tabContent{border-width:0 2.0947px 2.0947px;border-style:solid;border-color:#ececec;border-radius:0 0 16.7576px 16.7576px;}*/
/*#nav-home-tab{border-width:2.0947px 0 0;border-style:solid;border-color:#ececec;}*/
/*@media only screen and (min-width:992px){*/
/*#nav-bussiness-tab{border-radius:0 12px 0 0;border-width:0 0 0 2.0947px;border-style:solid;border-color:#ececec;}*/
/*}*/
/*@media only screen and (max-width:991.8px){*/
/*#nav-contact-tab{border-radius:0 12px 0 0;border-width:0 0 0 2.0947px;border-style:solid;border-color:#ececec;}*/
/*}*/
.ttext{font-family:"DM Sans";font-style:normal;font-weight:400;font-size:18px;line-height:22px;color:#000;margin-top:20px;}