:root {
    --page-bg: #000000;
    --text: #ffffff;
    --heading: rgba(255, 255, 255, 0.88);
    --muted: rgba(255, 255, 255, 0.42);
    --muted-hover: rgba(255, 255, 255, 0.78);
    --rule: rgba(255, 255, 255, 0.09);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}
.kdng {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.kdng span code img {
    width: 25px;
}


body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.bonimenteur span code img {
    width: 30px;
}
.site-footer {
    width: 100%;
    padding: 84px 92px 58px;
    background: #000000;
}
.certds-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.footer-wrap,
.footer-brand-mark,
.footer-certifications,
.footer-bottom {
    width: min(100%, 1200px);
    margin-right: auto;
    margin-left: auto;
}

.footer-wrap {
    display: grid;
    grid-template-columns: 1.05fr 1.42fr 1fr 0.9fr 1.12fr;
    column-gap: 58px;
    align-items: start;
}

.footer-column h2,
.footer-certifications h2 {
    margin: 0 0 15px;
    color: var(--heading);
    font-size: 16px;
    line-height: 0;
    font-weight: 800;
    letter-spacing: 0;
}
.client-logo img {
    width: 110px;
        filter: brightness(0) invert(1);
}
.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-column li + li {
    margin-top: 1px;
}
 .whatsapp-img i {
     color: #fff;
     font-size: 33px;
     border-radius: 47px;
     position: fixed;
     bottom: 45px;
     z-index: 999;
     left: 13px;
     background: #25d366;
     transition: all .5s ease;
     animation-name: pulse;
     animation-duration: 1.4s;
     animation-timing-function: ease-out;
     animation-iteration-count: infinite;
     height: 55px;
     width: 55px;
     display: flex;
     align-items: center;
     text-align: center;
     justify-content: center;
 }
.footer-column a,
.footer-bottom a,
.footer-bottom p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0;
    text-decoration: none;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.18);
}

.footer-column a {
    display: inline-flex;
    align-items: center;
    transition: color 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: var(--muted-hover);
}

.footer-column a:focus-visible,
.footer-bottom a:focus-visible,
.social-links a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.52);
    outline-offset: 4px;
}

.footer-brand-mark {
    display: flex;
    justify-content: center;
    margin-top: 86px;
    margin-bottom: 58px;
    pointer-events: none;
}

.footer-brand-mark img {
    display: block;
    width: min(100%, 845px);
    height: auto;
    object-fit: contain;
    opacity: 1;
    /* filter:
        brightness(0)
        drop-shadow(0 0 1px rgba(255, 255, 255, 0.34))
        drop-shadow(0 0 10px rgba(255, 255, 255, 0.07)); */
}
.footer-certifications {
    margin-top: 0;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--rule);
    text-align: center;
}

.footer-certifications h2 {
    margin-bottom: 32px;
    font-size: 21px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 80px;
}

.certification-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.cert-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: 33px;
    object-fit: contain;
    opacity: 0.78;
    filter: grayscale(1) brightness(0.88);
}

.cert-logo-nasscom {
    height: 47px;
}

.cert-logo-ibm {
    height: 25px;
}

.cert-logo-msme {
    height: 22px;
}

.cert-logo-iso {
    height: 58px;
    opacity: 0.86;
}

.cert-divider {
    width: 1px;
    height: 61px;
    flex: 0 0 1px;
    background: rgba(255, 255, 255, 0.16);
}

.footer-bottom {
    min-height: 55px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 19px;
    padding-top: 29px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom span {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 991.98px) {
    .site-footer {
        padding: 64px 40px 48px;
    }

    .footer-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 42px 52px;
    }
.footer-brand-mark {
        margin-top: 74px;
        margin-bottom: 48px;
    }

    .footer-certifications {
        margin-top: 0;
    }

    .certification-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 26px 34px;
    }

    .cert-divider {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding: 44px 24px 38px;
    }

    .footer-wrap {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-column h2 {
        margin-bottom: 14px;
        font-size: 14px;
    }

    .footer-column li + li {
        margin-top: 1px;
    }

    .footer-column a {
        font-size: 13px;
    }
.footer-brand-mark {
        margin-top: 52px;
        margin-bottom: 38px;
    }



    .footer-brand-mark img {
        width: min(100%, 320px);

        opacity: 1;
    }

    .footer-certifications {
        margin-top: 0;
        padding-bottom: 36px;
    }

    .footer-certifications h2 {
        margin-bottom: 25px;
        font-size: 18px;
    }

    .cert-logo-yourstory {
        height: 29px;
    }

    .footer-bottom {
        flex-wrap: wrap;
        align-items: center;
        gap: 10px 14px;
        padding-top: 26px;
        text-align: center;
    }

    .footer-bottom a,
    .footer-bottom p {
        font-size: 11px;
    }
}
/* Certification awards row override */
.certification-row {
    justify-content: center;
    gap: 32px;
}

