@font-face {
    font-family: 'Gotham';
    src: url('https://trackme.blog/w3speedup-design/wp-content/themes/understrap/fonts/Gotham/Gotham-Book.woff2') format('woff2');
    font-weight: 350;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('https://trackme.blog/w3speedup-design/wp-content/themes/understrap/fonts/Gotham/GOTHAM-MEDIUM.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('https://trackme.blog/w3speedup-design/wp-content/themes/understrap/fonts/Gotham/GOTHAM-BOLD.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('https://trackme.blog/w3speedup-design/wp-content/themes/understrap/fonts/Gotham/GOTHAM-BLACK.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('https://trackme.blog/w3speedup-design/wp-content/themes/understrap/fonts/Gotham/GOTHAM-ULTRA.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   CSS CUSTOM PROPERTIES & BASE STYLES
   ========================================================================== */

:root {
    /* Typography */
    --font-family-primary: 'Gotham', sans-serif;
    --font-family-secondary: 'Roboto', sans-serif;

    /* Color Palette */
    --header-color-primary: #00c1cf;
    --header-color-primary-dark: #00C1CF;
    --header-color-primary-light: #00C1CF47;
    --header-color-primary-hover: #05d2e061;
    --header-color-bg-main: #17305D;
    --header-color-bg-light: #e0f6fa;
    --header-color-bg-tab: #EFFCFE;
    --header-color-bg-tab-dark: #0c234c;
    --header-color-white: #fff;
    --header-color-black: #000;
    --header-color-grey: #182E5B78;
    --header-color-scrollbar-track: #17305d;
    --header-color-border-light: #FFFFFF1A;

    /* Typography Scale */
    --fs-h1: 2.5rem;
    --fs-h2: 2rem;
    --fs-h3: 1.75rem;
    --fs-h4: 1.5rem;
    --fs-h5: 1.25rem;
    --fs-h6: 1.125rem;
    --fs-body: 1rem;
    --fs-body2: 14px;
    --fs-small: 0.875rem;

    /* Line Heights */
    --lh-heading: 1.2;
    --lh-body: 1.6;

    /* Font Weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;

    /* Layout Variables */
    --navbar-height-desktop: 80px;
    --mobile-menu-width: 350px;
    --border-radius: 4px;
    --transition-standard: 0.3s ease;
    --dropdown-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --head-container-max-width: 1440px;
    --main-container-max-width: 1440px;
    --footer-container-max-width: 1440px;

    /* Z-index Scale */
    --z-dropdown: 1000;
    --z-navbar: 999;
    --z-mobile-menu: 9999;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: var(--font-family-secondary);
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    font-weight: var(--fw-regular);
    color: #111;
    background-color: var(--header-color-white);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-primary);
    line-height: var(--lh-heading);
    font-weight: var(--fw-bold);
    color: #111;
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h4 {
    font-size: var(--fs-h4);
}

h5 {
    font-size: var(--fs-h5);
}

h6 {
    font-size: var(--fs-h6);
}

p,
li,
ol,
ul,
a,
button {
    font-family: var(--font-family-secondary);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    font-weight: var(--fw-regular);
    color: inherit;
}

.dropdown-menu li a {
    font-size: var(--fs-body2);
}

a {
    text-decoration: none;
    cursor: pointer;
}

ul,
ol {
    list-style-position: inside;
    padding-left: 1rem;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--head-container-max-width);
    padding: 0 15px;
    margin: 0 auto;
    display: block;
}

.head-container {
    width: 100%;
    max-width: var(--head-container-max-width);
    padding: 0 15px;
    margin: 0 auto;
}
.main-container {
    width: 100%;
    max-width: var(--main-container-max-width);
    padding: 0 15px;
    margin: 0 auto;
}
.foot-container {
    width: 100%;
    max-width: var(--footer-container-max-width);
    padding: 0 15px;
    margin: 0 auto;
}
.hide {
    display: none;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.transition-standard {
    transition: var(--transition-standard);
}
.no-scroll {
    overflow: hidden;
}
section.custom_header_banner {
    display: none;
}
a.skip-link.sr-only.sr-only-focusable {
    display: none;
}
.vc_column_container>.vc_column-inner {
    padding: 0;
}
.wpb-content-wrapper #embed .calBookingCloseIcn {
    width: 32px;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}
.wpb-content-wrapper #embed iframe {
    transform: translate(-50%, -50%);
    width: 96% !important;
    top: 50% !important;
    left: 50% !important;
    max-width: 1140px;
    height: 70vh !important;
}

