:root {
    /* Brand / primar */
    --color-primary: #2739de;
    --color-primary-dark: #010c78;
    --color-primary-gradient-1: #2394df;
    --color-primary-gradient-2: #8286eb;
    --color-primary-gradient-3: #00a7f0;
    --color-primary-gradient-4: #2794f3;

    /* Fundaluri */
    --color-bg-dark: #100a2b;
    --color-bg-accent: #1121af;
    --color-bg-light: #ebedfb;
    --color-bg-card: #f4f3f9;

    /* Griuri / text */
    --color-text-main: #111111;
    --color-text-muted: #9b9b9b;
    --color-grey-200: #d1d1d1;
    --color-grey-300: #abb0dc;
    --color-grey-400: #b4b4b4;

    /* Alte accente frecvente */
    --color-success: #4caf50;
    --color-error: #e83217;
    --color-warning: #ff9800;
}

@font-face {
    font-family: "Lexend-Light";
    src: url(/fonts/Lexend-Light.ttf) format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Lexend-Medium";
    src: url(/fonts/Lexend-Medium.ttf) format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Lexend-Regular";
    src: url(/fonts/Lexend-Regular.ttf) format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Lexend-SemiBold";
    src: url(/fonts/Lexend-SemiBold.ttf) format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Lexend-Bold";
    src: url(/fonts/Lexend-Bold.ttf) format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "CalSans-Regular";
    src: url(/fonts/CalSans-Regular.ttf) format("truetype");
    font-display: swap;
}

body {
    font-family: "Lexend-Light";
    margin: 0px;
}

body * {
    text-decoration: none;
}

.page-transition {
    opacity: 1;
    transition: opacity 0.5s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: inherit;
    font-size: inherit;
}

.page-transition.fade-out {
    opacity: 0;
}

.padding {
    padding-left: 11.4%;
    padding-right: 11.4%;
}

.margin {
    margin-left: 11.4%;
    margin-right: 11.4%;
}

.biggerMargin {
    margin-left: 16.6%;
    margin-right: 16.6%;
}

header {
    --header-placeholder-height: 0px;
}

header.scrolled {
    min-height: var(--header-placeholder-height);
}

.headerContainer {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logoHeader {
    display: block;
    flex-shrink: 0;
    max-width: 300px;
    overflow: hidden;
    position: relative;
    transition:
        max-width 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease,
        margin 0.35s ease;
}

.logoHeader img {
    display: block;
    max-width: 100%;
}

.headerRight {
    margin-left: auto;
    display: flex;
    align-items: center;
    column-gap: 20px;
    position: relative;
}

.menuToggler {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid #111;
    padding: 0;
    margin: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 11;
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    box-shadow: none;
}

.menuToggler:focus {
    outline: none;
}

.menuToggleSvg {
    display: block;
    shape-rendering: geometricPrecision;
}

.menuToggleSvg #Ellipse_1 {
    display: none;
}

.menuToggleSvg .menuToggleLine {
    /* Rotate around the middle of the 16px line (x=8, y=0 in its local coords) */
    transform-box: fill-box;
    transform-origin: 8px 0px;
    transition: transform 0.35s ease;
}

body.activeHeader .menuToggler {
    border-color: #fff;
}

body.activeHeader .menuToggleSvg line {
    stroke: #fff;
}

/* Animate the original SVG's two lines into an X */
body.activeHeader .menuToggleSvg .menuToggleLine1 {
    /* Move to center then rotate */
    transform: translate(-2.75px, 4px) rotate(45deg);
}

body.activeHeader .menuToggleSvg .menuToggleLine2 {
    /* Move to center then rotate */
    transform: translate(2.75px, -4px) rotate(-45deg);
}

header.scrolled .headerContainer {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    box-sizing: border-box;
    padding-top: 24px;
    padding-bottom: 24px;
    z-index: 9999999;
    /* Only animate padding when entering scrolled state; when scrolling back up, padding reverts instantly so the bar snaps to full height and only logo/contact animate */
    transition: padding 0.35s ease;
}

header.scrolled .logoHeader {
    max-width: 0;
    margin-right: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

/* Keep logo visible when mobile menu is open */
body.activeHeader header.scrolled .logoHeader {
    max-width: 300px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    /* Wait until the menu panel finishes sliding in (0.5s) */
    transition-delay: 0.5s, 0.5s, 0.5s, 0.5s;
    transition-duration: 0.35s, 0.35s, 0.35s, 0.35s;
}

header.scrolled .contactUs {
    width: 0;
    padding-left: 0;
    padding-right: 0;
    border-width: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.contactUs {
    display: flex;
    align-items: center;
    background-color: var(--color-primary);
    border-radius: 23px;
    width: 210px;
    height: 50px;
    padding-left: 20px;
    padding-right: 5px;
    justify-content: space-between;
    font-family: "Lexend-Regular";
    color: white;
    font-size: 16px;
    transition:
        background-color 300ms,
        color 300ms,
        width 0.35s ease,
        padding 0.35s ease,
        border-width 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
    position: relative;
    border: 1px solid var(--color-primary);
    overflow: hidden;
    white-space: nowrap;
    min-width: 0;
}

.headerRight .contactUs {
    width: 220px;
}

.contactUs:hover {
    background-color: white;
    color: var(--color-primary);
}

.contactUs img {
    transition: 300ms;
}

.contactUs span,
.contactUs img {
    transition: transform 0.5s ease-in-out;
    /* smoother & longer */
    position: relative;
    /* keep them in flow */
}

/* Slide arrow to left and text to right on hover */
.contactUs:hover img {
    transform: translateX(-176px);
}

.contactUs:hover span {
    transform: translateX(67px);
}

.viewServices.contactUs:hover img {
    transform: translateX(-190px);
}

.viewServices.contactUs:hover span {
    transform: translateX(70px);
}

.viewServices.contactUs {
    width: 225px;
    border-radius: 25px;
}

.scheduleCall.contactUs:hover img {
    transform: translateX(-225px);
}

.scheduleCall.contactUs:hover span {
    transform: translateX(85px);
}

.scheduleCall.contactUs {
    width: 255px;
    border-radius: 25px;
}

.menuHeader {
    /* True liquid glass with brand tint */
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.04) 36%,
            rgba(255, 255, 255, 0) 58%
        ),
        color-mix(in srgb, var(--color-primary-dark) 76%, transparent);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    /* Outer shadow only when open — otherwise it bleeds along the right edge of the viewport */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    height: calc(100vh - 210px);
    width: 50vw;
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    text-align: center;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 60px;
    /* Start hidden off screen */
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    z-index: 9;
}

/* When active, slide into view */
.menuHeader.active {
    transform: translateX(0);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        -12px 0 28px rgba(1, 12, 120, 0.25);
}

.linksHeader {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    margin-bottom: 50px;
}

.headerBottom {
    margin-top: auto;
}

.linksHeader a {
    font-size: 32px;
    font-family: Lexend-Light;
    color: var(--color-grey-300);
    line-height: 32px;
    transition: 300ms;
}

.linksHeader a.active,
.linksHeader a:hover {
    color: white;
    font-family: Lexend-Medium;
}

.headerSocial {
    display: flex;
    justify-content: center;
    column-gap: 45px;
}

/* (closeIcon removed; header toggle is used for close) */

.headerBottom > span {
    font-size: 20px;
    margin-bottom: 30px;
    display: block;
    color: white;
    font-family: "Lexend-Light";
}

.contactMenu {
    display: flex;
    border-radius: 38px;
    background: white;
    padding: 4px 4px 4px 30px;
    align-items: center;
    justify-content: space-between;
    width: 221px;
}

.menuHeader .contactMenu {
    width: 235px;
}