.cert-award-group,
.cert-business-group,
.cert-iso-group {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.cert-award-group {
    gap: 22px;
}

.cert-business-group {
    gap: 39px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.cert-iso-group {
    gap: 27px;
}

.cert-award-logo {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.9;
}

.cert-logo-deloitte,
.cert-logo-gptw,
.cert-logo-clutch {
    height: 50px;
}

.cert-logo {
    height: 31px;
}

.cert-logo-nasscom,
.cert-logo-msme {
    height: 47px;
}

.cert-logo-ibm {
    height: 42px;
}

.cert-logo-yourstory {
    height: 31px;
}

.cert-logo-iso {
    height: 68px;
}

.cert-divider {
    height: 114px;
}

@media (max-width: 991.98px) {
    .cert-award-group,
    .cert-business-group,
    .cert-iso-group {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 575.98px) {
    .certification-row {
        gap: 22px 26px;
    }

    .cert-award-group {
        width: 100%;
        gap: 18px;
    }

    .cert-business-group {
        gap: 14px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .cert-iso-group {
        gap: 20px;
    }

    .cert-logo-deloitte,
    .cert-logo-gptw,
    .cert-logo-clutch {
        height: 42px;
    }

    .cert-logo {
        height: 28px;
    }

    .cert-logo-iso {
        height: 50px;
    }

    .cert-logo-yourstory {
        height: 48px;
    }
}
/* Technologies contact block */
.footer-tech-column {
    min-width: 150px;
}

.tech-contact-block {
    margin-top: 10px;
}

.tech-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tech-contact-list li + li {
    margin-top: 0;
}

.tech-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.2);
    transition: color 160ms ease;
}

.tech-contact-list a:hover,
.tech-contact-list a:focus-visible {
    color: #ffffff;
}

.tech-contact-list i {
    width: 13px;
    min-width: 13px;
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    text-align: center;
}

.tech-follow-title {
    margin-top: 25px !important;
    margin-bottom: 13px !important;
    color: #ffffff !important;
}

.tech-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-social-links a {
    width: 24px;
    height: 23px;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    color: #000000;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    text-decoration: none;
    line-height: 1;
    overflow: hidden;
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.tech-social-links a:hover,
.tech-social-links a:focus-visible {
    color: #000000;
    background: linear-gradient(135deg, #ffffff 0%, #d9d9d9 100%);
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
    opacity: 1;
    transform: none;
}

.tech-social-links i {
    display: block;
    width: auto;
    height: auto;
    color: currentColor;
    font-size: 11px;
    line-height: 1;
}

.tech-social-links svg {
    width: 10px;
    height: 10px;
    display: block;
    fill: currentColor;
}

@media (max-width: 575.98px) {
    .tech-contact-block {
        margin-top: 22px;
    }

    .tech-contact-list a {
        font-size: 12px;
    }

    .tech-social-links a {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .tech-social-links i {
        font-size: 11px;
    }

    .tech-social-links svg {
        width: 10px;
        height: 10px;
    }
}




/* Footer Two Blog Events Section Start */
:root {
    --global-cta-hover-bg: linear-gradient(135deg, #8a8a8a 0%, #595959 46%, #343434 100%);
}

.contact-blog-events-hero,
.contact-blog-events-list,
.contact-blog-events-hero *,
.contact-blog-events-list * {
    box-sizing: border-box;
}

.contact-blog-events-hero img,
.contact-blog-events-list img {
    display: block;
    max-width: 100%;
}

section.contact-blog-events-hero {
    padding: 18px 0 0;
    background: #000;
}

section.contact-blog-events-list {
    margin: 0;
    padding: 28px 0 50px;
    background: #000;
}

.contact-blog-events-hero .container,
.contact-blog-events-list .container {
    width: min(100% - 160px, 1340px);
    max-width: 1340px;
    margin-inline: auto;
    padding-inline: 0;
}

.contact-blog-events-hero .row,
.contact-blog-events-list .row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 28px;
    margin-inline: -12px;
}

.contact-blog-events-hero .row {
    align-items: center;
}

.contact-blog-events-hero [class*="col-lg-"],
.contact-blog-events-list [class*="col-lg-"] {
    width: 100%;
    padding-inline: 12px;
}

.contact-blog-events-media,
.contact-blog-events-visitor,
.contact-blog-events-card-media,
.contact-blog-events-featured .item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.contact-blog-events-media img {
    width: 100%;
    min-height: 360px;
    border-radius: 20px;
    object-fit: cover;
}

.contact-blog-events-head h3 {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, .15) 35%, rgba(255, 255, 255, .08) 60%, rgba(0, 0, 0, .12) 100%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .4), inset 0 -1px 1px rgba(0, 0, 0, .15), 0 8px 24px rgba(0, 0, 0, .25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.contact-blog-events-head h2 {
    margin: 14px 0;
    color: #fff;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: 0;
}

.contact-blog-events-head p {
    max-width: 780px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(14px, 1.15vw, 17px);
    line-height: 1.55;
    font-weight: 500;
}

.contact-blog-events-duo {
    display: flex;
    gap: 20px;
}

.contact-blog-events-visitor img {
    width: 100%;
    height: 229px;
    border-radius: 13px;
    object-fit: cover;
}

.contact-blog-events-card-media img {
    width: 100%;
    aspect-ratio: 1 / 0.78;
    border-radius: 8px;
    object-fit: cover;
}

.contact-blog-events-card-copy {
    color: #fff;
}

.contact-blog-events-card-copy h2 {
    margin: 0;
    padding: 10px 0 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0;
}

.contact-blog-events-card-copy p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    line-height: 1.55;
    font-weight: 500;
}

.contact-blog-events-card-meta ul {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 10px 0;
    padding-left: 0;
}

.contact-blog-events-card-meta ul li {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    list-style: none;
}

.contact-blog-events-read {
    min-height: 29px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, .15) 35%, rgba(255, 255, 255, .08) 60%, rgba(0, 0, 0, .12) 100%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .4), inset 0 -1px 1px rgba(0, 0, 0, .15), 0 8px 24px rgba(0, 0, 0, .25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.contact-blog-events-read:hover,
.contact-blog-events-read:focus-within {
    animation: globalCtaHover 0.82s cubic-bezier(0.16, 0.9, 0.24, 1.18) both;
    background: var(--global-cta-hover-bg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 22px 42px rgba(0, 0, 0, 0.34), 0 0 0 7px rgba(255, 255, 255, 0.08);
}

.contact-blog-events-read p {
    margin: 0;
    color: #fff;
    line-height: 1;
}

.contact-blog-events-read p i {
    margin-left: 6px;
}

.contact-blog-events-carousel,
.contact-blog-events-carousel .item {
    height: 100%;
}

.contact-blog-events-carousel .item {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1.24;
    border-radius: 20px;
    background: #101010;
}

.contact-blog-events-carousel .item img {
    width: 100%;
    height: 100% !important;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
}

.contact-blog-events-carousel:not(.owl-loaded) .item:not(:first-child) {
    display: none;
}

.contact-blog-events-badge {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 3;
}

a.contact-blog-events-badge-link {
    min-height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 14px 32px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
    transition: background 0.25s ease, transform 0.25s ease;
}

@keyframes globalCtaHover {
    0% {
        transform: translateY(0) scale(1);
    }

    34% {
        transform: translateY(-7px) scale(1.075);
    }

    58% {
        transform: translateY(-2px) scale(1.025);
    }

    78% {
        transform: translateY(-4px) scale(1.05);
    }

    100% {
        transform: translateY(-3px) scale(1.045);
    }
}

@media (min-width: 992px) {
    .contact-blog-events-hero .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .contact-blog-events-hero .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .contact-blog-events-list .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 1199px) {
    .contact-blog-events-media img {
        min-height: 320px;
    }

    .contact-blog-events-visitor img {
        height: 240px;
    }

    .contact-blog-events-card-meta ul {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 991px) {
    section.contact-blog-events-hero {
        padding: 44px 0 20px;
    }

    .contact-blog-events-hero .container,
    .contact-blog-events-list .container {
        width: min(100% - 28px, 720px);
    }

    .contact-blog-events-media img {
        max-height: 420px;
        min-height: 280px;
    }

    .contact-blog-events-duo {
        margin-top: 24px;
    }

    .contact-blog-events-visitor {
        flex: 1 1 calc(50% - 10px);
    }

    .contact-blog-events-list .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .contact-blog-events-card-media img,
    .contact-blog-events-carousel .item img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .contact-blog-events-head h3 {
        min-height: 36px;
        padding: 0 18px;
        font-size: 11px;
    }

    .contact-blog-events-head h2 {
        margin: 16px 0 12px;
    }

    .contact-blog-events-duo {
        gap: 14px;
    }

    .contact-blog-events-visitor img {
        height: 210px;
    }

    .contact-blog-events-list .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-blog-events-card-media img,
    .contact-blog-events-carousel .item img {
        height: 270px;
    }

    .contact-blog-events-card-copy h2 {
        padding-top: 14px;
        font-size: 18px;
    }

    .contact-blog-events-card-copy p,
    .contact-blog-events-card-meta ul li {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    section.contact-blog-events-hero {
        padding-top: 34px;
    }

    section.contact-blog-events-list {
        padding-bottom: 34px;
    }

    .contact-blog-events-media img {
        min-height: 250px;
    }

    .contact-blog-events-duo {
        flex-direction: column;
    }

    .contact-blog-events-visitor {
        flex-basis: 100%;
    }

    .contact-blog-events-visitor img {
        height: 220px;
    }

    .contact-blog-events-card-media img,
    .contact-blog-events-carousel .item img {
        height: 235px;
        border-radius: 16px;
    }

    a.contact-blog-events-badge-link,
    .contact-blog-events-read {
        min-height: 28px;
        padding: 0 16px;
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .contact-blog-events-card-media img,
    .contact-blog-events-carousel .item img,
    .contact-blog-events-visitor img {
        height: 205px;
    }

    .contact-blog-events-card-copy h2 {
        font-size: 16px;
    }
}
/* Footer Two Blog Events Section End */

/* Footer Two Difference Panel Section Start */
#contact-difference-panel-section,
#contact-difference-panel-section * {
    box-sizing: border-box;
}

#contact-difference-panel-section {
    position: relative;
    overflow: hidden;
    padding: 64px 0 72px;
    color: #fff;
    background: #000;
}

.contact-difference-panel-wrap {
    width: min(100% - 72px, 1200px);
    margin: 0 auto;
}

.contact-difference-panel-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: start;
    margin-bottom: 22px;
}

.contact-difference-panel-title {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(30px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
}

.contact-difference-panel-copy {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
}

.contact-difference-panel-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding: 0 19px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(180deg, #6b6b6b 0%, #262626 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 14px 28px rgba(0, 0, 0, 0.26);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-difference-panel-btn:hover,
.contact-difference-panel-btn:focus-visible {
    transform: translateY(-3px);
    color: #fff;
    background: linear-gradient(135deg, #dc35ad 0%, #2d43ff 100%);
    box-shadow: 0 20px 38px rgba(72, 61, 255, 0.3);
    outline: 0;
}

.contact-difference-panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
    gap: 20px;
    align-items: stretch;
}

.contact-difference-panel-feature {
    position: relative;
    overflow: hidden;
    min-height: 386px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: #151515;
    box-shadow: inset 0 -170px 130px rgba(0, 0, 0, 0.9), inset 0 -70px 70px rgba(0, 0, 0, 0.78);
}

.contact-difference-panel-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 24% 86%, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.76) 26%, rgba(0, 0, 0, 0.38) 48%, transparent 70%), radial-gradient(ellipse at 84% 84%, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 34%, transparent 66%), linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 58%, rgba(0, 0, 0, 0.96) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.34) 100%);
    pointer-events: none;
}

.contact-difference-panel-feature img {
    width: 100%;
    height: 100%;
    min-height: 386px;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.contact-difference-panel-feature-copy {
    position: absolute;
    left: 40px;
    bottom: 31px;
    z-index: 2;
    max-width: 380px;
}

.contact-difference-panel-feature-copy h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(25px, 2.3vw, 30px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.contact-difference-panel-feature-copy p {
    max-width: 310px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.contact-difference-panel-badge {
    position: absolute;
    right: 32px;
    bottom: 19px;
    z-index: 3;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
    border-radius: 50%;
    background: #fff;
    color: #222;
    text-align: center;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.contact-difference-panel-badge::before {
    content: "";
    position: absolute;
    inset: 12px 13px 9px;
    width: 125px;
    left: 2px;
    top: 11px;
    background: url(../images/final/our-ready/award_gr_leaf.webp) center / 96% auto no-repeat;
    opacity: 1;
    pointer-events: none;
}

.contact-difference-panel-badge::after {
    content: "\2605";
    position: absolute;
    top: 19px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    color: #8a35ec;
    font-size: 19px;
    line-height: 1;
}

.contact-difference-panel-badge strong,
.contact-difference-panel-badge span {
    position: relative;
    z-index: 1;
}

.contact-difference-panel-badge strong {
    margin-top: -9px;
    color: #8a35ec;
    font-size: 31px;
    font-weight: 700;
    line-height: 0.86;
}

.contact-difference-panel-badge span {
    margin-top: 5px;
    color: #202020;
    font-size: 10px;
    font-weight: 700;
    line-height: 0.95;
}

.contact-difference-panel-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-difference-panel-stat {
    min-height: 184px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: linear-gradient(145deg, #222 0%, #151515 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: background 0.32s ease, transform 0.32s ease, box-shadow 0.32s ease;
}

.contact-difference-panel-stat.is-featured {
    background: radial-gradient(circle at 14% 126%, rgba(226, 43, 177, 0.86) 0%, rgba(226, 43, 177, 0.48) 24%, transparent 55%), radial-gradient(circle at 85% 142%, rgba(48, 62, 255, 0.98) 0%, rgba(48, 62, 255, 0.72) 36%, transparent 66%), linear-gradient(180deg, #202020 0%, #181818 55%, #141414 100%);
}

.contact-difference-panel-stats:hover .contact-difference-panel-stat.is-featured {
    background: linear-gradient(145deg, #222 0%, #151515 100%);
}

.contact-difference-panel-stats .contact-difference-panel-stat:hover,
.contact-difference-panel-stats .contact-difference-panel-stat:focus-within {
    background: radial-gradient(circle at 14% 126%, rgba(226, 43, 177, 0.86) 0%, rgba(226, 43, 177, 0.48) 24%, transparent 55%), radial-gradient(circle at 85% 142%, rgba(48, 62, 255, 0.98) 0%, rgba(48, 62, 255, 0.72) 36%, transparent 66%), linear-gradient(180deg, #202020 0%, #181818 55%, #141414 100%);
    transform: translateY(-4px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 22px 42px rgba(70, 55, 255, 0.28);
}

.contact-difference-panel-stat strong {
    margin-bottom: 8px;
    color: #fff;
    font-size: clamp(34px, 3vw, 40px);
    font-weight: 700;
    line-height: 1;
}

.contact-difference-panel-stat span {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
}

.contact-difference-panel-stat span::after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    margin: 20px 0 17px;
    background: rgba(255, 255, 255, 0.24);
}

.contact-difference-panel-stat p {
    max-width: 260px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .contact-difference-panel-wrap {
        width: min(100% - 28px, 720px);
    }

    .contact-difference-panel-head,
    .contact-difference-panel-grid {
        grid-template-columns: 1fr;
    }

    .contact-difference-panel-head {
        margin-bottom: 24px;
    }

    .contact-difference-panel-title {
        font-size: 30px;
    }

    .contact-difference-panel-feature,
    .contact-difference-panel-feature img {
        min-height: 390px;
    }

    .contact-difference-panel-feature-copy {
        left: 24px;
        right: 154px;
        bottom: 28px;
    }

    .contact-difference-panel-badge {
        right: 20px;
        bottom: 20px;
        width: 116px;
        height: 116px;
        padding-top: 16px;
    }

    .contact-difference-panel-badge::after {
        top: 16px;
        font-size: 16px;
    }

    .contact-difference-panel-badge strong {
        font-size: 27px;
    }

    .contact-difference-panel-badge span {
        font-size: 9px;
    }

    .contact-difference-panel-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 575px) {
    #contact-difference-panel-section {
        padding: 48px 0 56px;
    }

    .contact-difference-panel-feature,
    .contact-difference-panel-feature img {
        min-height: 430px;
    }

    .contact-difference-panel-feature-copy {
        left: 20px;
        right: 20px;
        bottom: 156px;
    }

    .contact-difference-panel-badge {
        left: 50%;
        right: auto;
        bottom: 18px;
        transform: translateX(-50%);
    }
}
/* Footer Two Difference Panel Section End */

/* Footer Two Testimonials Section Start */
.contact-testimonials-showcase,
.contact-testimonials-showcase * {
    box-sizing: border-box;
}

.contact-testimonials-showcase {
    position: relative;
    overflow: hidden;
    padding: 48px 0 68px;
    color: #fff;
    background: #000;
}

.contact-testimonials-wrap {
    position: relative;
    z-index: 1;
    width: min(100% - 160px, 1340px);
    margin: 0 auto;
    text-align: center;
}

.contact-testimonials-pill {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 19px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, .15) 35%, rgba(255, 255, 255, .08) 60%, rgba(0, 0, 0, .12) 100%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .4), inset 0 -1px 1px rgba(0, 0, 0, .15), 0 8px 24px rgba(0, 0, 0, .25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.contact-testimonials-title {
    display: block;
    max-width: 820px;
    margin: 0 auto 44px;
    color: #fff;
    font-size: clamp(28px, 3vw, 35px);
    font-weight: 800;
    line-height: 1.16;
    text-align: center;
    letter-spacing: 0;
}

.contact-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 16px;
    width: 100%;
}

.contact-testimonial-card {
    position: relative;
    overflow: hidden;
    min-height: 345px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    color: #fff;
    text-align: left;
    background: #121212;
}

.contact-testimonial-card.is-copy {
    min-height: 345px;
    height: 100%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    isolation: isolate;
    padding: 18px 17px 19px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.contact-testimonial-card.is-copy::before,
.contact-testimonial-card.is-copy::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.25s ease;
}

.contact-testimonial-card.is-copy::before {
    z-index: 0;
    background: radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.08), transparent 88px), linear-gradient(180deg, #151515 0%, #101010 52%, #120816 76%, #210b31 100%);
    opacity: 1;
}

.contact-testimonial-card.is-copy::after {
    z-index: 1;
    background: radial-gradient(ellipse at 100% 88%, rgba(224, 0, 145, 0.92) 0%, rgba(224, 0, 145, 0.62) 32%, transparent 70%), radial-gradient(ellipse at 4% 108%, rgba(98, 45, 236, 0.7) 0%, rgba(98, 45, 236, 0.42) 38%, transparent 68%), linear-gradient(180deg, transparent 0%, rgba(33, 8, 43, 0.32) 54%, rgba(153, 0, 126, 0.72) 100%);
    opacity: 1;
}

.contact-testimonial-tags,
.contact-testimonial-quote,
.contact-testimonial-author {
    position: relative;
    z-index: 2;
}

.contact-testimonial-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-testimonial-tag {
    min-height: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, rgba(104, 104, 104, 0.92) 0%, rgba(46, 46, 46, 0.98) 52%, rgba(24, 24, 24, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -1px 0 rgba(0, 0, 0, 0.22), 0 7px 14px rgba(0, 0, 0, 0.24);
}

.contact-testimonial-tag.has-flag-img {
    min-width: 57px;
    gap: 5px;
    padding: 0 9px 0 8px;
}

.contact-testimonial-tag.has-flag-img::after {
    content: "UAE";
}

.contact-testimonial-tag.has-flag-img:has(img[alt="Germany"])::after {
    content: "Germany";
}

.contact-testimonial-tag.has-flag-img:has(img[alt="Singapore"])::after {
    content: "Singapore";
}

.contact-testimonial-tag.has-flag-img:has(img[alt="Germany"]),
.contact-testimonial-tag.has-flag-img:has(img[alt="Singapore"]) {
    min-width: 86px;
}

.contact-testimonial-flag-img {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    object-fit: cover;
    object-position: left center;
}

.contact-testimonial-tag.is-demand {
    min-width: 69px;
    padding: 0 10px;
}

.contact-testimonial-quote {
    margin: 0 0 20px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.78;
}

.contact-testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.contact-testimonial-avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-testimonial-name,
.contact-testimonial-role {
    display: block;
    color: #fff;
}

.contact-testimonial-name {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.05;
}

.contact-testimonial-role {
    margin-top: 3px;
    font-size: 7px;
    font-weight: 700;
    line-height: 1.25;
    opacity: 0.88;
}

.contact-testimonial-review-link {
    position: absolute;
    top: 50%;
    right: -62px;
    z-index: 4;
    width: 178px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transform: translateY(-50%) rotate(-90deg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.contact-testimonial-card.is-copy:hover {
    overflow: visible;
    border-color: transparent;
    box-shadow: 0 18px 42px rgba(132, 18, 201, 0.28);
    z-index: 5;
}

.contact-testimonial-card.is-copy:hover::before {
    z-index: 1;
    border: 2px solid #eee;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transform: translateX(-45px) rotate(-2deg);
}

.contact-testimonial-card.is-copy:hover::after {
    z-index: 0;
    opacity: 1;
}

.contact-testimonial-card.is-copy:hover .contact-testimonial-review-link {
    opacity: 1;
    pointer-events: auto;
}

.contact-testimonial-card.is-copy .contact-testimonial-tags,
.contact-testimonial-card.is-copy .contact-testimonial-quote,
.contact-testimonial-card.is-copy .contact-testimonial-author {
    transition: transform 0.25s ease;
    transform-origin: center center;
}

.contact-testimonial-card.is-copy:hover .contact-testimonial-tags,
.contact-testimonial-card.is-copy:hover .contact-testimonial-quote,
.contact-testimonial-card.is-copy:hover .contact-testimonial-author {
    z-index: 3;
    transform: translateX(-45px) rotate(-2deg);
}

.contact-testimonial-card.is-copy:hover .contact-testimonial-quote,
.contact-testimonial-card.is-copy:hover .contact-testimonial-name,
.contact-testimonial-card.is-copy:hover .contact-testimonial-role {
    color: #111 !important;
}

.contact-testimonial-card.is-copy:hover .contact-testimonial-tag {
    color: #222;
    background: #f8f8f8;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}

.contact-testimonial-card.is-video {
    min-height: 345px;
    cursor: pointer;
    background: #000;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-testimonial-card.is-video:hover,
.contact-testimonial-card.is-video.is-playing {
    z-index: 4;
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
    transform: translateY(-4px);
}

.contact-testimonial-video-img,
.contact-testimonial-card.is-video video.contact-testimonial-video-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover !important;
    object-position: center center !important;
    background: #000;
}

.contact-testimonial-video-shade {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    min-height: 60px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.96) 100%);
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.contact-testimonial-play {
    position: absolute;
    top: 48%;
    left: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.contact-testimonial-play::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 15px;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 13px solid #111;
}

.contact-testimonial-brand {
    position: absolute;
    left: 84px;
    right: 15px;
    bottom: 7px;
    z-index: 2;
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.contact-mrsool-logo-img {
    display: block;
    width: min(122px, 78%);
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.contact-testimonial-card.is-video.is-playing .contact-testimonial-video-shade,
.contact-testimonial-card.is-video.is-playing .contact-testimonial-brand,
.contact-testimonial-card.is-video.is-playing .contact-testimonial-play {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 991px) {
    .contact-testimonials-wrap {
        width: min(100% - 28px, 720px);
    }

    .contact-testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-testimonial-card,
    .contact-testimonial-card.is-video {
        min-height: 320px;
    }

    .contact-testimonial-card.is-copy:hover::before,
    .contact-testimonial-card.is-copy:hover .contact-testimonial-tags,
    .contact-testimonial-card.is-copy:hover .contact-testimonial-quote,
    .contact-testimonial-card.is-copy:hover .contact-testimonial-author {
        transform: none;
    }

    .contact-testimonial-review-link {
        display: none;
    }
}

@media (max-width: 575px) {
    .contact-testimonials-showcase {
        padding: 42px 0 56px;
    }

    .contact-testimonials-wrap {
        width: min(100% - 24px, 420px);
    }

    .contact-testimonials-title {
        margin-bottom: 30px;
    }

    .contact-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-testimonial-card,
    .contact-testimonial-card.is-video {
        min-height: 345px;
    }
}
/* Footer Two Testimonials Section End */







/* Testimonial card height gap fix */
.contact-testimonials-grid .contact-testimonial-card,
.contact-testimonials-grid .contact-testimonial-card.is-copy,
.contact-testimonials-grid .contact-testimonial-card.is-video {
    min-height: 410px;
    height: 410px;
}

.contact-testimonials-grid .contact-testimonial-card.is-copy {
    align-self: stretch;
}

.contact-testimonials-grid .contact-testimonial-video-img,
.contact-testimonials-grid .contact-testimonial-card.is-video video.contact-testimonial-video-img {
    height: 100% !important;
}

@media (max-width: 991px) {
    .contact-testimonials-grid .contact-testimonial-card,
    .contact-testimonials-grid .contact-testimonial-card.is-copy,
    .contact-testimonials-grid .contact-testimonial-card.is-video {
        min-height: 380px;
        height: 380px;
    }
}

@media (max-width: 575px) {
    .contact-testimonials-grid .contact-testimonial-card.is-copy {
        min-height: auto;
        height: auto;
    }

    .contact-testimonials-grid .contact-testimonial-card.is-video {
        min-height: 345px;
        height: 345px;
    }
}

/* Our Global Presence start  */
@media (max-width: 992px) {
    .tab-content > .tab-pane {
        display: block;
        opacity: 1;
    }
}

section.Adver-tising {
    padding: 70px 0px;
    background: radial-gradient(circle at 12% 74%, rgba(92, 64, 255, 0.38), transparent 520px), radial-gradient(circle at 54% 40%, rgba(62, 52, 172, 0.34), transparent 540px), radial-gradient(circle at 84% 48%, rgba(226, 43, 177, 0.22), transparent 520px), #090914;
}

ul#valueTab.professionals {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    margin: 0 0 24px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 44px rgba(0, 0, 0, 0.4);
}

ul#valueTab.professionals .indus-try {
    flex: 1 1 0;
    text-align: center;
}

ul#valueTab.professionals .tacti-cally {
    width: 100%;
    min-height: 34px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    background: transparent;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 34px;
}

ul#valueTab.professionals .tacti-cally:hover,
ul#valueTab.professionals .tacti-cally:focus {
    color: #fff;
    border: 0;
}

ul#valueTab.professionals .tacti-cally.active {
    color: #fff;
    background: linear-gradient(90deg, #8b35ff 0%, #ff006e 100%);
    box-shadow: 0 8px 22px rgba(169, 50, 255, 0.35);
}


#valueTabContent .pint-erest > .row {
    align-items: stretch;
}

#valueTabContent .pint-erest > .row > .col-lg-4,
#valueTabContent .pint-erest > .row > .col-lg-8 {
    display: flex;
}

.follgender {
    width: 100%;
    min-height: 315px;
    max-height: 315px;
    overflow: hidden;
    border-radius: 0;
}

.follgender img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 315px;
    max-height: 315px;
    object-fit: cover;
    object-position: center;
    border-radius: 11px;
}


section.Adver-tising .tab-content,
section.Adver-tising .tab-pane,
section.Adver-tising .accordion-item,
section.Adver-tising .accordion-body.pint-erest {
    border: 0;
    background: transparent;
}

section.Adver-tising .accordion-body.pint-erest {
    padding: 0;
}
.professionals.nav-tabs .nav-link:focus {
    border: none;
}
.brudder {
    display: grid;
    gap: 16px;
}
.bonimenteur {
    display: flex;
    justify-content: space-between;
}
.besonnesch {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 78px;
    padding: 0px 94px 0px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(58, 55, 128, 0.72), rgba(25, 24, 58, 0.66));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 38px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.doriwwer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, #812fff 0%, #e000b8 100%);
}



.doriwwer img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.pret-oria {
    position: static;
}

.pret-oria h3 {
    margin: 0 0 2px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.pret-oria p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.25;
}

.office-tab-contact-list {
    display: grid;
    width: 100%;
    gap: 9px;
}

.office-tab-contact-card {
    display: flex;
    min-height: 57px;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
}

.office-tab-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 40px;
    height: 40px;
    color: #f3f3f3;
    background: linear-gradient(135deg, #812fff 0%, #e000b8 100%);
    border-radius: 3px;
}

.office-tab-contact-icon i {
    font-size: 27px;
    line-height: 1;
}

.office-tab-contact-copy h3 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}

.office-tab-contact-copy p {
    margin: 0;
    color: #fff;
    font-size: 12px;
    line-height: 1.35;
}

.office-tab-contact-copy a,
.office-tab-contact-copy a:hover {
    color: #ffffff;
    text-decoration: none;
}

.contact-partner-profile-card {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: radial-gradient(circle at 77% 22%, rgba(255, 0, 88, 0.58), transparent 120px), radial-gradient(circle at 68% 19%, rgba(55, 44, 255, 0.56), transparent 100px), radial-gradient(circle at 58% 20%, rgba(21, 224, 172, 0.36), transparent 34px), linear-gradient(180deg, #191a1e 0%, #101116 55%, #16121e 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 60px rgba(0, 0, 0, 0.34);
}

.contact-partner-profile-copy {
    position: relative;
    z-index: 3;
    padding: 30px 30px 0;
}

.contact-partner-profile-copy h3 {
    margin: 0 0 11px;
    color: #fff;
    font-size: clamp(28px, 2.65vw, 34px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: 0;
}

.contact-partner-profile-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.contact-partner-profile-photo {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: -8px 0 -1px;
}

.contact-partner-profile-photo img {
    display: block;
    width: min(100%, 480px);
    height: 467px;
    object-fit: cover;
    object-position: bottom center;
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.18));
    margin-top: -85px;
}

.contact-partner-profile-links {
    position: relative;
    z-index: 4;
    display: grid;
    gap: 12px;
    padding: 21px 24px;
    background: linear-gradient(100deg, #6230ff 0%, #ff0061 100%);
}

.contact-partner-profile-links a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.contact-partner-profile-links a:hover {
    color: #fff;
}

.contact-partner-profile-links i {
    flex: 0 0 20px;
    color: #fff;
    font-size: 16px;
    text-align: center;
}

@media (max-width: 991px) {
    .contact-partner-profile-card {
        min-height: 530px;
        margin-top: 26px;
    }
}
article.schwerpunkt {
    border: 1px solid #424141;
    padding: 20px;
    border-radius: 10px;
    margin-top: 22px;
}
.udiodateien h3 {
    font-size: 12px;
}
.kdng span code img {
    width: 24px;
}
.udiodateien h2 {
    font-size: 27px;
    margin-bottom: 113px;
}
span.escroc {
    font-size: 12px;
    background: #e315a5;
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
span.esc-roc {
    font-size: 12px;
    background: #a700fa;
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
span.es-croc {
    font-size: 12px;
    background: #3a3afc;
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.presence-lead-card {
    margin-top: 28px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: radial-gradient(circle at 78% 12%, rgba(255, 0, 120, 0.22), transparent 270px), radial-gradient(circle at 25% 82%, rgba(68, 58, 255, 0.24), transparent 280px), rgba(15, 16, 44, 0.76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 58px rgba(0, 0, 0, 0.28);
}

.presence-lead-form h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.presence-lead-form label,
.presence-lead-label {
    display: block;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.presence-lead-form input,
.presence-lead-form select,
.presence-lead-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    outline: 0;
    color: #fff;
    background: rgba(5, 6, 22, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    font-size: 13px;
    font-weight: 600;
}

.presence-lead-form input,
.presence-lead-form select {
    height: 42px;
    padding: 0 16px;
}

.presence-lead-form textarea {
    min-height: 84px;
    resize: vertical;
    padding: 13px 16px;
}

.presence-lead-form input::placeholder,
.presence-lead-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.66);
}

.presence-lead-form input:focus,
.presence-lead-form select:focus,
.presence-lead-form textarea:focus {
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 0 0 3px rgba(116, 64, 255, 0.18);
}

.presence-lead-budget {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.presence-lead-budget label {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(5, 6, 22, 0.54);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-transform: none;
    cursor: pointer;
}

.presence-lead-budget .btn-check:checked + label,
.presence-lead-budget label:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.1);
}

.presence-lead-submit {
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(100deg, #6636ff 0%, #f12bbe 48%, #ff123f 100%);
    box-shadow: 0 18px 42px rgba(255, 0, 100, 0.24);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
}

.presence-lead-submit i {
    font-size: 16px;
}

.presence-lead-submit:hover {
    color: #fff;
}


@media (max-width: 575px) {
    .presence-lead-card {
        padding: 22px 18px;
        border-radius: 14px;
    }
}


.presence-lead-form-wrap .presence-lead-card {
    margin-top: 22px;
}
.kohlenberg p {
    font-size: 13px;
}
.kohlenberg h2 {
    font-size: 40px;
    font-weight: bold;
}
/* Our Global Presence end   */
/* Footer Two Global Presence Helpers Start */
section.Adver-tising,
section.Adver-tising * {
    box-sizing: border-box;
}

section.Adver-tising .container {
    width: min(100% - 160px, 1340px);
    max-width: 1340px;
    margin-inline: auto;
    padding-inline: 0;
}

section.Adver-tising .row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    margin-inline: -12px;
}

section.Adver-tising [class*="col-"] {
    width: 100%;
    padding-inline: 12px;
}

section.Adver-tising .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

section.Adver-tising .g-3 {
    row-gap: 16px;
}

section.Adver-tising .nav {
    list-style: none;
}

section.Adver-tising .tab-pane {
    display: none;
    opacity: 0;
}

section.Adver-tising .tab-pane.show.active {
    display: block;
    opacity: 1;
}

section.Adver-tising .accordion-header {
    display: none;
}

section.Adver-tising .accordion-collapse {
    display: block;
}

section.Adver-tising .btn-check {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

section.Adver-tising img {
    max-width: 100%;
}

section.Adver-tising .leveraging {
    width: 100%;
}

section.Adver-tising .presence-lead-form .row {
    margin-inline: -8px;
    row-gap: 16px;
}

section.Adver-tising .presence-lead-form [class*="col-"] {
    padding-inline: 8px;
}

@media (min-width: 768px) {
    section.Adver-tising .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    section.Adver-tising .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    section.Adver-tising .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    section.Adver-tising .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 991px) {
    section.Adver-tising .container {
        width: min(100% - 28px, 720px);
    }

    ul#valueTab.professionals {
        flex-wrap: wrap;
        border-radius: 18px;
    }

    ul#valueTab.professionals .indus-try {
        flex: 1 1 calc(33.333% - 12px);
    }

    .follgender,
    .follgender img {
        min-height: 260px;
        max-height: 260px;
    }
}

@media (max-width: 575px) {
    section.Adver-tising {
        padding: 48px 0;
    }

    ul#valueTab.professionals .indus-try {
        flex-basis: calc(50% - 9px);
    }

    ul#valueTab.professionals .tacti-cally {
        padding: 0 10px;
        font-size: 11px;
    }

    .kohlenberg h2 {
        font-size: 30px;
    }

    .contact-partner-profile-card {
        min-height: 480px;
    }
}
/* Footer Two Global Presence Helpers End */

/* Keep Global Presence tabs single-panel on all viewports */
section.Adver-tising .tab-content > .tab-pane {
    display: none;
    opacity: 0;
}

section.Adver-tising .tab-content > .tab-pane.show.active {
    display: block;
    opacity: 1;
}

/* Footer Two Blog Events Owl Fix */
.contact-blog-events-featured,
.contact-blog-events-carousel,
.contact-blog-events-carousel .owl-stage-outer,
.contact-blog-events-carousel .owl-stage,
.contact-blog-events-carousel .owl-item {
    height: 100%;
}

.contact-blog-events-carousel.owl-loaded {
    display: block;
}

.contact-blog-events-carousel.owl-loaded .owl-stage {
    display: flex;
    align-items: stretch;
}

.contact-blog-events-carousel.owl-loaded .owl-item {
    display: flex;
}

.contact-blog-events-carousel.owl-loaded .owl-item .item {
    flex: 1 1 auto;
}

.contact-blog-events-carousel.owl-loaded .item {
    display: block;
}

.contact-blog-events-carousel .owl-dots,
.contact-blog-events-carousel .owl-nav {
    display: none;
}




<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            width: 100%;
            min-height: 100%;
        }

        body {
            min-height: 100vh;
            font-family: Arial, Helvetica, sans-serif;

            background:
                radial-gradient(
                    circle at 12% 78%,
                    rgba(121, 43, 157, 0.48),
                    transparent 35%
                ),
                radial-gradient(
                    circle at 88% 80%,
                    rgba(229, 0, 38, 0.48),
                    transparent 35%
                ),
                #000;

            color: #111;
        }

        button,
        input,
        textarea,
        select {
            font: inherit;
        }

        /* =====================================================
           OPEN BUTTON
        ===================================================== */

        .open-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            min-width: 150px;
            height: 46px;
            padding: 0 28px;

            border: 0;
            border-radius: 8px;

            background:
                linear-gradient(
                    90deg,
                    #d12ca0 0%,
                    #9138d9 50%,
                    #3739f4 100%
                );

            color: #fff;
            font-size: 14px;
            font-weight: 700;

            cursor: pointer;

            box-shadow:
                0 15px 40px rgba(73, 52, 220, 0.35);

            transition: 0.3s ease;
        }

        .open-popup:hover {
            transform: translate(-50%, -53%);
        }


        /* =====================================================
           OVERLAY
        ===================================================== */
        .popup-overlay {
            z-index: 999999 !important;
            padding: 12px !important;
            overflow: hidden !important;
        }

        .popup-overlay .modal-dialog {
            width: 100% !important;
            max-width: 900px !important;
            margin: 0 auto !important;
        }

        .popup-overlay .modal-content {
            width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;

            border: 0 !important;
            border-radius: 24px !important;

            background: transparent !important;

            box-shadow: none !important;
            overflow: visible !important;
        }

        .popup-overlay .modal-body {
            width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;

            background: transparent !important;
            overflow: visible !important;
        }

        .popup-overlay .popup {
            width: 100% !important;
            max-width: 900px !important;

            max-height: calc(100vh - 24px) !important;

            margin: 0 !important;

            overflow: hidden !important;
        }
/* =====================================================
           POPUP
        ===================================================== */

        .popup {
            position: relative;

            width: 100%;
            max-width: 900px;

            display: grid;
            grid-template-columns: 50% 50%;

            background: #fff;

            border-radius: 24px;

            overflow: hidden;

            box-shadow:
                0 30px 90px rgba(0, 0, 0, 0.5);

            transform:
                translateY(25px)
                scale(0.97);

            transition:
                transform 0.35s ease;
        }
/* =====================================================
           CLOSE BUTTON
        ===================================================== */

        .close-popup {
            position: absolute;

            top: 11px;
            right: 11px;

            z-index: 999;

            width: 34px;
            height: 34px;

            border: 0;
            border-radius: 50%;

            display: flex;
            align-items: center;
            justify-content: center;

            background: rgba(255,255,255,0.96);

            color: #555;

            font-size: 14px;

            cursor: pointer;

            box-shadow:
                0 3px 12px rgba(0,0,0,0.14);

            transition: 0.25s ease;
        }

        .close-popup:hover {
            transform: rotate(90deg);
            color: #111;
        }


        /* =====================================================
           LEFT PANEL
        ===================================================== */

        .left-panel {
            position: relative;

            width: 100%;
            min-width: 0;

            padding: 0;

            background:
                linear-gradient(
                    112deg,
                    #cf2da0 0%,
                    #a72dc9 34%,
                    #7437e4 66%,
                    #3739f5 100%
                );

            color: #fff;

            border:
                2px solid rgba(255,255,255,0.95);

            border-radius:
                23px 0 0 23px;

            overflow: hidden;
        }

        .left-content {
            width: 100%;
            height: 100%;

            padding:
                30px 30px 23px;
        }


        /* =====================================================
           LEFT HEADING
        ===================================================== */

        .left-panel h2 {
            margin: 0 0 6px;

            color: #fff;

            font-size: 27px;
            line-height: 1.16;
            font-weight: 700;

            letter-spacing: -0.3px;
        }

        .left-subtitle {
            margin: 0 0 18px;

            color:
                rgba(255,255,255,0.98);

            font-size: 15px;
            line-height: 1.5;
            font-weight: 400;
        }


        /* =====================================================
           TEAM IMAGE
        ===================================================== */

        .team-image {
            width: 100%;
            height: 176px;

            margin: 0 0 20px;

            overflow: hidden;

            border:
                2px solid #fff;

            border-radius:
                22px;

            background:
                rgba(255,255,255,0.08);
        }

        .team-image img {
            display: block;

            width: 100%;
            height: 100%;

            object-fit: cover;
        }


        /* =====================================================
           CONTACT INFORMATION
        ===================================================== */

        .contact-info {
            display: grid;

            grid-template-columns:
                1fr 1fr;

            column-gap: 18px;
            row-gap: 15px;

            width: 100%;
        }

        .contact-item {
            display: flex;

            align-items: flex-start;
			align-items: center;
            gap: 9px;
            margin-bottom: 26px;
            min-width: 0;
        }

        .contact-item.full {
            grid-column: 1 / -1;
        }

        .contact-icon {
            width: 42px;
            height: 42px;

            flex: 0 0 42px;

            display: flex;
            align-items: center;
            justify-content: center;

            border:
                1px solid
                rgba(255,255,255,0.42);

            border-radius: 10px;

            background:
                rgba(255,255,255,0.17);

            color: #fff;

            font-size: 16px;

            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.08);
        }

        .contact-text {
            min-width: 0;

            padding-top: 1px;
        }

        .contact-text strong {
            display: block;

            margin-bottom: 4px;

            color: #fff;

            font-size: 11px;
            line-height: 1.2;
            font-weight: 700;
        }