/*----------popup for form----------*/
form.wpcf7-form.init {
    padding: 10px;
}
.cst-w3pop-popup1 label {
    text-align: left;
    color: #fff;
    width: 100%;
    text-transform: capitalize;
}
label {
    display: inline-block;
    margin-bottom: .5rem;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    height: 100px;
    max-width: unset;
}

section.vc_section.vc_custom_1758636491943 .vc_row.wpb_row.vc_row-fluid.vc_custom_1758636500110 {
    margin: 0;
}
/*----------popup for form----------*/

.row-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media (min-width: 768px) {
    .row-flex .col-md-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -moz-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
}
.row-flex div#sidebar-2 {
    max-width: 20%;
    width: 375px;
}
body.single-tools div#content.container {
    max-width: 1920px;
}
@media (min-width: 1500px) {
    html body div#page .row-flex div#primary+.widget-area[role="complementary"] {
        max-width: 380px;
        position: relative;
        margin: 0;
        margin-right: -14px;
        right: 0px;
        top: 0px;
        padding-right: 15px;
        padding-left: 15px;
    }
    .single-post .row-flex div#primary {
        border: unset;
        padding: 0;
        text-align: left;
        background: white;
        box-shadow: unset;
        border-radius: 0px;
        float: left;
        display: inline-block;
        flex: unset;
        box-sizing: border-box;
        margin: 0px;
        max-width: calc(100% - 100px);
        width: 58vw;
        padding-right: 15px;
        padding-left: 15px;
    }
}
.single-post .full-width-banner {
    background-image: url(https://trackme.blog/w3speedup-design/wp-content/themes/understrap/images/main-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden ;
    background-position: center;
    height: 244px;
}
.single-post h1.entry-title {
    width: 100%;
    text-transform: unset;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    text-align: center;
    font-size: 37px;
    margin-top: 122px;
}

/*----------Industry Section----------*/
section.vc_section.industries-section {
    padding: 50px 0 100px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
section.industries-section .container {
    display: flex;
    align-items: center;
}
section.industries-section .container .industry-head-box .small-head-box {
    margin-bottom: 0;
}
section.industries-section .container .industry-head-box .small-heading-box {
    margin-bottom: 10px;
}
section.industries-section .container .industry-head-box .industry-head-main {
    margin-bottom: 0;
}
section.industries-section .container .industry-head-box .industry-head-main h2.review-head {
    font-weight: 500;
    font-size: 55px;
    line-height: 64px;
    text-transform: capitalize;
}
section.industries-section .container .industry-content-box .industry-content-main {
    margin-bottom: 24px;
}
section.industries-section .container .industry-content-box .industry-content-main p.testimonial-content {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.64px;
}
section.industries-section .container .industry-content-box .industry-btn-box {
    margin-bottom: 0;
}
section.industries-section .container .industry-content-box .industry-btn-box a.industry-btn {
    background: #212121;
    border-radius: 6px;
    padding: 10px 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
}
section.industries-section .container .vc_tta-container {
    border-top: 1px solid #0B0F1C14;
    margin-bottom: 0;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs {
    border-top: 1px solid #0B0F1C14;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-tabs-container {
    margin: 0;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list {
    border: 0;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab {
    background: #F7F7FA;
    margin: 0;
    position: relative;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a {
    background: #0B0F1C;
    margin: 0;
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 41.5px;
    color: #FFFFFF;
    border-radius: 0;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a i.vc_tta-icon {
    background: #FFFFFF42;
    padding: 10px;
    font-size: 28px;
    height: 54px;
    width: 54px;
    color: rgb(255 255 255 / 80%);
    position: relative;
    border-radius: 6px;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a i.vc_tta-icon:before {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a span.vc_tta-title-text {
    margin: 12px 0 0;
    font-family: Gotham;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab.vc_active a {
    background: #F7F7FA;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab.vc_active a i.vc_tta-icon {
    background: #00CDEB;
    color: #fff;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab.vc_active a span.vc_tta-title-text {
    color: #000;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels {
    border: 0;
    background: #F7F7FA;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab {
    background: #F7F7FA;
    margin-bottom: 0;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-body {
    background: #F7F7FA;
    padding: 70px 24px;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-body .vc_row {
    display: flex;
    align-items: center;
    gap: 40px;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-body .vc_row:before,
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-body .vc_row:after{
    display: none;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-body .vc_row .industry-tab-head-box {
    margin-bottom: 14px;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-body .vc_row .industry-tab-head-box h3.industry-tab-head {
    font-family: Roboto;
    font-weight: 700;
    font-size: 23.25px;
    line-height: 32px;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-body  .industry-tab-content-box {
    margin-bottom: 28px;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-body .industry-tab-content-box p.industry-tab-content {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    vertical-align: middle;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-body .industry-tab-list-box {
    margin-bottom: 0;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-body .industry-tab-list-box ul.industry-tab-list {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-body .industry-tab-list-box ul.industry-tab-list li {
    position: relative;
}
section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-body .industry-tab-list-box ul.industry-tab-list li:before {
    content: '\f058';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    color: #00CC66;
    margin-right: 10px;
}
@media(max-width:767px){
    section.vc_section.industries-section {
        padding: 80px 0;
    }
    section.industries-section .container {
        flex-wrap: wrap;
        gap: 20px;
    }
    section.industries-section .container .industry-head-box .industry-head-main h2.review-head {
        font-size: 36px;
        line-height: 50px;
    }
    section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-heading {
        background: #0B0F1C;
        color: #fff;
        margin: 0;
    }
    section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab.vc_active .vc_tta-panel-heading {
        background: #F7F7FA;
    }
    section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-heading h4.vc_tta-panel-title a i.vc_tta-icon {
        background: #FFFFFF42;
        padding: 7px;
        font-size: 20px;
        height: 54px;
        width: 54px;
        color: rgb(255 255 255 / 80%);
        position: relative;
        border-radius: 6px;
    }
    section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-heading h4.vc_tta-panel-title a {
        color: #fff;
    }
    section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab.vc_active .vc_tta-panel-heading h4.vc_tta-panel-title a {
        color: #000;
    }
    section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab.vc_active .vc_tta-panel-heading h4.vc_tta-panel-title a i.vc_tta-icon {
        background: #00CDEB;
        color: #fff;
    }
    section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-body {
        padding: 20px 20px;
    }
    section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels div.industry-tab .vc_tta-panel-body .vc_row {
        flex-wrap: wrap;
    }
}
@media(min-width:768px) and (max-width:1024px){
    section.vc_section.industries-section {
        padding: 80px 0;
    }
    section.industries-section .container .industry-head-box .industry-head-main h2.review-head {
        font-size: 38px;
        line-height: 46px;
    }
    section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a {
        padding: 20px 14px;
    }
    section.industries-section .container .vc_tta-container .vc_tta.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a i.vc_tta-icon {
        font-size: 20px;
        padding: 8px;
        height: 45px;
        width: 45px;
    }
}
/*----------Industry Section End----------*/
/*----------contact us section----------*/
section.vc_section.contact-us-section.cstContactSection {
    background-image: url(https://trackme.blog/w3speedup-design/wp-content/uploads/2025/10/contact-bg.png);
    background-color: #0B0F1C;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}
section.vc_section.contact-us-section.cstContactSection .section-head {
    max-width: 593px;
}
section.vc_section.contact-us-section.cstContactSection .section-head .small-head-box {
    margin-bottom: 10px;
}
section.vc_section.contact-us-section.cstContactSection .section-head .section-heading {
    margin-bottom: 20px;
}
section.vc_section.contact-us-section.cstContactSection .section-head .section-heading h2.heading-titles-dev {
    font-family: Gotham;
    font-weight: 500;
    font-size: 52px;
    line-height: 60px;
    vertical-align: middle;
    color: #FFFFFF;
}
section.vc_section.contact-us-section.cstContactSection .section-head .page-content p.page-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
}
section.vc_section.contact-us-section.cstContactSection .container {
    display: flex;
    gap: 40px;
}
section.vc_section.contact-us-section.cstContactSection .container:before,
section.vc_section.contact-us-section.cstContactSection .container:after{
    display: none;
}
section.vc_section.contact-us-section.cstContactSection .section-head .contact-data {
    margin-bottom: 0;
}
section.vc_section.contact-us-section.cstContactSection .section-head .contact-data .stats-grid .stat-card .stat-icon img {
    filter: brightness(1.7);
}
section.vc_section.contact-us-section.cstContactSection .section-head .contact-data .stats-grid .stat-card div h3.stat-number {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    vertical-align: middle;
    color: #fff;
    margin: 5px 0;
}
section.vc_section.contact-us-section.cstContactSection .section-head .contact-data .stats-grid .stat-card div p.stat-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
}
section.vc_section.contact-us-section.cstContactSection .container .contact-right-box {
    background: linear-gradient(137.24deg, rgba(59, 128, 244, 0.12) 0.57%, rgba(142, 68, 173, 0.12) 100%);
    background-color: #fff;
    padding: 82px 114px;
    max-width: unset;
    border-radius: 14px;
    margin-top: -200px;
    height: fit-content;
    margin-left: auto;
}
section.vc_section.contact-us-section.cstContactSection .container .contact-right-box .wpb_raw_code.wpb_raw_html.wpb_content_element {
    margin-bottom: 0;
}
section.vc_section.contact-us-section.cstContactSection .container .contact-right-box .contact-card:last-child {
    margin-bottom: 0;
}
section.vc_section.contact-us-section.cstContactSection .section-head .contact-data .stats-grid .stat-card:nth-child(1) {
    border-top: 0;
    border-left: 0;
}
section.vc_section.contact-us-section.cstContactSection .section-head .contact-data .stats-grid .stat-card:nth-child(3) {
    border-bottom: 0;
    border-left: 0;
}
section.vc_section.contact-us-section.cstContactSection .section-head .contact-data .stats-grid .stat-card:nth-child(4) {
    border-bottom: 0;
    border-right: 0;
    padding-left: 53px;
}
section.vc_section.contact-us-section.cstContactSection .section-head .contact-data .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
section.vc_section.contact-us-section.cstContactSection .section-head .contact-data .stats-grid  .stat-card:nth-child(2) {
    border-top: 0;
    border-right: 0;
    padding-left: 53px;
}
section.vc_section.contact-us-section.cstContactSection .section-head .contact-data .stats-grid .stat-card {
    text-align: left;
    padding: 40px 20px;
    border: 1px solid #6868681a;
    display: flex;
    gap: 15px;
    align-items: center;
}
section.vc_section.contact-us-section.cstContactSection .section-head .contact-data .stats-grid .stat-card .stat-icon img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}
/* stats card css end */
section.vc_section.contact-us-section.cstContactSection .container .contact-right-box .wpb_raw_code.wpb_raw_html.wpb_content_element .contact-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
section.vc_section.contact-us-section.cstContactSection .container .contact-right-box .wpb_raw_code.wpb_raw_html.wpb_content_element .contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}
section.vc_section.contact-us-section.cstContactSection .container .contact-right-box .wpb_raw_code.wpb_raw_html.wpb_content_element .contact-card .contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #eaf1fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
section.vc_section.contact-us-section.cstContactSection .container .contact-right-box .wpb_raw_code.wpb_raw_html.wpb_content_element .contact-card .contact-icon img {
    width: 24px;
    height: 24px;
}
section.vc_section.contact-us-section.cstContactSection .container .contact-right-box .wpb_raw_code.wpb_raw_html.wpb_content_element .contact-card .contact-info {
    flex: 1;
}
section.vc_section.contact-us-section.cstContactSection .container .contact-right-box .wpb_raw_code.wpb_raw_html.wpb_content_element .contact-card .contact-info .contact-title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin: 0;
}
section.vc_section.contact-us-section.cstContactSection .container .contact-right-box .wpb_raw_code.wpb_raw_html.wpb_content_element .contact-card .contact-info .contact-detail {
    font-size: 15px;
    color: #444;
    margin: 3px 0 0;
}
section.vc_section.contact-us-section.cstContactSection .container .contact-right-box .wpb_raw_code.wpb_raw_html.wpb_content_element .contact-card a {
    display: flex;
    align-items: center;
}
@media(max-width:767px){
    section.vc_section.contact-us-section.cstContactSection {
        padding: 60px 15px;
    }
    section.vc_section.contact-us-section.cstContactSection .container {
        flex-wrap: wrap;
    }
    section.vc_section.contact-us-section.cstContactSection .section-head {
        max-width: 100%;
    }
    section.vc_section.contact-us-section.cstContactSection .section-head .section-heading h2.heading-titles-dev {
        font-size: 36px;
        line-height: 45px;
    }
    section.vc_section.contact-us-section.cstContactSection .section-head .contact-data .stats-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    section.vc_section.contact-us-section.cstContactSection .section-head .contact-data .stats-grid .stat-card:nth-child(2),
        section.vc_section.contact-us-section.cstContactSection .section-head .contact-data .stats-grid .stat-card:nth-child(4){
        padding-left: 20px;
    }
    section.vc_section.contact-us-section.cstContactSection .container .contact-right-box {
        padding: 32px 20px;
        margin-top: 0;
    }
}
/*----------contact us section end----------*/
/*----------cta section----------*/
section.vc_section.cta-section {
    padding: 50px 0 0;
}
section.vc_section.cta-section .container {
    display: flex;
    background: url(https://trackme.blog/w3speedup-design/wp-content/uploads/2025/10/cta-section.png);
    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 14px 24px;
    align-items: center;
    border-radius: 12px;
    margin-bottom: -212px;
    z-index: 9999;
    position: relative;
}
section.vc_section.cta-section .container .cta-content-box {
    width: 100%;
}
section.vc_section.cta-section .container .cta-content-box .cta-heading-box {
    margin-bottom: 12px;
}
section.vc_section.cta-section .container .cta-content-box .cta-heading-box h2.cta-heading {
    font-weight: 500;
    font-size: 46px;
    line-height: 54px;
}
section.vc_section.cta-section .container .cta-content-box .content-cta-box {
    margin-bottom: 32px;
}
section.vc_section.cta-section .container .cta-content-box .content-cta-box p.content-cta {
    max-width: 679px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4F5B6D;
}
section.vc_section.cta-section .container .cta-content-box .content-cta-box p.content-cta:not(:last-child){
    margin-bottom: 15px;
}
section.vc_section.cta-section .container .cta-content-box .button-flex .wpb_wrapper {
    display: flex;
    gap: 10px;
}
section.vc_section.cta-section .container .cta-content-box .button-flex .wpb_wrapper a.action-btn {
    opacity: 1;
    border-radius: 6px;
    padding: 10px 16px;
    color: #fff;
}
section.vc_section.cta-section .container .cta-content-box .button-flex .wpb_wrapper a.get-started {
    background: #00CDEB;
}
section.vc_section.cta-section .container .cta-content-box .button-flex .wpb_wrapper a.contact-us {
    background: #212121;
}
section.vc_section.cta-section .container .cta-img-box .cta-img {
    margin-bottom: 0;
}
#wrapper-footer-full {
    padding-top: 212px;
    position: relative;
}
#wrapper-footer-full:before {
    content:'';
    background-image: url(https://trackme.blog/w3speedup-design/wp-content/uploads/2025/07/dots-bg.png);
    position: absolute;
    width: 100%;
    height: 212px;
    opacity: 0.4;
    top: 0;
}
@media(max-width:767px){
    section.vc_section.cta-section {
        padding: 40px 0 0;
    }
    
    section.vc_section.cta-section .container {
        flex-wrap: wrap;
        background-position: right;
    }
    
    section.vc_section.cta-section .container .cta-content-box .cta-heading-box h2.cta-heading {
        font-size: 27px;
        line-height: 36px;
    }
}
/*----------cta section end----------*/
/*----------faq-section----------*/
section.vc_section.faq-section-main {
    padding: 100px 0 50px;
}
section.faq-section-main .faq-section.container {
    display: flex;
    justify-content: space-between;
}
section.faq-section-main .faq-section.container:before, section.faq-section-main .faq-section.container:after {
    display: none;
}
section.faq-section-main .faq-section.container .left-faq-content .small-heading-box {
    margin-bottom: 15px;
}
section.faq-section-main .faq-section.container .left-faq-content .section-heading {
    margin-bottom: 20px;
}
section.faq-section-main .faq-section.container .left-faq-content .page-content {
    margin-bottom: 40px;
}
section.faq-section-main .faq-section.container .left-faq-content .button-flex {
    margin-bottom: 0;
}
section.faq-section-main .faq-section.container .left-faq-content .page-content p.page-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}
section.faq-section-main .faq-section.container .left-faq-content .button-flex a.theme-btn.explore-btn {
    padding-top: 12px;
    padding-right: 26px;
    padding-bottom: 12px;
    padding-left: 26px;
    border-radius: 6px;
    background: #00CDEB;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    max-width: 209px;
    margin-left: 0;
}
.faq-section .right-faq-block .vc_toggle_icon {
    display: none;
}
section.vc_section.faq-section-main .container .right-faq-block .vc_do_toggle.vc_toggle_size_md .vc_toggle_title {
    padding-left: 0;
}
section.vc_section.faq-section-main .container .right-faq-block .vc_do_toggle {
    border: 1px solid #e8e8e8;
    padding: 28px 25px;
    margin-bottom: 17px;
}
section.vc_section.faq-section-main .container .right-faq-block .vc_do_toggle.vc_toggle_size_md .vc_toggle_title > h4 {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    display: block;
}
.faq-section .right-faq-block .vc_toggle_content {
    font-size: 18px;
}
.faq-section .right-faq-block .vc_toggle_title > h4::after {
    background-image: url(https://trackme.blog/w3speedup-design/wp-content/uploads/2025/09/Vector-12-1.png);
    padding-right: 25px;
    background-repeat: no-repeat;
    background-position: right;
    position: absolute;
    content: "";
    right: 0;
    width: 30px;
    height: 30px;
}
section.vc_section.faq-section-main .container .right-faq-block .vc_do_toggle.vc_toggle_size_md.vc_toggle_active .vc_toggle_title > h4 {
    color: #00CDEB;
}
.faq-section .right-faq-block .vc_toggle_active .vc_toggle_title > h4::after {
    background-image: url(https://trackme.blog/w3speedup-design/wp-content/uploads/2025/09/arrow.png);
}
section.vc_section.faq-section-main .container .right-faq-block .vc_do_toggle .vc_toggle_content {
    padding-left: 0;
}
section.vc_section.faq-section-main .container .left-faq-content > .vc_column-inner {
    max-width: 536px;
}
section.vc_section.faq-section-main .container .right-faq-block .vc_do_toggle:last-child {
    margin-bottom: 0;
}
@media(max-width:767px){
    section.vc_section.faq-section-main {
        padding: 80px 0 40px;
    }
    section.faq-section-main .faq-section.container {
        flex-wrap: wrap;
        gap: 40px;
    }
    section.faq-section-main .faq-section.container .left-faq-content .small-head-box {
        margin-bottom: 10px;
    }
    section.vc_section.faq-section-main .container .right-faq-block .vc_do_toggle.vc_toggle_size_md .vc_toggle_title > h4 {
        font-size: 20px;
    }
    section.vc_section.faq-section-main .container .right-faq-block .vc_do_toggle {
        padding: 24px 18px;
    }
}
/*----------faq-section----------*/
/*----------reviews-section----------*/

.dw.review_list {
    display: flex;
    gap: 32px;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
}
.dw.review_list .dw-pnl.dw-pnl--fcs {
    border-radius: 12px;
    padding: 24px 18px;
    background: #FFFFFF;
    max-width: 384px;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .bg-clr {
    position: relative;
    margin-bottom: 15px;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .bg-clr img {
    width: 348px;
    height: 178px;
    object-fit: cover;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .bg-clr .review_format_detail {
    position: absolute;
    border-radius: 26px;
    padding: 6px 14px;
    background: #00CDEB;
    color: #fff;
    bottom: -2px;
    right: 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .bg-ajd {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    min-height: 108px;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .bg-ajd p.p1 {
    order: 2;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4F5B6D;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .bg-ajd p.w3_hidden {
    display: none;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .bg-ajd h3.h3-1 {
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 4px;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .link_page {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0px 6px 12px 0px #D9D9D95C;
    padding: 12px;
    margin-bottom: 30px;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .link_page:after{
    content: '';
    position: absolute;
    height:64px;
    width: 2px;
    border: 1.5px dashed #414342
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .link_page .score {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .link_page .score > div {
    margin-bottom: 6px;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .link_page .score > div i {
    font-size: 16px;
    margin-right: 5px;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .link_page .score span.review_score_span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .9rem;
    border: 3px solid;
    margin-bottom: 6px;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .link_page .score span.review_score_span.border-color-green {
    border-color: #099b51;
    color: #058744;
    background: #E5FAEF;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .link_page .score span.review_score_span.border-color-orange {
    border-color:#FFA200;
    color: #c05400;
    background: #ffa20012;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .link_page .score span.review_score_span.border-color-red {
    border-color:#ff4e42;
    color: #d0170a;
    background: #ff4e420f;
}
.dw.review_list .dw-pnl.dw-pnl--fcs .dw-pnl__cntnt .link_container {
    border-radius: 6px;
    padding: 14px 38px;
    background: #00CDEB;
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.load-more-sec {
    text-align: center;
}
.load-more-sec a.load_more_review.p-digital-button {
    font-weight: 325;
    font-size: 18px;
    line-height: 100%;
    color: #FFFFFF;
    border-radius: 6px;
    padding: 16px 26px;
    background: #212121;
    cursor: pointer;
}
/*----------reviews-section-end----------*/
/* =========================================
   AEO / GEO — CONTACT POPUP
   FIRST DESIGN
   ========================================= */
#cst-w3pop-popup11.cst-w3pop-overlay1 {
    display: none;
}
#cst-w3pop-popup11.active-popup {
    display: flex !important;
}
#cst-w3pop-popup11 {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0px;
    box-sizing: border-box;
    align-items: center;
    background: rgb(0 0 0 / 40%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999999;
    justify-content: center;
}
/* =========================================
   POPUP CONTAINER
   ========================================= */
#cst-w3pop-popup11 .cst-w3pop-popup1 {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: hidden;
    overflow-x: hidden;
    padding: 0;
    background: radial-gradient(circle at 0% 0%, rgba(53, 143, 255, 0.12), transparent 25%), radial-gradient(circle at 100% 100%, rgba(126, 65, 255, 0.08),             transparent 25%), #fafdff;
    border: 1px solid rgba(60, 145, 255, 0.45);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(11, 30, 60, 0.28), 0 0 35px rgba(55, 145, 255, 0.08);
    scrollbar-width: thin;
    scrollbar-color: #b8c8e8 transparent;
}
/* Decorative top-left shape */
#cst-w3pop-popup11 .cst-w3pop-popup1::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    top: -145px;
    left: -100px;
    background: linear-gradient(135deg, rgba(74, 157, 255, 0.18), rgba(136, 92, 255, 0.04));
    border-radius: 50%;
    pointer-events: none;
}
/* Decorative bottom-right shape */
#cst-w3pop-popup11 .cst-w3pop-popup1::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -160px;
    bottom: -180px;
    background: linear-gradient(
        135deg,
        rgba(71, 218, 238, 0.08),
        rgba(121, 77, 255, 0.12)
    );
    border-radius: 50%;
    pointer-events: none;
}
/* =========================================
   CONTENT
   ========================================= */
#cst-w3pop-popup11 .cst-w3pop-content1 {
    position: relative;
    z-index: 2;
    padding: 20px 20px 20px;
}
/* =========================================
   CLOSE BUTTON
   ========================================= */
#cst-w3pop-popup11 .cst-w3pop-close1 {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(40, 100, 180, 0.08);
    border-radius: 50%;
    color: transparent;
    font-size: 0;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(20, 50, 90, 0.12);
    z-index: 20;
    transition: all 0.25s ease;
}
/* X */
#cst-w3pop-popup11 .cst-w3pop-close1::before,
#cst-w3pop-popup11 .cst-w3pop-close1::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    background: #172c52;
    border-radius: 5px;
    transition: background 0.25s ease;
}
#cst-w3pop-popup11 .cst-w3pop-close1::before {
    transform: rotate(45deg);
}
#cst-w3pop-popup11 .cst-w3pop-close1::after {
    transform: rotate(-45deg);
}
#cst-w3pop-popup11 .cst-w3pop-close1:hover {
    background: #216fff;
    transform: rotate(90deg);
}
#cst-w3pop-popup11 .cst-w3pop-close1:hover::before,
#cst-w3pop-popup11 .cst-w3pop-close1:hover::after {
    background: #fff;
}
/* =========================================
   TITLE
   ========================================= */
#cst-w3pop-popup11 .popup-title {
    position: relative;
    margin: 0;
    text-align: center;
    font-family: inherit;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #101e4c;
}
/* Gradient title */
#cst-w3pop-popup11 .popup-title {
    background: linear-gradient(
        90deg,
        #101e4c 0%,
        #101e4c 42%,
        #1879ee 65%,
        #7135e8 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Title underline */
#cst-w3pop-popup11 .popup-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 3px;
    margin: 16px auto 22px;
    background: linear-gradient(
        90deg,
        #168eff,
        #7736ed
    );
    border-radius: 20px;
}
/* =========================================
   SUBTITLE
   ========================================= */
#cst-w3pop-popup11 .popup-subtitle {
    margin: 0 auto 34px;
    max-width: 700px;
    text-align: center;
    color: #62779d;
    font-size: 16px;
    line-height: 1.6;
}
/* =========================================
   CONTACT FORM
   ========================================= */
#cst-w3pop-popup11 .contact-form {
    display: block;
    width: 100%;
}
#cst-w3pop-popup11 .contact-form p {
    margin: 0 0 18px;
}
/* =========================================
   LABELS
========================================= */
#cst-w3pop-popup11 .contact-form label {
    display: block;
    color: #172e55;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 0;
}
/* =========================================
   INPUTS
   ========================================= */
#cst-w3pop-popup11 .contact-form input[type="text"],
#cst-w3pop-popup11 .contact-form input[type="email"],
#cst-w3pop-popup11 .contact-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d2dff2;
    border-radius: 8px;
    color: #172e55;
    font-size: 15px;
    outline: none;
    box-shadow:
    0 3px 12px rgba(34, 91, 160, 0.035);
    transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
    margin-bottom: 0;
}
/* Normal input height */
#cst-w3pop-popup11 .contact-form input[type="text"],
#cst-w3pop-popup11 .contact-form input[type="email"] {
    height: 45px;
}
/* Message */
#cst-w3pop-popup11 .contact-form textarea {
    min-height: 100px;
    resize: vertical;
}
/* Focus */
#cst-w3pop-popup11 .contact-form input:focus,
#cst-w3pop-popup11 .contact-form textarea:focus {
    background: #ffffff;
    border-color: #3689f4;
    box-shadow: 0 0 0 3px rgba(54, 137, 244, 0.10), 0 5px 18px rgba(54, 137, 244, 0.06);
}
/* Placeholder */
#cst-w3pop-popup11 input::placeholder,
#cst-w3pop-popup11 textarea::placeholder {
    color: #9aaac2;
}
/* =========================================
   CAPTCHA AREA
   ========================================= */
#cst-w3pop-popup11 .enter {
    margin-top: 0;
}
/* CAPTCHA + INPUT */
#cst-w3pop-popup11 .removeBr {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: -2px;
    align-items: center;
}
/* Remove default paragraph spacing */
#cst-w3pop-popup11 .removeBr p {
    margin: 0;
}
/* CAPTCHA image */
#cst-w3pop-popup11 .rscpatcha_custom {
    display: flex;
    align-items: center;
}
#cst-w3pop-popup11 .rscpatcha_custom img {
    margin-top: 6px;
    display: block;
    width: 165px;
    height: 45px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid #d2dff2;
    border-radius: 6px;
    box-shadow:
    0 3px 12px rgba(40, 80, 140, 0.05);
}
/* CAPTCHA input */
#cst-w3pop-popup11 #cf7-number {
    width: 100%;
    height: 45px;
    box-sizing: border-box;
    padding: 13px 17px;
    background: #ffffff;
    border: 1px solid #d2dff2;
    border-radius: 6px;
    color: #172e55;
    font-size: 15px;
    outline: none;
    transition: all 0.25s ease;
    margin-bottom: 0;
}

#cst-w3pop-popup11 #cf7-number:focus {
    border-color: #3689f4;
    box-shadow: 0 0 0 3px rgba(54, 137, 244, 0.10);
}
/* =========================================
   SUBMIT BUTTON
   ========================================= */
#cst-w3pop-popup11 .enter > p:last-child {
    margin: 22px 0 0;
}
#cst-w3pop-popup11 .wordpress_inquiry_submit {
    width: 100%;
    height: 56px;
    border: 0 !important;
    border-radius: 11px !important;
    background: linear-gradient(
        100deg,
        #168fff 0%,
        #336cf2 48%,
        #7b2ff1 100%
    ) !important;
    color: #ffffff !important;
    font-family: inherit;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(66, 91, 235, 0.23);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
#cst-w3pop-popup11 .wordpress_inquiry_submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 32px rgba(66, 91, 235, 0.30);
    filter: brightness(1.04);
}
#cst-w3pop-popup11 .wordpress_inquiry_submit:active {
    transform: translateY(0);
}
/* =========================================
   CF7 SPINNER
   ========================================= */