.contactMenu span {
    color: var(--color-primary);
    /* font-size: 24px; */
    font-size: 20px;
    font-family: "Lexend-Regular";
}

.contactMenu:hover {
    background-color: white;
    color: var(--color-primary);
}

.contactMenu img {
    transition: 300ms;
    width: 55px;
    height: 55px;
}

.contactMenu span,
.contactMenu img {
    transition: transform 0.5s ease-in-out;
    /* smoother & longer */
    position: relative;
    /* keep them in flow */
}

/* Slide arrow to left and text to right on hover */
.contactMenu:hover img {
    transform: translateX(-185px);
}

.menuHeader .contactMenu:hover img {
    transform: translateX(-199px);
}

.contactMenu:hover span {
    transform: translateX(60px);
}

.menuHeader .contactMenu:hover span {
    transform: translateX(67px);
}

#languageSwitcher {
    background: transparent;
    color: white;
    border: unset;
    font-size: 16px;
    font-family: "Lexend-Light";
    margin-top: 12px;
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

#languageSwitcher a {
    color: var(--color-grey-300);
    font-size: 16px;
    font-family: "Lexend-Light";
}

#languageSwitcher a.selected {
    color: white;
}

body::before {
    content: "";
    /* Full-screen underlay to avoid a visible split line */
    background-color: rgba(3, 10, 49, 0.36);
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 8;
    top: 0px;
    left: 0px;
    bottom: 0px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.28s ease,
        visibility 0s linear 0.28s;
}

body.activeHeader {
    overflow: hidden;
}

body.activeHeader::before {
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.28s ease,
        visibility 0s linear 0s;
}

.phonesContainer {
    background-color: var(--color-primary);
    border-radius: 20px;
    overflow: hidden;
}

/* About: first section, then video (unlike home mobile, never reorder banner above hero) */
.about-hero-wrap {
    display: flex;
    flex-direction: column;
}

.about-hero-wrap #firstSection {
    order: 1;
}

.about-hero-wrap .about-main-banner {
    order: 2;
    width: 100%;
    margin-top: 60px;
}

.firstLeft h2,
.firstLeft .h2 {
    /* font-size: 20px; */
    font-size: 18px;
    font-family: "Lexend-Regular";
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 0px;
}

.firstLeft h1 {
    font-size: 62px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: "CalSans-Regular";
    /* line-height: 76px; */
    font-weight: 400;
}

.projectSingle .firstLeft h1 {
    font-size: 50px;
}

.projectSingle .firstLeft h2,
.projectSingle .firstLeft .h2 {
    font-size: 16px;
}

#firstSection {
    display: flex;
    column-gap: 4%;
    /* margin-top: 145px; */
    margin-top: 100px;
    margin-bottom: 120px;
    align-items: center;
}

.firstLeft {
    width: 49%;
}

.firstRight {
    width: 47%;
}