.contact-text span {
    display: block;
    color: rgba(255, 255, 255, 0.98);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 700;
}

        .contact-item.full .contact-text span {
            max-width: 340px;
        }


        /* =====================================================
           DIVIDER
        ===================================================== */

        .left-divider {
            width: 100%;
            height: 1px;

            margin:
                19px 0 15px;

            background:
                rgba(255,255,255,0.58);
        }


        /* =====================================================
           LOGOS
        ===================================================== */

        .client-logos {
            display: grid;

            grid-template-columns:
                repeat(3, 1fr);

            column-gap: 15px;
            row-gap: 10px;

            align-items: center;
        }

        .client-logo {
            min-width: 0;
            min-height: 34px;

            display: flex;
            align-items: center;
            justify-content: center;

            gap: 5px;

            color: #fff;

            text-align: center;
        }

        .client-logo small {
            display: block;

            color: #fff;

            font-size: 6px;
            line-height: 1;
        }

        .client-logo b {
            display: block;

            color: #fff;

            font-size: 8px;
            line-height: 1.2;

            font-weight: 700;

            white-space: nowrap;
        }

        .logo-symbol {
            width: 22px;
            height: 22px;

            display: flex;
            align-items: center;
            justify-content: center;

            border:
                2px solid
                rgba(255,255,255,0.95);

            color: #fff;

            font-size: 11px;
            font-weight: 700;
        }

        .logo-mark {
            color: #fff;

            font-size: 19px;
            line-height: 1;
        }

        .simple-logo b {
            font-size: 15px;
        }


        /* =====================================================
           RIGHT PANEL
        ===================================================== */

        .right-panel {
            min-width: 0;

            padding:
                31px 31px 27px;

            background:
                #fff;
        }

        .right-heading {
            margin:
                0 0 22px;

            text-align:
                center;
        }

        .right-heading h2 {
            margin:
                0 0 6px;

            color:
                #050505;

            font-size:
                30px;

            line-height:
                1.1;

            font-weight:
                700;
        }

        .right-heading p {
            margin:
                0;

            color:
                #8c8c8c;

            font-size:
                12px;

            line-height:
                1.5;
        }


        /* =====================================================
           FORM GRID
        ===================================================== */

        .form-grid {
            display:
                grid;

            grid-template-columns:
                1fr 1fr;

            gap:
                11px 12px;
        }

        .field {
            width: 100%;
            min-width: 0;
        }

        .field.full {
            grid-column:
                1 / -1;
        }


        /* =====================================================
           INPUTS
        ===================================================== */

        .input,
        .select,
        .textarea {
            width: 100%;

            border:
                1px solid #c8c8c8;

            border-radius:
                8px;

            background:
                #fff;

            color:
                #333;

            outline:
                none;

            transition:
                border-color 0.25s ease,
                box-shadow 0.25s ease;
        }

        .input,
        .select {
            height: 44px;

            padding:
                0 14px;

            font-size: 12px;
            font-weight: 400;
        }

        .textarea {
            height: 108px;

            padding:
                12px 14px;

            resize: none;

            font-size: 12px;

            line-height: 1.55;
        }

        .input::placeholder,
        .textarea::placeholder {
            color: #858585;
            opacity: 1;
        }

        .input:focus,
        .select:focus,
        .textarea:focus {
            border-color:
                #9638db;

            box-shadow:
                0 0 0 3px
                rgba(150,56,219,0.07);
        }


        /* =====================================================
           COUNTRY PHONE
        ===================================================== */

        .country-phone {
            position: relative;

            display: flex;

            width: 100%;
            height: 44px;

            border:
                1px solid #c8c8c8;

            border-radius:
                8px;

            background:
                #fff;

            overflow:
                visible;

            transition:
                border-color 0.25s ease,
                box-shadow 0.25s ease;
        }

        .country-phone:focus-within {
            border-color:
                #9638db;

            box-shadow:
                0 0 0 3px
                rgba(150,56,219,0.07);
        }


        /* Country box */

        .country-box {
            position: relative;

            width: 78px;
            min-width: 78px;

            height: 42px;

            border-right:
                1px solid #e7e7e7;
        }

        .country-selected {
            width: 100%;
            height: 42px;

            display:
                flex;

            align-items:
                center;

            gap:
                7px;

            padding:
                0 9px;

            background:
                #fff;

            border-radius:
                8px 0 0 8px;

            cursor:
                pointer;

            user-select:
                none;
        }

        .country-flag {
            width: 20px;
            height: 14px;

            flex:
                0 0 20px;

            object-fit:
                cover;

            border-radius:
                2px;
        }

        .country-code {
            color: #333;

            font-size: 11px;

            font-weight: 500;

            white-space:
                nowrap;
        }

        .country-arrow {
            margin-left:
                auto;

            color:
                #777;

            font-size:
                8px;
        }

        .phone-number {
            flex: 1;

            width: auto !important;

            min-width: 0;

            height: 42px !important;

            padding:
                0 13px !important;

            border: 0 !important;

            border-radius:
                0 8px 8px 0 !important;

            box-shadow:
                none !important;

            font-size:
                12px !important;

            color:
                #333;
        }


        /* =====================================================
           COUNTRY DROPDOWN
        ===================================================== */

        .country-dropdown {
            position: absolute;

            top:
                calc(100% + 5px);

            left: 0;

            z-index: 9999999;

            width: 205px;

            max-height: 275px;

            overflow-y: auto;

            display: none;

            background:
                #fff;

            border:
                1px solid #ddd;

            border-radius:
                9px;

            box-shadow:
                0 15px 35px
                rgba(0,0,0,0.22);
        }

        .country-dropdown.open {
            display:
                block;
        }

        .country-search {
            position: sticky;

            top: 0;

            z-index: 2;

            width: 100%;
            height: 38px;

            padding:
                0 11px;

            border: 0;

            border-bottom:
                1px solid #ededed;

            outline: none;

            background: #fff;

            color: #333;

            font-size: 11px;
        }

        .country-option {
            width: 100%;

            min-height: 33px;

            display:
                flex;

            align-items:
                center;

            gap: 9px;

            padding:
                7px 10px;

            border: 0;

            background:
                #fff;

            color:
                #333;

            text-align:
                left;

            font-size:
                11px;

            cursor:
                pointer;
        }

        .country-option:hover {
            background:
                #f7f3fa;
        }

        .country-option img {
            width: 21px;
            height: 15px;

            flex:
                0 0 21px;

            object-fit:
                cover;

            border-radius:
                2px;
        }

        .country-option .dial {
            margin-left:
                auto;

            color:
                #888;
        }


        /* =====================================================
           SELECT
        ===================================================== */

        .select {
            appearance:
                none;

            -webkit-appearance:
                none;

            -moz-appearance:
                none;

            padding-right:
                42px;

            cursor:
                pointer;

            background-color:
                #fff;

            background-image:
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23777777' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

            background-repeat:
                no-repeat;

            background-position:
                right 14px center;

            background-size:
                14px;
        }


        /* =====================================================
           BUDGET
        ===================================================== */

        .budget-title {
            display:
                flex;

            align-items:
                center;

            gap:
                7px;

            margin-bottom:
                9px;
        }

        .budget-title span {
            color:
                #222;

            font-size:
                14px;

            font-weight:
                600;
        }

        .budget-title strong {
            font-size:
                20px;

            font-weight:
                700;

            line-height:
                1;

            background:
                linear-gradient(
                    90deg,
                    #d12ca0,
                    #9139da,
                    #3739f4
                );

            -webkit-background-clip:
                text;

            -webkit-text-fill-color:
                transparent;

            background-clip:
                text;
        }


        /* =====================================================
           BUDGET SLIDER
        ===================================================== */

        .budget-slider {
            display:
                block;

            width:
                100%;

            height:
                5px;

            margin:
                0;

            padding:
                0;

            appearance:
                none;

            -webkit-appearance:
                none;

            border:
                0;

            outline:
                0;

            border-radius:
                50px;

            cursor:
                pointer;

            background:
                linear-gradient(
                    to right,
                    #cf2ca0 0%,
                    #673cff 0%,
                    #e7e7e7 0%,
                    #e7e7e7 100%
                );
        }

        .budget-slider::-webkit-slider-runnable-track {
            height:
                5px;

            background:
                transparent;

            border-radius:
                50px;
        }

        .budget-slider::-webkit-slider-thumb {
            appearance:
                none;

            -webkit-appearance:
                none;

            width:
                17px;

            height:
                17px;

            margin-top:
                -6px;

            border:
                0;

            border-radius:
                50%;

            background:
                linear-gradient(
                    135deg,
                    #d02ca0,
                    #633cff
                );

            box-shadow:
                0 2px 6px
                rgba(0,0,0,.18);

            cursor:
                pointer;
        }

        .budget-slider::-moz-range-track {
            width:
                100%;

            height:
                5px;

            border:
                0;

            border-radius:
                50px;

            background:
                #e7e7e7;
        }

        .budget-slider::-moz-range-progress {
            height:
                5px;

            border-radius:
                50px;

            background:
                linear-gradient(
                    90deg,
                    #cf2ca0,
                    #673cff
                );
        }

        .budget-slider::-moz-range-thumb {
            width:
                17px;

            height:
                17px;

            border:
                0;

            border-radius:
                50%;

            background:
                linear-gradient(
                    135deg,
                    #d02ca0,
                    #633cff
                );

            cursor:
                pointer;
        }

        .budget-labels {
            display:
                flex;

            align-items:
                center;

            justify-content:
                space-between;

            margin-top:
                6px;

            color:
                #999;

            font-size:
                9px;
        }


        /* =====================================================
           CAPTCHA + NDA
        ===================================================== */

        .extra-row {
            display:
                flex;

            align-items:
                center;

            justify-content:
                space-between;

            gap:
                12px;
        }

        .captcha {
            display:
                flex;

            align-items:
                center;

            gap:
                6px;
        }

        .captcha-label {
            color:
                #222;

            font-size:
                11px;

            font-weight:
                600;
        }

        .captcha-question {
            min-height:
                28px;

            display:
                inline-flex;

            align-items:
                center;

            padding:
                0 8px;

            border-radius:
                4px;

            background:
                #efefef;

            color:
                #111;

            font-size:
                10px;

            font-weight:
                700;
        }

        .captcha-input {
            width:
                44px !important;

            height:
                28px !important;

            padding:
                0 5px !important;

            border:
                1px solid #bd77ca !important;

            border-radius:
                4px !important;

            text-align:
                center;

            font-size:
                10px !important;
        }


        /* NDA */

        .nda {
            display:
                flex;

            align-items:
                center;

            gap:
                6px;

            color:
                #888;

            font-size:
                10px;

            white-space:
                nowrap;

            cursor:
                pointer;
        }

        .nda input {
            appearance:
                none;

            -webkit-appearance:
                none;

            width:
                18px;

            height:
                18px;

            flex:
                0 0 18px;

            position:
                relative;

            border:
                1px solid #bd72c9;

            border-radius:
                4px;

            background:
                #fff;

            cursor:
                pointer;
        }

        .nda input:checked {
            border-color:
                transparent;

            background:
                linear-gradient(
                    135deg,
                    #cf2ca0,
                    #633cff
                );
        }

        .nda input:checked::after {
            content:
                "";

            position:
                absolute;

            width:
                5px;

            height:
                9px;

            left:
                5px;

            top:
                3px;

            border:
                solid #fff;

            border-width:
                0 2px 2px 0;

            transform:
                rotate(45deg);
        }


        /* =====================================================
           SUBMIT
        ===================================================== */

        .submit {
            width:
                100%;

            height:
                45px;

            border:
                0;

            border-radius:
                7px;

            background:
                linear-gradient(
                    90deg,
                    #d12ca0,
                    #9138d9,
                    #3538f4
                );

            color:
                #fff;

            font-size:
                14px;

            font-weight:
                700;

            cursor:
                pointer;

            transition:
                transform .25s ease,
                box-shadow .25s ease;
        }

        .submit:hover {
            transform:
                translateY(-1px);

            box-shadow:
                0 8px 20px
                rgba(73,50,220,.20);
        }

        .submit:disabled {
            opacity:
                .7;

            cursor:
                wait;
        }


        /* =====================================================
           VALIDATION
        ===================================================== */

        .error {
            border-color:
                #e24949 !important;

            box-shadow:
                0 0 0 3px
                rgba(226,73,73,.06) !important;
        }

        .error-msg {
            display:
                none;

            margin-top:
                3px;

            color:
                #e24949;

            font-size:
                9px;
        }


        /* =====================================================
           SUCCESS
        ===================================================== */

        .success {
            display:
                none;

            margin-top:
                7px;

            padding:
                8px;

            border-radius:
                6px;

            background:
                #eaf8ef;

            color:
                #218546;

            font-size:
                10px;

            line-height:
                1.4;

            text-align:
                center;
        }

        .success.show {
            display:
                block;
        }


        /* =====================================================
           TABLET
        ===================================================== */

        @media (max-width: 820px) {

            .popup {
                width: 100% !important;
                max-width: 650px !important;

                grid-template-columns: 1fr;

                max-height: calc(100vh - 24px) !important;
            }

            .left-panel {
                display: none;
            }

            .right-panel {
                padding: 28px 27px 24px;
            }
        }


        /* =====================================================
           MOBILE
        ===================================================== */

        @media (max-width: 560px) {

            .popup-overlay {
                padding:
                    7px;
            }

            .popup {
                width:
                    100%;

                max-width:
                    100%;

                max-height:
                    97vh;

                border-radius:
                    18px;
            }

            .right-panel {
                padding:
                    24px 14px 18px;
            }

            .right-heading {
                margin-bottom:
                    17px;
            }

            .right-heading h2 {
                font-size:
                    25px;
            }

            .right-heading p {
                font-size:
                    10px;
            }

            .form-grid {
                grid-template-columns:
                    1fr;

                gap:
                    10px;
            }

            .field.full {
                grid-column:
                    auto;
            }

            .input,
            .select {
                height:
                    42px;
            }

            .textarea {
                height:
                    100px;
            }

            .extra-row {
                display:
                    block;
            }

            .captcha {
                margin-bottom:
                    11px;
            }

            .country-box {
                width:
                    100px;

                min-width:
                    100px;
            }

            .country-dropdown {
                width:
                    275px;
            }
        }


        /* =====================================================
           SMALL MOBILE
        ===================================================== */

        @media (max-width: 380px) {

            .right-panel {
                padding-left:
                    11px;

                padding-right:
                    11px;
            }

            .right-heading h2 {
                font-size:
                    23px;
            }

            .country-box {
                width:
                    92px;

                min-width:
                    92px;
            }

            .country-dropdown {
                width:
                    255px;
            }

            .country-code {
                font-size:
                    10px;
            }

            .phone-number {
                font-size:
                    11px !important;
            }

            .nda {
                font-size:
                    8.5px;
            }
        }