#cst-w3pop-popup11 .wpcf7-spinner {
    margin-left: 10px;
    position: absolute;
}
/* =========================================
   CF7 RESPONSE
   ========================================= */
#cst-w3pop-popup11 .wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 10px 14px !important;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
}
/* =========================================
   HIDDEN CF7 ELEMENTS
   ========================================= */
#cst-w3pop-popup11 .screen-reader-response,
#cst-w3pop-popup11 .hidden-fields-container {
    position: absolute;
}
/* =========================================
   MOBILE
   ========================================= */
@media (max-width: 767px) {
    #cst-w3pop-popup11 {
        padding: 0 10px;
    }
    #cst-w3pop-popup11 .cst-w3pop-popup1 {
        max-height: 94vh;
        border-radius: 16px;
        max-width: 340px;
    }
    #cst-w3pop-popup11 .cst-w3pop-content1 {
        padding: 35px 22px 30px;
    }
    #cst-w3pop-popup11 .cst-w3pop-close1 {
        width: 34px;
        height: 34px;
        top: 8px;
        right: 8px;
    }
    #cst-w3pop-popup11 .popup-title {
        padding: 0 25px;

        font-size: 31px;
        letter-spacing: -0.7px;
    }
    #cst-w3pop-popup11 .popup-title::after {
        margin-bottom: 18px;
    }
    #cst-w3pop-popup11 .popup-subtitle {
        margin-bottom: 25px;

        font-size: 14px;
    }
    #cst-w3pop-popup11 .removeBr {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    #cst-w3pop-popup11 .rscpatcha_custom img {
        width: 110px;
        height: 40px;
    }
    #cst-w3pop-popup11 .contact-form input[type="text"],
    #cst-w3pop-popup11 .contact-form input[type="email"] {
        height: 40px;
    }
    #cst-w3pop-popup11 .contact-form textarea {
        min-height: 95px;
    }
    #cst-w3pop-popup11 .aeo-geo_inquiry_submit {
        height: 52px;
    }
}

/* =========================================
   SMALL MOBILE
   ========================================= */
@media (max-width: 480px) {
    #cst-w3pop-popup11 .cst-w3pop-content1 {
        padding: 30px 17px 25px;
    }
    #cst-w3pop-popup11 .popup-title {
        font-size: 27px;
        padding: 0 20px;
    }
    #cst-w3pop-popup11 .popup-subtitle {
        font-size: 13px;
    }
    #cst-w3pop-popup11 .contact-form p {
        margin-bottom: 14px;
    }
    #cst-w3pop-popup11 .contact-form label {
        font-size: 14px;
    }
}
form.wpcf7-form.init {
    padding: 0;
}