.firstLeft span,
.firstLeft b {
    background: linear-gradient(
        146deg,
        var(--color-primary) 0%,
        var(--color-primary-gradient-1) 26.78%,
        var(--color-primary-gradient-2) 37.66%,
        var(--color-primary-gradient-3) 48.53%,
        var(--color-primary-gradient-4) 59.84%,
        var(--color-primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: normal;
}

.firstRight h2 {
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 24px;
    font-family: "Lexend-Regular";
    font-weight: 400;
}

.firstRight > div {
    font-size: 17px;
    font-family: "Lexend-Light";
}

.primary-button {
    padding: 16px 60px;
    background: var(--color-primary);
    display: flex;
    width: max-content;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    font-size: 18px;
    color: white;
    font-family: "Lexend-Regular";
    margin-top: 40px;
    transition: 300ms;
    cursor: pointer;
}

.letsTalk {
    padding: 16px 60px;
    background: var(--color-primary);
    display: flex;
    width: max-content;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    font-size: 18px;
    color: white;
    font-family: "Lexend-Regular";
    margin-top: 40px;
    transition: 300ms;
    cursor: pointer;
    box-sizing: border-box;
}

.letsTalk:hover {
    background-color: #0019ff;
}

.servicesPage .letsTalk {
    margin-top: 27px;
}

.firstRight {
    display: flex;
    flex-direction: column;
}

/* Common base for hidden elements */
.fade,
.reveal-bottom,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.section-animate {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

.section-animate.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Fade-in effect */
.fade.visible {
    opacity: 1;
    transform: none;
}

/* Reveal from bottom */
.reveal-bottom {
    transform: translateY(30px);
}

.reveal-bottom.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal from left */
.reveal-left {
    transform: translateX(-30px);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Reveal from right */
.reveal-right {
    transform: translateX(30px);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.sliderClients {
    margin-left: 100px;
    margin-right: 100px;
    white-space: nowrap;
    overflow-x: auto;
    font-size: 0;
    padding-bottom: 10px;
}

.clientContainer {
    display: inline-block;
    height: 142px;
    /* width: 220px;         */
    text-align: center;
    position: relative;
    margin-right: 40px;
    vertical-align: top;
}

.clientContainer:last-child {
    margin-right: 0;
}

.clientContainer img {
    width: 100%;
    object-fit: contain;
    max-height: 60px;
    max-width: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#clients {
    /* margin-top: 155px;
    padding-bottom: 165px; */
    margin-top: 55px;
    padding-bottom: 65px;
}

.phonesContainer {
    height: 770px;
}

#testimonials {
    background-color: var(--color-bg-light);
    padding-top: 85px;
    padding-bottom: 120px;
}

#testimonials h2 {
    margin-top: 0px;
    margin-bottom: 50px;
    max-width: 500px;
    font-size: 59px;
    font-family: "CalSans-Regular";
    font-weight: 400;
    line-height: 77px;
}

#testimonials h2 span {
    background: linear-gradient(
        146deg,
        var(--color-primary) 0%,
        var(--color-primary-gradient-1) 26.78%,
        var(--color-primary-gradient-2) 37.66%,
        var(--color-primary-gradient-3) 48.53%,
        var(--color-primary-gradient-4) 59.84%,
        var(--color-primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonialsContainer {
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    overflow: auto;
    white-space: nowrap;
    overflow-x: auto;
}

.testimonialSingle {
    display: inline-flex;
    width: 580px;
    white-space: normal;
    vertical-align: top;
    height: 500px;
    padding-right: 30px;
    margin-right: 30px;
    flex-direction: column;
}

.testimonialSingle:last-of-type {
    border-right: unset;
    padding-right: 0px;
    margin-right: 0px;
}

.testimonialProject {
    font-size: 24px;
    font-family: "CalSans-Regular";
    margin-bottom: 100px;
    font-weight: 400;
    background: linear-gradient(
        146deg,
        var(--color-primary) 0%,
        var(--color-primary-gradient-1) 26.78%,
        var(--color-primary-gradient-2) 37.66%,
        var(--color-primary-gradient-3) 48.53%,
        var(--color-primary-gradient-4) 59.84%,
        var(--color-primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonialReview,
.testimonialReview * {
    font-size: 16px !important;
    font-family: "Lexend-Light" !important;
    margin-top: 0px;
    margin-bottom: 0px;
}

.testimonialReview {
    height: 100%;
    position: relative;
}

.testimonialReview::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0px;
    right: -30px;
    width: 1px;
    height: 90%;
    background: var(--color-grey-200);
}

.testimonialSingle:last-of-type .testimonialReview::after {
    display: none;
}

.testimonialReview b,
.testimonialReview strong {
    color: var(--color-text-main);
}

.testimonialClient {
    /* margin-top: auto; */
    font-size: 24px;
    font-family: "CalSans-Regular";
    /* margin-bottom: 12px; */
    margin-bottom: 5px;
}

.testimonialClientFunction {
    /* font-size: 24px; */
    font-family: "Lexend-Light";
    /* color: var(--color-text-main); */
    font-size: 18px;
    color: #9f9f9f;
}

.slides-container {
    position: relative;
    height: calc(100vh * 3);
    margin-bottom: 100px;
    overflow: clip;
    background: white;
    border-radius: 30px;
}

.slide {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Individual slide styling */
.slide1 {
    background: var(--color-bg-dark);
    z-index: 1;
    overflow: hidden;
}

.slide1::before,
.slide2::before,
.slide3::before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.slide1::before {
    background-image: url("../images/masca1.webp");
}

.slide2::before {
    background-image: url("../images/masca2.webp");
}

.slide3::before {
    background-image: url("../images/masca3.webp");
}

.slideContent {
    z-index: 2;
    color: white;
    padding-left: 6.6%;
    padding-right: 6.6%;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 40px;
}

.slide2 .slideContent,
.slide3 .slideContent {
    padding-top: 110px;
}

.slide2 {
    background: #074111;
    color: white;
    z-index: 2;
}

.slide3 {
    background: linear-gradient(
        145deg,
        rgba(9, 90, 119, 1) 0%,
        rgba(49, 155, 150, 1) 100%
    );
    color: white;
    z-index: 3;
}

.slide2.special-class,
.slide1.special-class {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

/* Rounded corners */
.slides-container > div:first-of-type {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.slides-container > div:last-of-type {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.footerTop {
    background-color: var(--color-bg-accent);
    padding-top: 70px;
    padding-bottom: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footerTop .contactMenu {
    flex-shrink: 0;
}

.footerTop h2 {
    font-size: 59px;
    font-family: "CalSans-Regular";
    font-weight: 400;
    color: white;
    margin-top: 0px;
    margin-bottom: 25px;
}

.footerTopText div,
.footerTopText div * {
    max-width: 660px;
    color: white;
    font-size: 17px;
    font-family: "Lexend-Light";
}

/* #whyUs h2 {
    font-size: 24px;
    font-family: 'Lexend-SemiBold';
    margin-bottom: 45px;
    text-transform: uppercase;
    background: linear-gradient(146deg, var(--color-primary) 0%, var(--color-primary-gradient-1) 26.78%, var(--color-primary-gradient-2) 37.66%, var(--color-primary-gradient-3) 48.53%, var(--color-primary-gradient-4) 59.84%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.slideTop {
    display: flex;
    text-align: left;
    align-items: center;
    column-gap: 50px;
}

.slideTop > * {
    width: calc(50% - 25px);
}

.slideTop h2,
.slideTop h3 {
    /* font-size: 48px;
    font-family: 'CalSans-Regular';  */
    font-size: 42px;
    font-family: "Lexend-Medium";
    font-weight: 400;
    color: white;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* Why Us: nicer line breaks on multi-line titles (reduces orphaned last lines where supported) */
#whyUs .slideTop h2 {
    text-wrap: balance;
}

.slideTop h2 *,
.slideTop h3 * {
    margin: 0px;
}

.slideTop img {
    /* border-radius: 15px; */
    object-fit: contain;
}

.slideText {
    display: flex;
    text-align: left;
    column-gap: 50px;
    /* margin-top: 75px;    */
    margin-top: auto;
    margin-bottom: auto;
}

.slideText > * {
    width: calc(50% - 25px);
}

.slideText h3,
.slideText h4 {
    /* font-size: 26px; */
    font-size: 24px;
    /* font-family: 'CalSans-Regular'; */
    font-family: "Lexend-Medium";
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 25px;
}

.textSlide,
.textSlide * {
    color: #d2d2d2;
    /* font-size: 17px; */
    font-size: 15px;
    font-family: "Lexend-Light";
    line-height: 26px;
}

.slideFooter {
    margin-top: auto;
    /* border-top: 1px solid #D4D4D4; */
    position: relative;
    padding-top: 40px;
}

.slideFooter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    /* thinner than the old border */
    /* background: linear-gradient(to right, rgba(0,0,0,0) 0%, #d4d4d4 50%, rgba(0,0,0,0) 100%); */
    background: #a9aaee4d;
}

.slideIcons {
    display: flex;
    justify-content: flex-start;
    column-gap: 100px;
    align-items: center;
}

.slideFooterText {
    display: flex;
    column-gap: 150px;
    align-items: center;
}

.slideFooterOneText {
    color: #d2d2d2;
    font-size: 17px;
    font-family: "Lexend-Light";
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.slideFooterOneText b {
    color: white;
    font-family: "CalSans-Regular";
    font-weight: 400;
    /* font-size: 34px; */
    font-size: 26px;
}

.slideTopClients {
    position: relative;
    /* container for absolute images */
    height: 270px;
    /* adjust as needed */
    margin: auto;
}

.slideTopClients img {
    position: absolute;
    /* absolute positioning inside container */
    transition: transform 1s ease-in-out;
    /* smooth movement */
}

.slideTopClients img:first-of-type {
    width: 150px;
    height: 150px;
    top: 87px;
    left: 75px;
}

.slideTopClients img:nth-of-type(2) {
    width: 135px;
    height: 135px;
    top: 10px;
    left: 220px;
}

.slideTopClients img:nth-of-type(3) {
    width: 80px;
    height: 80px;
    top: 125px;
    left: 365px;
}

.slideTopClients img:nth-of-type(4) {
    bottom: -40px;
    left: 47%;
    top: 84%;
    transform: translateX(-50%);
}

.slideTopClients img {
    position: absolute;
    opacity: 0;
    animation: fadeInOut 12s ease-in-out infinite;
}

/* Stagger delays for each image */
.slideTopClients img:nth-of-type(1) {
    animation-delay: 0s;
}

.slideTopClients img:nth-of-type(2) {
    animation-delay: 3s;
}

.slideTopClients img:nth-of-type(3) {
    animation-delay: 6s;
}

.slideTopClients img:nth-of-type(4) {
    animation-delay: 9s;
}

/* Keyframes for fading only */
@keyframes fadeInOut {
    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

footer {
    padding-top: 80px;
    padding-bottom: 90px;
}

.footerBottomTop {
    display: flex;
    justify-content: space-between;
}

.footerLeft {
    display: flex;
    flex-direction: column;
    row-gap: 43px;
    /* max-width: 30%; */
    max-width: 300px;
}

.footerLeftText {
    font-size: 17px;
}

.footerRight {
    width: calc(100% - 450px);
    display: flex;
    column-gap: 80px;
}

.footerRightColumnTitle {
    /* font-size: 17px; */
    font-size: 19px;
    font-family: "CalSans-Regular";
    margin-bottom: 35px;
    color: var(--color-text-main);
}

.footerRightColumnElements {
    display: flex;
    flex-direction: column;
    /* row-gap: 25px; */
    row-gap: 20px;
}

.footerRightColumnElements.services {
    display: block;
    /* column-count: 2; */
    column-count: 3;
    column-gap: 80px;
}

.footerRightColumnElement {
    color: var(--color-text-main);
    font-size: 17px;
    /* font-family: 'Lexend-Regular'; */
    font-family: "Lexend-Light";
}

.footerRightColumnElements.services .footerRightColumnElement {
    /* margin-bottom: 25px; */
    margin-bottom: 20px;
    display: block;
}

.footerBottom {
    margin-top: 90px;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
}

.footerLegals {
    display: flex;
    column-gap: 50px;
}

.footerLegals * {
    color: var(--color-grey-400);
    font-size: 15px;
    font-family: "Lexend-Light";
}

.footerSocials a img {
    filter: brightness(0);
    -webkit-filter: brightness(0);
    /* transition: 300ms; */
}

.footerSocials {
    display: flex;
    column-gap: 45px;
}

.swiper-services {
    width: 100%;
    height: 685px;
    padding-bottom: 70px;
}

.swiper,
.swiper * {
    box-sizing: content-box;
}

.swiper-services .swiper-slide {
    flex-shrink: 0;
    border-radius: 20px;
}

.swiper-services .swiper-slide:first-child {
    overflow: hidden;
}

.swiper-services .swiper-slide.portrait {
    width: 475px;
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    padding: 50px 40px;
    padding-bottom: 0px;
}

.swiper-services .swiper-slide.portrait .service-card-img-wrap {
    flex: 1 1 0;
    min-height: 0;
    margin-top: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Layout implicit desktop: mobile mocks (actualul comportament) */
.swiper-services
    .swiper-slide.portrait.service-mock--mobile
    .service-card-img-wrap
    img {
    width: 100%;
    height: 110%;
    max-height: none;
    margin-top: 8px;
    object-fit: cover;
    object-position: center top;
}

/* Layout special desktop: screen mocks – centrate în card */
.swiper-services
    .swiper-slide.portrait.service-mock--screen
    .service-card-img-wrap {
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.swiper-services
    .swiper-slide.portrait.service-mock--screen
    .service-card-img-wrap
    img {
    width: auto;
    height: 80%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 0 auto;
}

.swiper-services .swiper-slide.portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 320px;
    margin-top: auto;
}

.swiper-services
    .swiper-slide.portrait.ux-ui-design-slide
    .service-card-img-wrap
    img {
    height: 130%;
    object-fit: cover;
    object-position: center top;
}

.swiper-services
    .swiper-slide.portrait.aplicatii-de-mobil-slide
    .service-card-img-wrap
    img {
    height: 130%;
    object-fit: cover;
    object-position: center top;
}

.swiper-services .swiper-slide.landscape-stack {
    width: 700px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.swiper-services .swiper-slide.landscape-stack .landscape {
    flex: 1;
    display: flex;
    align-items: flex-start;
    column-gap: 10px;
    padding: 50px 40px;
    border-radius: 20px;
    max-height: calc(50% - 112.5px);
}

.swiper-services .swiper-slide.landscape-stack .landscape .serviceText {
    text-align: right;
    margin-left: auto;
}

.swiper-services .swiper-slide.landscape-stack .landscape:nth-of-type(2) {
    flex-direction: row-reverse;
    text-align: right;
}

.swiper-services
    .swiper-slide.landscape-stack
    .landscape:nth-of-type(2)
    .serviceText {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.swiper-services .swiper-slide.landscape-stack .landscape img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 320px;
    max-width: 320px;
}

.ux-ui-design-slide {
    background: #c29ddb;
    background: linear-gradient(
        45deg,
        rgba(194, 157, 219, 1) 0%,
        rgba(161, 131, 196, 1) 100%
    );
}

.dezvoltare-web-slide {
    background: #8992e3;
    background: linear-gradient(
        165deg,
        rgba(137, 146, 227, 1) 0%,
        rgba(168, 175, 236, 1) 100%
    );
}

.agile-testing-and-scrum-slide {
    background: #bbb989;
    background: linear-gradient(
        135deg,
        rgba(187, 185, 137, 1) 0%,
        rgba(204, 209, 136, 1) 100%
    );
}

.aplicatii-de-mobil-slide {
    background: #ffbfb4;
    background: linear-gradient(
        360deg,
        rgba(255, 191, 180, 1) 0%,
        rgba(236, 121, 126, 1) 100%
    );
}

.saas-development-slide {
    background: #c29ddb;
    background: linear-gradient(
        215deg,
        rgba(194, 157, 219, 1) 0%,
        rgba(161, 131, 196, 1) 100%
    );
}

.ai-integration-chat-slide {
    background: #219c78;
    background: linear-gradient(
        135deg,
        rgba(33, 156, 120, 1) 0%,
        rgba(41, 216, 173, 1) 100%
    );
}

.seo-and-marketing-slide {
    background: #8992e3;
    background: linear-gradient(
        180deg,
        rgba(137, 146, 227, 1) 0%,
        rgba(168, 175, 236, 1) 100%
    );
}

#servicesSection {
    position: relative;
    /* for absolute positioning of scrollbar */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    margin-bottom: 100px;
}

.swiper-services {
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.swiper-services::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

.swiper-services .swiper-slide .card,
.swiper-services .swiper-slide.card {
    transition-duration: 300ms;
    transition-property: transform, box-shadow;
    transition-timing-function: ease-out;
    transform: rotate3d(0);
    transform-style: preserve-3d;
}

.card:hover {
    transition-duration: 150ms;
}

.swiper-services .swiper-slide .card img {
    transition: transform 300ms ease-out;
}

.serviceText h2 {
    font-size: 24px;
    font-family: "CalSans-Regular";
    color: white;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 30px;
}

.serviceText div,
.serviceText div * {
    color: white;
    font-family: "Lexend-Light";
    font-size: 17px !important;
}

.service-card-description {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
    max-height: 5.6em;
}

#servicesSection {
    transition:
        margin-left 0.4s ease,
        margin-right 0.4s ease;
}

/* .swiper-services .swiper-slide.portrait:first-of-type{
    margin-left: 11.4% !important;
} */
.swiper-services .swiper-slide:last-child {
    padding-right: 11.4% !important;
}

.swiper-projects .swiper-slide:last-child {
    margin-right: 11.4% !important;
}

.arrowsServices {
    display: flex;
    justify-content: flex-end;
    width: auto;
    padding-right: 11.4%;
    column-gap: 15px;
}

.arrowLeft,
.arrowRight {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--color-text-main);
    border-radius: 50px;
    cursor: pointer;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
    > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    bottom: 0px;
    top: auto;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
    > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    bottom: 0px;
    top: auto;
    width: 350px;
    margin-left: auto;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    border-radius: 20px;
    display: block;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--color-primary);
    border-radius: 20px;
}

.swiper-services {
    overflow-x: hidden;
    padding-top: 75px;
}

#allServicesSection {
    background-color: var(--color-bg-dark);
    border-radius: 30px;
    padding: 125px 100px;
    margin-bottom: 85px;
    position: relative;
}

.oneServiceLeft {
    max-width: 275px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    flex-shrink: 0;
    width: 100%;
}

.oneService {
    display: flex;
    justify-content: space-between;
    margin-bottom: 250px;
}

.oneServiceRightContainer {
    width: 62%;
}

.oneServiceRight {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
    /* width: 62%; */
    align-items: flex-start;
    align-content: flex-start;
}

.oneAdvantage {
    color: var(--color-grey-300);
    font-size: 16px;
    font-family: "Lexend-Regular";
    padding: 10px 35px;
    border: 1px solid var(--color-grey-300);
    border-radius: 30px;
    height: max-content;
}

.oneServiceTitle {
    font-size: 36px;
    color: white;
    font-family: "CalSans-Regular";
    display: flex;
    flex-direction: column;
}

.oneServiceTitle b {
    font-weight: normal;
    color: var(--color-grey-300);
}

.viewService {
    display: flex;
    width: 150px;
    border: 1px solid white;
    border-radius: 23px;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    color: white;
    font-size: 16px;
    font-family: "Lexend-Regular";
    transition: 300ms;
}

.viewService:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

.viewService img {
    width: 42px;
    height: 42px;
    margin-right: 5px;
}

#allServicesSection::before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url("../images/masca1.webp");
    background-position: bottom;
    background-repeat: no-repeat;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.servicesContainer {
    position: relative;
    z-index: 1;
}

.swiper-projects {
    padding-top: 60px;
}

.swiper-projects .swiper-slide {
    height: 680px;
    border-radius: 20px;
    width: 500px;
    overflow: hidden;
}

.swiper-projects .swiper-slide .swiper-content {
    display: flex;
    flex-direction: column;
    padding: 55px 40px;
    height: calc(100% - 55px);
    padding-bottom: 0px;
}

.swiper-projects .swiper-slide .serviceText img {
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    max-width: 170px;
}

.swiper-projects .swiper-slide .swiper-content > img {
    height: 450px;
    object-fit: contain;
    margin-top: auto;
    margin-bottom: -60px;
}

.swiper-projects .swiper-slide .swiper-content .project-card-img-wrap {
    width: 100%;
    height: 450px;
    margin-top: auto;
    margin-bottom: -60px;
    overflow: hidden;
}

.swiper-projects .swiper-slide .swiper-content .project-card-img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 0 auto;
}

.swiper-projects .swiper-slide .swiper-content .serviceText div {
    margin-top: 40px;
}

.swiper-projects .swiper-slide .swiper-content .serviceText div * {
    margin: 0px;
}

.project-description,
.swiper-projects
    .swiper-slide
    .swiper-content
    .serviceText
    .project-description {
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis;
    line-height: 1.4em;
    max-height: 5.6em !important;
    height: auto !important;
}

#projects {
    position: relative;
    /* for absolute positioning of scrollbar */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    margin-bottom: 100px;
}

.swiper-projects {
    overflow-x: hidden;
    padding-bottom: 70px;
}

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

.projectsTitle {
    font-size: 24px;
    font-family: "Lexend-SemiBold";
    /* text-transform: uppercase;    */
    background: linear-gradient(
        146deg,
        var(--color-primary) 0%,
        var(--color-primary-gradient-1) 26.78%,
        var(--color-primary-gradient-2) 37.66%,
        var(--color-primary-gradient-3) 48.53%,
        var(--color-primary-gradient-4) 59.84%,
        var(--color-primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projectsRight {
    display: flex;
    column-gap: 15px;
    align-items: center;
}

.arrowsProjects {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.arrowRight,
.arrowLeft,
.arrowLeft img,
.arrowRight img {
    transition: 300ms;
}

.projectsRight > a {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    width: 215px;
    justify-content: space-between;
    border-radius: 25px;
    padding-left: 20px;
    height: 50px;
    font-family: "Lexend-Regular";
}

.projectsRight > a img {
    width: 42px;
    height: 42px;
    margin-right: 5px;
}

.recentProjects:hover span {
    transform: translateX(70px);
}

.recentProjects span,
.recentProjects img {
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.recentProjects:hover img {
    transform: translateX(-180px);
}

.arrowRight:hover,
.arrowLeft:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.arrowRight:hover img,
.arrowLeft:hover img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.arrowLeft:hover img {
    transform: translateX(-5px);
}

.arrowRight:hover img {
    margin-left: 5px;
}

.imagesMobile {
    height: 60px;
    display: flex;
    column-gap: 30px;
    justify-content: flex-start;
}

.swiper-services
    .swiper-slide.portrait.aplicatii-de-mobil-slide
    .imagesMobile
    img {
    height: 60px;
    width: auto;
    max-width: 70px;
}

.serviceSubtitle {
    font-size: 17px;
    font-family: "Lexend-Light";
    margin-top: 20px;
}

#bannerService img {
    width: 100%;
    height: 650px;
    object-fit: contain;
    /* object-fit: cover; */
    object-position: center;
}

#bannerService {
    margin-bottom: 40px;
}

#bannerService.projectSingle,
#bannerService.bannerEnd {
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: background-position;
}

[data-parallax] {
    will-change: transform;
    transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-parallax] {
        will-change: auto;
        transform: none !important;
    }

    [data-parallax-bg] {
        background-position: center !important;
    }

    .section-animate {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

.servicesPage#firstSection {
    margin-bottom: 40px;
}

.servicePage#firstSection {
    margin-bottom: 85px;
}

.service-cta-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

header:not(.scrolled) .headerRight .service-cta-buttons {
    position: absolute;
    left: -9999px;
    top: 0;
    visibility: hidden;
    pointer-events: none;
}

header.scrolled .headerRight .service-cta-buttons {
    position: static;
    left: auto;
    top: auto;
    visibility: visible;
    pointer-events: auto;
}

header.scrolled .headerRight:has(.service-cta-buttons) .service-cta-buttons {
    margin-left: -20px;
}

.service-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-primary);
    color: white;
    border-radius: 20px;
    height: 40px;
    padding-left: 14px;
    padding-right: 3px;
    font-family: "Lexend-Regular";
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--color-primary);
    transition:
        background-color 300ms,
        color 300ms,
        width 0.35s ease,
        padding 0.35s ease,
        border-width 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
    width: 0;
    padding-left: 0;
    padding-right: 0;
    border-width: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.service-cta-btn span,
.service-cta-btn .service-cta-icon {
    transition: transform 0.5s ease-in-out;
}

.service-cta-btn span {
    display: block;
    flex-shrink: 0;
}

.service-cta-btn:hover {
    background-color: white;
    color: var(--color-primary);
}

.service-cta-btn:hover .service-cta-icon {
    transform: translateX(calc(-1 * var(--cta-icon-shift)));
}

.service-cta-btn:hover span {
    transform: translateX(var(--cta-text-shift));
}

.service-cta-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    will-change: transform;
}

.service-cta-icon svg {
    color: var(--color-primary);
}

header.scrolled .service-cta-btn {
    width: var(--cta-width);
    padding-left: 14px;
    padding-right: 3px;
    border-width: 1px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.clients-swiper {
    height: 142.5px;
}

.projectsService {
    margin-top: 100px;
}

.techText,
.advantagesText {
    display: flex;
    column-gap: 4%;
}

.techText > div,
.advantagesText > div {
    width: 48%;
}

#techService h2 {
    font-size: 59px;
    font-family: "CalSans-Regular";
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 50px;
}

#techService h2 span {
    background: linear-gradient(
        146deg,
        var(--color-primary) 0%,
        var(--color-primary-gradient-1) 26.78%,
        var(--color-primary-gradient-2) 37.66%,
        var(--color-primary-gradient-3) 48.53%,
        var(--color-primary-gradient-4) 59.84%,
        var(--color-primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.techServiceLeft div,
.techServiceLeft div *,
.advantagesLeft,
.advantagesLeft * {
    font-size: 17px;
    font-family: "Lexend-Light";
    margin-top: 0px;
}

.oneTech,
.oneAdvantageService {
    display: flex;
    height: 40px;
    column-gap: 20px;
    border: 1px solid var(--color-text-main);
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 30px;
    font-size: 16px;
    font-family: "Lexend-Light";
    width: max-content;
    align-items: center;
}

.oneAdvantageService {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.oneTech img {
    height: 24px;
    width: 27px;
    object-fit: contain;
}

.techServiceRight,
.advantagesRight {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    flex-wrap: wrap;
    align-content: flex-start;
}

#secondBanner {
    margin-top: 260px;
    margin-bottom: 140px;
    height: 1280px;
    /* adjust height */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* creates parallax effect */
    position: relative;
    width: 100%;
}

#advantagesService {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
    margin-bottom: 70px;
}

.titleWithBackground span {
    background: linear-gradient(
        146deg,
        var(--color-primary) 0%,
        var(--color-primary-gradient-1) 26.78%,
        var(--color-primary-gradient-2) 37.66%,
        var(--color-primary-gradient-3) 48.53%,
        var(--color-primary-gradient-4) 59.84%,
        var(--color-primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.titleWithBackground {
    font-size: 59px;
    margin-top: 0px;
    font-family: "CalSans-Regular";
    font-weight: 400;
    line-height: 65px;
    margin-bottom: 0px;
}

.servicesTopService .arrowsServices {
    padding-right: 0px;
}

.servicesTopService {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
}

.clients-swiper.justify-center .swiper-wrapper {
    justify-content: center;
}

.servicesList {
    padding: 40px 50px;
    background-color: var(--color-bg-light);
    border-radius: 30px;
    column-count: 3;
    column-gap: 160px;
    display: block;
    margin-top: 40px;
}

.servicesList a {
    display: block;
    margin-bottom: 25px;
    color: var(--color-text-main);
    /* font-size: 20px;
    font-family: 'Lexend-Medium'; */
    font-size: 18px;
    font-family: "Lexend-Regular";
}

.contactContainer {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 100px;
}

.contactContainer .h2 {
    font-size: 20px;
    font-family: "Lexend-Regular";
    font-weight: normal;
    margin: 0px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.contactContainer h1 {
    font-size: 86px;
    font-family: "CalSans-Regular";
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 30px;
}

.contactDescription {
    font-size: 20px;
    font-family: "Lexend-Light";
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contactDescription a {
    font-family: "Lexend-Medium";
    color: var(--color-primary);
}

.contactForm input:not([type="radio"]),
.contactForm textarea {
    background: var(--color-bg-card);
    border: none;
    outline: none;
    padding: 20px 30px;
    border-radius: 35px;
    font-size: 20px;
    font-family: "Lexend-Regular";
    color: var(--color-text-main);
    box-sizing: border-box;
    width: 100%;
}

.contactForm input:not([type="radio"])::placeholder,
.contactForm textarea::placeholder {
    font-size: 16px;
    font-family: "Lexend-Regular";
    color: var(--color-text-main);
}

.input-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: flex-start;
    width: 100%;
}

.input-wrap input.has-error,
.input-wrap textarea.has-error {
    border: 1px solid var(--color-error);
}

.contactForm {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
}

.input-wrap:nth-of-type(2),
.input-wrap:nth-of-type(3) {
    width: 48%;
}

.contactForm .input-wrap label {
    font-size: 16px;
    font-family: "Lexend-Light";
}

.contactForm textarea {
    min-height: 180px;
    resize: none;
}

.iti--allow-dropdown
    .iti__country-container:not(:has(+ input[disabled])):not(
        :has(+ input[readonly])
    )
    .iti__selected-country-primary:hover,
.iti--allow-dropdown
    .iti__country-container:not(:has(+ input[disabled])):not(
        :has(+ input[readonly])
    )
    .iti__selected-country:has(+ .iti__dropdown-content:hover)
    .iti__selected-country-primary {
    background: unset !important;
}

.contactForm .iti input:not([type="radio"]) {
    width: 100%;
    padding-left: 100px !important;
}

.iti__selected-country-primary {
    display: none !important;
}

.iti__selected-dial-code {
    font-size: 20px;
    font-family: "Lexend-Regular";
    color: var(--color-text-main);
}

.iti__country-container {
    left: 37px !important;
}

.custom-file {
    position: relative;
    display: inline-block;
}

.file-placeholder {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    color: #777;
    background: #fff;
}

.file-placeholder:hover {
    border-color: #999;
    color: #333;
}

.custom-file {
    width: 100%;
    background: var(--color-bg-card);
    border-radius: 35px;
}

.custom-file label {
    background: var(--color-bg-card);
    margin: 10px;
    border: 2px dashed var(--color-grey-200);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
}

.custom-file.dragover label {
    border-color: var(--color-success);
    background: #eafbea;
    color: #333;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
}

.custom-file.uploaded label {
    border-color: var(--color-success);
    background: #f9fff9;
    color: var(--color-success);
    font-weight: 500;
}

.budget-radio {
    padding: 20px 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: var(--color-bg-card);
    border-radius: 35px;
    box-sizing: border-box;
}

.budget-radio label input {
    display: none;
}

.budget-radio label span {
    color: var(--color-grey-300);
    font-size: 20px;
    font-family: "Lexend-Regular";
    cursor: pointer;
    transition: 300ms;
}

input[type="radio"]:checked + span {
    color: black;
}

.input-wrap.terms-wrap {
    flex-direction: row;
    column-gap: 25px;
    margin-top: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.input-wrap.terms-wrap a {
    color: var(--color-primary);
    font-family: "Lexend-Medium";
}

.buttonForm {
    width: 260px;
    margin-left: auto;
    margin-right: auto;
    height: 55px;
    background: var(--color-primary);
    border-radius: 28px;
    color: white;
    font-size: 18px;
    font-family: "Lexend-Regular";
    border: unset;
    outline: unset;
    cursor: pointer;
}

input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--color-bg-card);
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

input[type="radio"]::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: var(--color-primary);
}

input[type="radio"]:checked::before {
    transform: scale(1);
}

/* input[type="radio"]:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
} */

.orCall {
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 20px;
    font-family: "Lexend-Light";
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.borderOr {
    height: 1px;
    width: 100%;
    background-color: var(--color-grey-300);
}

.orText {
    max-width: 800px;
    text-align: center;
    font-size: 17px;
    font-family: "Lexend-Light";
    color: var(--color-text-main);
    margin: 0 auto;
}

.orWithBackground {
    padding: 50px;
    background: #39239c;
    background: radial-gradient(
        circle,
        rgba(57, 35, 156, 1) 0%,
        rgba(50, 39, 103, 1) 100%
    );
    height: 60px;
    width: 630px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 80px;
}

.orWithBackgroundLeft h2 {
    margin: 0px;
    text-align: left;
    color: white;
    font-family: "Lexend-Regular";
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: none;
}

.orWithBackgroundLeft div {
    font-size: 17px;
    color: var(--color-grey-300);
    font-family: "Lexend-Light";
}

#sectionAbout {
    margin-top: 160px;
}

.aboutText {
    max-width: 1050px;
    font-size: 17px;
    font-family: "Lexend-Light";
    display: flex;
    margin-bottom: 100px;
}

.aboutText::before {
    content: "";
    width: 5px;
    height: auto;
    background-color: var(--color-primary);
    display: inline-flex;
    flex-shrink: 0;
    border-radius: 10px;
    margin-right: 100px;
}

.pin,
.pin-line,
.pin-label {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pin.visible,
.pin-line.visible,
.pin-label.visible {
    opacity: 1;
}

.pin-mobile-marker {
    display: none;
}

#map-svg {
    display: flex;
    margin: 0 auto;
    overflow: visible;
}

#aboutTextTeam {
    font-size: 17px;
    font-family: "Lexend-Light";
    margin-bottom: 100px;
}

.oneInfoBig {
    background: linear-gradient(
        146deg,
        var(--color-primary) 0%,
        var(--color-primary-gradient-1) 26.78%,
        var(--color-primary-gradient-2) 37.66%,
        var(--color-primary-gradient-3) 48.53%,
        var(--color-primary-gradient-4) 59.84%,
        var(--color-primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 75px;
    font-family: "CalSans-Regular";
    font-weight: 400;
}

#additionalInfo {
    display: flex;
    align-items: center;
    margin-bottom: 125px;
    column-gap: 140px;
    justify-content: center;
    text-align: center;
}

.oneInfoDescription {
    color: #a1a1a1;
    font-size: 17px;
    font-family: "Lexend-Light";
}

.allClients {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.singleClient {
    width: calc(33.33% - 35px);
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.allClients .slide-project {
    height: 625px;
    border-radius: 20px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 55px;
    display: block;
}

.allClients .slide-project .swiper-content img {
    width: 100%;
    object-fit: contain;
    height: 550px;
    margin-top: auto;
    margin-bottom: -90px;
}

.allClients .slide-project .swiper-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* .logoClient{
    width: 185px;
    height: 61px;
    object-fit: contain;
    object-position: left;
} */
.logoClient {
    width: 140px;
    height: 40px;
    object-fit: contain;
    object-position: left;
}

.tagClient {
    box-shadow: 0px 3px 6px rgba(209, 209, 209, 0.4);
    -webkit-box-shadow: 0px 3px 6px rgba(209, 209, 209, 0.4);
    padding: 12px 18px;
    width: auto;
    border-radius: 22px;
    font-size: 18px;
    font-family: "Lexend-Light";
    color: var(--color-text-main);
}

.tagsClient {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 12px;
    padding-bottom: 10px;
}

.containerMaterialize {
    width: 100%;
    height: 790px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f0928;
    border-radius: 20px;
    color: white;
    flex-direction: column;
    row-gap: 30px;
    position: relative;
}

.containerMaterialize::before {
    background-image: url(../images/masca1.webp);
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100vh;
    z-index: 1;
    border-radius: 20px;
}

.containerMaterialize > * {
    z-index: 2;
    text-align: center;
}

.containerMaterializeDescription {
    color: var(--color-grey-300);
}

.containerMaterializeTitle {
    font-size: 59px;
    font-family: "CalSans-Regular";
    margin-bottom: 60px;
}

.containerMaterializeTitle span {
    color: var(--color-grey-300);
}

.d-none {
    display: none;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.btnViewMore {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    width: 215px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 30px;
    color: white;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: "Lexend-Regular";
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.btnViewMore span {
    display: inline-block;
    transition: transform 0.15s ease-out;
}

a.industry.singleClient,
div.industry.singleClient {
    width: 100%;
    border-radius: 20px;
    color: inherit;
}

.industry .health-care-slide {
    background: linear-gradient(135deg, rgb(132, 227, 204), rgb(33, 156, 120));
}

.industry .retail-market-slide {
    background: linear-gradient(135deg, rgb(236, 184, 165), rgb(229, 212, 155));
}

.industry .auto-slide {
    background: linear-gradient(135deg, rgb(255, 191, 180), rgb(236, 121, 126));
}

.industry .educatie-slide {
    background: linear-gradient(135deg, rgb(165, 173, 246), rgb(128, 137, 214));
}

.allClients .industry .slide-project {
    height: 450px;
    padding-top: 0px;
}

.allClients .industry .slide-project .swiper-content {
    flex-direction: row;
    align-items: center;
    column-gap: 150px;
}

.allClients .industry .slide-project .swiper-content img {
    height: 420px;
    width: 470px;
    margin-top: 45px;
    margin-bottom: 0px;
}

.allClients .industry .slide-project .swiper-content .contactMenu img {
    height: 42px;
    margin-top: 0px;
    width: 42px;
}

.allClients .industry .contactMenu span {
    font-size: 16px;
    color: white;
    font-family: "Lexend-Regular";
}

.allClients .industry .contactMenu {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    width: 206px;
    padding-left: 20px;
}

.allClients .industry .contactMenu:hover img {
    transform: translateX(-175px);
}

.contactMenu:hover span {
    transform: translateX(72px);
}

.clientsIndustries {
    width: 100%;
}

.clientsIndustries .clientContainer {
    max-width: 20%;
}

.industry .serviceTitle {
    font-size: 46px;
    font-family: "CalSans-Regular";
    color: white;
}

.industry .serviceText {
    margin-bottom: 30px;
}

.singleClient.industry:first-of-type .swiper-content > img {
    margin-bottom: -135px;
}

.allClients.industries {
    padding-top: 215px;
}

#sectionAbout.industry .aboutText {
    margin-bottom: 0px;
    font-size: 18px;
}

#bannerService.industry {
    margin-top: 130px;
}

#bannerService.industry {
    height: 1400px;
    /* adjust as needed */
    background-attachment: fixed;
    /* key for parallax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#clients.industry {
    margin-top: 0px;
    padding-bottom: 0px;
}

#description_end * {
    color: var(--color-text-main);
    font-size: 17px !important;
    font-family: "Lexend-Light" !important;
}

.allClients.clientsPortfolio .slide-project {
    height: 322px;
    padding-top: 0px;
}

.allClients.clientsPortfolio .slide-project .swiper-content img {
    height: 550px;
    margin-top: -30px;
    margin-bottom: -40px;
}

.allClients.clientsPortfolio .slide-project .swiper-content img.image-portrait {
    margin-top: 30px;
}

#project-filters {
    margin-top: 40px;
    margin-bottom: 80px;
    display: flex;
    column-gap: 24px;
}

#project-filters {
    position: relative;
    display: flex;
    column-gap: 24px;
}

.filter-btn {
    position: relative;
    overflow: hidden;
    background: unset;
    outline: none;
    border: none;
    padding: 12px 18px;
    font-size: 18px;
    font-family: "Lexend-Light";
    border-radius: 22px;
    cursor: pointer;
    color: var(--color-primary);
    z-index: 1;
    transition: color 0.3s ease;
    box-shadow: 0px 3px 6px rgba(209, 209, 209, 0.4);
    -webkit-box-shadow: 0px 3px 6px rgba(209, 209, 209, 0.4);
}

/* pseudo-element for top-to-bottom fill effect */
.filter-btn::before {
    content: "";
    position: absolute;
    top: 0;
    /* start at top */
    left: 0;
    width: 100%;
    /* full width */
    height: 0;
    /* start collapsed */
    background-color: var(--color-primary);
    border-radius: 22px;
    z-index: 0;
    transition: height 0.5s ease;
    /* smooth vertical fill */
}

/* text stays above pseudo-element */
.filter-btn span {
    position: relative;
    z-index: 1;
}

/* active state: fill downward */
.filter-btn.active::before {
    height: 100%;
    /* fill the entire button vertically */
}

/* active text color */
.filter-btn.active {
    color: white;
    box-shadow: unset;
    -webkit-box-shadow: unset;
}

.terms .firstLeft {
    width: 100%;
}

#contentTerms * {
    font-size: 17px !important;
    font-family: "Lexend-Light" !important;
}

#contentTerms h3,
#contentTerms b {
    font-size: 20px !important;
    font-family: "Lexend-SemiBold" !important;
    color: var(--color-text-main);
    margin-top: 60px;
    margin-bottom: 20px;
}

#contentTerms {
    margin-bottom: 100px;
}

.facebook:hover {
    filter: brightness(0) saturate(100%) invert(32%) sepia(29%) saturate(5558%)
        hue-rotate(204deg) brightness(101%) contrast(90%);
    -webkit-filter: brightness(0) saturate(100%) invert(32%) sepia(29%)
        saturate(5558%) hue-rotate(204deg) brightness(101%) contrast(90%);
}

.linkedin:hover {
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(5173%)
        hue-rotate(200deg) brightness(90%) contrast(92%);
    -webkit-filter: brightness(0) saturate(100%) invert(27%) sepia(96%)
        saturate(5173%) hue-rotate(200deg) brightness(90%) contrast(92%);
}

.insta:hover {
    filter: brightness(0) saturate(100%) invert(85%) sepia(16%) saturate(6449%)
        hue-rotate(328deg) brightness(108%) contrast(98%);
    -webkit-filter: brightness(0) saturate(100%) invert(85%) sepia(16%)
        saturate(6449%) hue-rotate(328deg) brightness(108%) contrast(98%);
}

.projectSingle #sectionAbout {
    margin: 0px;
}

.projectSingle .aboutText::before {
    /* height: 135px; */
    height: auto;
}

#logoAndPlatform {
    display: flex;
    align-items: center;
    column-gap: 80px;
    margin-bottom: 100px;
    justify-content: center;
}

#bannerService.projectSingle {
    margin-bottom: 20px;
}

.logoProject {
    /* max-width: 330px; */
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

.borderSep {
    width: 1px;
    background: var(--color-grey-200);
    height: 170px;
}

#bannerService.projectSingle {
    height: min(1280px, 75vw);
    max-height: 100vh;
    background-size: cover;
}

#logoAndPlatform > div b {
    font-family: "Lexend-Light" !important;
    /* font-size: 24px; */
    font-size: 20px;
    color: #6a6a6a;
    font-weight: normal;
}

#logoAndPlatform > div *:not(b) {
    font-family: "Lexend-Light" !important;
    /* font-size: 24px; */
    font-size: 20px;
    color: var(--color-text-main);
    font-weight: normal;
    margin: 0px !important;
}

.platform,
.deliverables {
    display: flex;
    flex-direction: row;
    row-gap: 12px;
    justify-content: space-between;
}

#logoAndPlatform .platformsText {
    font-size: 17px !important;
}

#logoAndPlatform .deliverablesText,
#logoAndPlatform .deliverablesText * {
    font-size: 17px !important;
}

#logoAndPlatform .platform b,
#logoAndPlatform .deliverables b {
    font-size: 17px !important;
}

#logoAndPlatform > div {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    max-width: 460px;
}

.challengeImages {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /* height: 950px;
    max-height: 950px; */
    height: 800px;
    max-height: 800px;
    overflow: hidden;
    column-gap: 35px;
    margin-top: 85px;
    margin-bottom: 170px;
}

.challengeImages img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
}

.challengeImages.count-1 img {
    width: 100%;
}

.challengeImages.count-2 img {
    width: calc(50% - 17.5px);
    height: 100%;
}

/* === 3 images === */
.challengeImages.count-3 {
    display: flex;
}

.challengeImages.count-3 > img:first-child {
    width: calc(50% - 17.5px);
    height: 100%;
    object-fit: cover;
}

.challengeImages.count-3 .side {
    row-gap: 35px;
    width: calc(50% - 17.5px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.challengeImages.count-3 .side img {
    height: calc(50% - 17.5px);
    width: 100%;
    object-fit: cover;
}

.challengeImages.count-4 img {
    flex: 1 1 calc(50% - 5px);
    height: calc(50% - 5px);
}

.sectionProject h2 {
    /* font-size: 59px; */
    font-size: 45px;
    font-family: "CalSans-Regular";
    font-weight: normal;
    margin: 0px;
    margin-bottom: 45px;
    background: linear-gradient(
        146deg,
        var(--color-primary) 0%,
        var(--color-primary-gradient-1) 26.78%,
        var(--color-primary-gradient-2) 37.66%,
        var(--color-primary-gradient-3) 48.53%,
        var(--color-primary-gradient-4) 59.84%,
        var(--color-primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sectionProjectDescription {
    max-width: 55%;
}

.sectionProjectDescription,
.sectionProjectDescription * {
    font-size: 17px !important;
    font-family: "Lexend-Light" !important;
}

#processSection .sectionProjectDescription {
    max-width: unset;
}

.swiperMockupsWrap {
    position: relative;
    margin-top: 140px;
}

.swiperMockupsWrap::before,
.swiperMockupsWrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20%;
    z-index: 2;
    pointer-events: none;
}

.swiperMockupsWrap::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.swiperMockupsWrap::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.swiperMockups {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    height: 85vh;
    margin-top: 0;
}

.swiperMockups .swiper-wrapper .swiper-slide {
    align-items: center !important;
}

.swiperMockups .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
    position: relative;
    z-index: 1;
}

.swiperMockups .swiper-slide-prev,
.swiperMockups .swiper-slide-next {
    z-index: 2;
}

.swiperMockups .swiper-slide-active {
    z-index: 3;
}

.swiperMockups .swiper-slide img {
    width: auto;
    max-height: 100%;
    border-radius: 12px;
    transition:
        transform 0.5s ease,
        filter 0.5s ease,
        opacity 0.5s ease;
    will-change: transform, filter, opacity;
    backface-visibility: hidden;
}

/* Default non-active slides */
.swiperMockups .swiper-slide:not(.swiper-slide-active) img {
    filter: blur(4px);
    transform: scale(0.7);
    /* 70% height/size */
    opacity: 0.7;
    transform-origin: top;
}

/* Active slide */
.swiperMockups .swiper-slide-active img {
    filter: none;
    transform: scale(1);
    /* full size */
    opacity: 1;
}

.progress-container {
    width: 100%;
    height: 4px;
    background: var(--color-grey-200);
    margin-top: 20px;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    width: 0;
    height: 100%;
    background: var(--color-primary);
    transition: width 0.2s linear;
}

#processSection {
    margin-bottom: 120px;
}

.progress-container {
    width: 350px;
    height: 5px;
    background: #eee;
    margin-top: 20px;
    border-radius: 2px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    width: 350px;
    margin-left: auto;
    margin-right: auto;
}

#bannerService.bannerEnd {
    margin-bottom: 0px;
}

.projectButton {
    padding: 15px 35px;
    /* background-color: var(--color-primary); */
    background-color: white;
    border: 1px solid black;
    border-radius: 30px;
    font-size: 16px;
    font-family: "Lexend-Regular";
    /* color: white; */
    color: black;
    display: flex;
    width: max-content;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    transition: 300ms;
}

.projectButton:hover {
    background-color: #0019ff;
    border-color: #0019ff;
    color: white;
}

#shareAndProject {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    margin-bottom: 50px;
}

.projectButton img {
    filter: brightness(0);
    -webkit-filter: brightness(0);
    width: 22px;
    height: 22px;
}

.projectButton:hover img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.viewProjectButtons {
    display: flex;
    column-gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 10px;
}

.shareProject {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.shareLinks {
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    /* hidden by default */
    justify-content: center;
    align-items: center;
    /* z-index: 1000; */
    z-index: 99999999;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #fff;
    max-width: max-content;
    max-height: 90vh;
    width: 100%;
    overflow-y: auto;
    border-radius: 16px;
    padding: 40px 90px;
    z-index: 1001;
    animation: fadeInUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#contactModal .contactForm textarea {
    min-height: 90px;
}

#contactModal h2 {
    text-align: center;
    font-size: 36px;
    font-family: "CalSans-Regular";
    font-weight: normal;
    margin-top: 0px;
    margin-bottom: 20px;
}

#contactModal .input-wrap.terms-wrap {
    margin-bottom: 0px;
    align-items: center;
    margin-top: 0px;
}

.hidden-desktop {
    display: none;
}

.hidden-mobile {
    display: flex;
}

.footerRightColumnElements.cotnact a {
    background: linear-gradient(
        146deg,
        var(--color-primary) 0%,
        var(--color-primary-gradient-1) 26.78%,
        var(--color-primary-gradient-2) 37.66%,
        var(--color-primary-gradient-3) 48.53%,
        var(--color-primary-gradient-4) 59.84%,
        var(--color-primary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footerRightColumnElements.cotnact .footerRightColumnElement {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.pin-label {
    transition:
        transform 0.2s ease,
        font-size 0.2s ease;
}

.pin-group:hover .pin-label {
    font-size: 14px;
}

.testimonialBottom {
    display: flex;
    margin-top: auto;
    width: 100%;
    align-items: center;
}

.testimonialBottom img {
    width: 160px;
    height: 80px;
    object-fit: contain;
    margin-left: auto;
}

.headerBottom .headerSocial img {
    filter: unset !important;
    -webkit-filter: unset !important;
}

.alertify-notifier .ajs-message.ajs-success {
    background: #fff;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.alertify-notifier .ajs-message.ajs-error {
    background: #fff;
    border: 1px solid var(--color-error);
    color: var(--color-error);
}

.alertify-notifier .ajs-message.ajs-warning {
    border: 1px solid var(--color-warning);
}

.alertify-notifier .ajs-message.ajs-warning {
    border: 1px solid var(--color-warning);
}

.alertify-notifier .ajs-message {
    font-family: Lexend-Regular !important;
}
