html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 69px;
}

/* Language switcher */
.ss-lang-switcher {
    position: relative;
    display: inline-flex;
}

.ss-lang-switcher__trigger {
    cursor: pointer;
}

.ss-lang-switcher__trigger img,
.ss-lang-switcher__item img {
    display: block;
    width: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.ss-lang-switcher__trigger img {
	height: 21px !important;
}

.ss-lang-switcher__item img {
	height: 15px !important;
}

.ss-lang-switcher__label {
    line-height: 1;
}

.ss-lang-switcher__dropdown {
/* 	display: flex;
	flex-direction: column;
	gap: 8px; */
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #00C8FF;
    border-radius: 20px;
    padding: 0;
    list-style: none;
    margin: 0;
    min-width: 140px;
    box-shadow: 0 4px 16px rgba(0, 82, 105, 0.12);
    opacity: 0;
	overflow: hidden;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 9999;
}

.ss-lang-switcher:hover .ss-lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ss-lang-switcher__item a {
    display: flex;
    align-items: center;
    padding: 16px;
    text-decoration: none;
}

.ss-lang-switcher__item a:hover {
    background: #f0fafd;
}

.ss-lang-switcher__check {
    margin-left: auto;
    color: #00647F;
    flex-shrink: 0;
	display: block;
	width: 12px;
	height: 12px;
}






/* Contact popup */
.gtp-hide-default {
	display: none !important;
}

body.contact-popup-open {
    overflow: hidden;
}

.gtp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
}
.gtp-popup-overlay.is-active {
    display: flex;
}
.gtp-popup-overlay .contact-popup {
    position: relative !important;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
    background: #fff !important;
    border-radius: 32px;
	border: 2px solid #00B1E1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gtp-popup-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 50px !important;
    height: 50px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 10;
    font-size: 0 !important;
    line-height: 0 !important;
    transform-origin: center;
    transition: transform 0.25s ease;
}

.gtp-popup-close-btn::before,
.gtp-popup-close-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #005269;
    transform: translate(-50%, -50%) rotate(45deg);
}

.gtp-popup-close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.gtp-popup-close-btn:hover {
    transform: rotate(90deg);
}

/* Contact popup — form styling */
.gtp-popup-overlay .contact-popup {
    padding: 50px 40px;
}

.gtp-popup-overlay .contact-popup .elementor-heading-title {
    text-align: center;
    width: 100%;
	font-size: 32px !important;
	font-weight: 500 !important; 
	color: #005269 !important;
}

.gtp-popup-overlay .contact-popup .elementor-form-fields-wrapper {
    gap: 20px;
    margin-top: 28px;
}

.gtp-popup-overlay .contact-popup .elementor-field-group {
    margin-bottom: 0;
}

.gtp-popup-overlay .contact-popup .elementor-field-label {
    display: none;
}

.gtp-popup-overlay .contact-popup .elementor-field-textual {
    border: 1px solid #686A8A !important;
    border-radius: 32px !important;
    padding: 8px 16px !important;
    font-size: 14px !important;
	line-height: 24px !important;
	font-weight: 400 !important;
    width: 100%;
    box-sizing: border-box;
	cursor: pointer;
}

.gtp-popup-overlay .contact-popup textarea.elementor-field-textual {
    border-radius: 32px !important;
    min-height: 160px;
    resize: none;
	cursor: pointer;
}

.gtp-popup-overlay .contact-popup .elementor-field-textual:focus {
    outline: none;
    border-color:  #00B1E1 !important;
}

.gtp-popup-overlay .contact-popup .elementor-field-textual:focus {
    outline: none;
    border-color:  #00B1E1 !important;
}

.gtp-popup-overlay .contact-popup .e-form__buttons {
    margin-top: 8px;
}

.gtp-popup-overlay .contact-popup .elementor-button {
    width: 100%;
    background: #fff !important;
    color: #00647F !important;
    border: 2px solid #00C8FF !important;
    border-radius: 32px !important;
    padding: 16px 0 !important;
	font-size: 16px !important;
    font-weight: 500 !important;
	margin-top: 0 !important;
}

.gtp-popup-overlay .contact-popup .elementor-button:hover {
    background: #00647F !important;
	border: 2px solid #00647F !important;
    color: #fff !important;
}

.gtp-popup-overlay .contact-popup .elementor-field-textual::placeholder {
    color: #686A8A;
    opacity: 1;
}

/* Acceptance field */
.gtp-popup-overlay .contact-popup .elementor-field-type-acceptance {
    margin-top: 8px;
}
.gtp-popup-overlay .contact-popup .elementor-field-type-acceptance .elementor-field-option {
    display: flex;
    align-items: center;
    gap: 10px;
}
.gtp-popup-overlay .contact-popup .elementor-field-type-acceptance input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: #00647F;
    cursor: pointer;
    flex-shrink: 0;
}
.gtp-popup-overlay .contact-popup .elementor-field-type-acceptance label {
    font-size: 16px !important;
    color: #00647F !important;
    margin: 0;
    line-height: 1.3;
}
.gtp-popup-overlay .contact-popup .elementor-field-type-acceptance a {
    color: #005269;
    text-decoration: none;
}
.gtp-popup-overlay .contact-popup .elementor-field-type-acceptance a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .gtp-popup-overlay .contact-popup .e-con-inner {
        flex-direction: column;
        padding: 20px;
    }
	
	.gtp-popup-overlay .contact-popup .elementor-button {
		padding: 10px 0 !important;
	}
	
	.gtp-popup-overlay .contact-popup {
		padding: 44px 32px;
	}
}

/* Additional styles*/
.imprint-link {
	color: #005269 !important;
}

.imprint-link:hover {
	text-decoration: underline !important;
	color: #005269 !important;
}

.cs-client-logo,
.cs-hero-ss-logo {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.9));
}

@media (max-width: 768px) {
	.hide-on-mobile {
		display: none;
	}
}

/* Active link */
.header-menu .e-n-menu-title-container.is-active,
.header-menu .e-n-menu-title-container.is-active .e-n-menu-title-text {
    --n-menu-title-color-normal: #00B1E1 !important;
    color: #00B1E1 !important;
}

/* Page 404*/
.ss-404-page {
    position: relative;
    height: 700px;
    display: flex; 
    align-items: center;
    justify-content: center;
    background: #F5FCFE;
    overflow: hidden;
    padding: 88px 0;
    box-sizing: border-box;
}

.ss-404-bg {
    position: absolute;
    font-family: 'Radikal', sans-serif;
    font-size: 564px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 20px;
    color: #E9F4F7;
    user-select: none;
    z-index: 0;
    text-align: center;
    white-space: nowrap;
}

.ss-404-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.ss-404-title {
    font-size: 40px;
    font-weight: 500;
    color: #00647F;
    margin-bottom: 8px;
}

.ss-404-desc {
    font-size: 18px;
    font-weight: 400;
    color: #00647F;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

p.ss-404-desc {
    margin-bottom: 0;
}

.ss-404-btn {
    font-size: 16px;
    display: inline-flex;
    align-self: flex-start;
    padding: 16px 30px;
    background: #00647F;
    color: #fff;
    border-radius: 32px;
    text-decoration: none;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.ss-404-btn:hover {
    color: #fff;
}

.ss-404-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
}

.ss-404-btn:hover::after {
    animation: shine 0.8s ease forwards;
}

@media (max-width: 768px) {
    .ss-404-page {
        height: 70vh;
        padding: 60px 0;
    }

    .ss-404-bg {
        font-size: 250px;
        letter-spacing: 10px;
    }

    .ss-404-title {
        font-size: 28px;
    }

    .ss-404-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ss-404-bg {
        font-size: 165px;
        letter-spacing: 6px;
    }
}

/* Home Hero Lottie Video*/
.map-banner-video .elementor-widget-html,
.map-banner-video .elementor-widget-container,
.map-banner-video dotlottie-wc {
	width: 100%;
    height: 100%;
    display: block;
}

.hero-strong {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.2em;
    display: inline-block;
}

.elementor-widget-button {
    display: flex;
}

/* Button Shine Effect */
.btn-shine .elementor-button {
    position: relative;
    overflow: hidden;
}

.btn-shine .elementor-button:hover {
	cursor: pointer;
}

.btn-shine .elementor-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 200%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
}

.btn-shine.shine-active .elementor-button::after {
    animation: shine 0.8s ease forwards;
}

@keyframes shine {
    0% { left: -150%; }
    100% { left: 200%; }
}

.contact-form .elementor-button.elementor-size-sm {
    font-size: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 30px;
    background: #00647F;
    color: #fff;
    border-radius: 32px;
    text-decoration: none;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}
 
.contact-form .elementor-button.elementor-size-sm:hover {
    color: #fff;
}
 
.contact-form .elementor-button.elementor-size-sm::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
}
 
.contact-form .elementor-button.elementor-size-sm:hover::after {
    animation: shine 0.8s ease forwards;
}


/*  Platform page hero banner */
.platform-hero__icon,
.platform-hero__line {
    opacity: 0;
}

/* Platform hero links */
.platform-hero__link {
	display: flex;
    align-items: center !important;
	justify-content: center !important;
	padding: 18px 32px;
    border-radius: 32px;
    transition: background-color 0.3s ease;
}

.platform-hero__link p,
.platform-hero__link a {
	line-height: 24px;
	margin-bottom: 0;
}

.platform-hero__link:hover {
    background-color: #E5F7FC;
}

/* Icons and lines */
.platform-hero .e-con.e-child {
    flex: 1 !important;
}

.platform-hero__line {
    flex: 0 0 60px !important;
    width: 50px !important;
    align-self: flex-start !important;
    margin-top: 100px !important;
    position: relative;
}

.platform-hero__line img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-width: 50px;
    position: absolute;
    top: 10px;
    left: 0px;
    z-index: 10;
}

.platform-hero .e-con.e-child:first-child .platform-hero__link {
    min-width: 260px;
}

@media (max-width: 1200px) {
	.platform-hero__link {
		font-size: 16px !important;
		padding: 18px 24px !important;
	}
	
	.platform-hero__line img {
		min-width: 118px;
		position: absolute;
		top: -30px;
		left: -28px;
	}
}

@media (max-width: 1024px) {
    .platform-hero__wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }

    .platform-hero__wrapper > .e-con-inner {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    .platform-hero .e-con.e-child {
        flex-direction: row !important;
        align-items: center !important;
        flex: none !important;
        width: 100% !important;
        max-width: 380px !important;
        gap: 20px;
        justify-content: flex-start !important;
		margin: 0 auto;
    }

    .platform-hero__link {
        min-width: unset !important;
        padding: 12px 16px !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .platform-hero__line {
        flex: none !important;
        width: 380px !important;
        max-width: 380px !important;
        height: 40px !important;
        align-self: auto !important;
        margin-top: 0 !important;
        position: relative;
    }

    .platform-hero__line img {
        position: absolute;
        top: 50%;
        left: 56px;
        transform: translateY(-50%) rotate(90deg);
        width: 40px !important;
        min-width: unset !important;
    }
}

@media (max-width: 768px) {
	.platform-hero__link {
		font-size: 14px !important;
	}
}

@media (max-width: 420px) {
    .platform-hero__icon img {
        width: 113px !important;
        height: 113px !important;
    }
	
    .platform-hero .e-con.e-child {
        max-width: 100% !important;
        width: 100% !important;
        gap: 20px;
    }

    .platform-hero__line {
        width: 100% !important;
        max-width: 100% !important;
    }

    .platform-hero__line img {
        left: 35px;
        width: 40px !important;
    }

    .platform-hero__link {
        padding: 8px 10px !important;
        font-size: 11px !important;
        min-width: unset !important;
        width: auto !important;
    }
    
    .platform-hero__link p,
    .platform-hero__link a {
        line-height: 16px !important;
    }
}

/* end of platform hero banner */

/* White Button Blue Border */
.btn-outline .elementor-button {
    border: 2px solid #00B1E1 !important;
    background: #fff !important;
	color: #00647F !important;
}

.btn-outline .elementor-button:hover {
    border: 2px solid #00647F !important;
    background: #00647F !important;
    color: #fff !important;
}

/* Gradient BG */
.gradient-bg {
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.8) 0%, #e9f9fe 100%);
}

/* Footer styles */
.footer-nav-col .elementor-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-col .elementor-nav-menu li {
    display: block;
}

.footer-nav-col .elementor-nav-menu li a {
    padding: 0;
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.25s ease;
    white-space: normal;
    word-break: break-word;
}

.footer-nav-col .elementor-nav-menu li a:hover {
    text-decoration: underline;
}

.footer-nav-col .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:after {
    display: none !important;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-bottom-link {
    font-family: 'Public Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    text-decoration: none;
    transition: opacity 0.25s ease;
    color: #fff;
}

.footer-bottom-link:hover {
    text-decoration: underline;
    color: #fff;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* Case Studies Detail Page */
.cs-highlighted-box {
    background: #E5F7FC;
    border: 1px solid #00B1E1;
    border-radius: 24px !important;
    padding: 24px !important;
}

.cs-highlighted-box .elementor-widget-text-editor ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.cs-highlighted-box .elementor-widget-text-editor ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #00647F;
	line-height: 24px;
}

.cs-highlighted-box .elementor-widget-text-editor ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00647F;
}

.cs-highlighted-box .elementor-widget-text-editor p {
    color: #00647F;
    margin-bottom: 25px;
}

/* Careere page - Hiring tiles */
.hiring-tile {
	position: relative;	
}

.hiring-tile .elementor-icon-box-title,
.hiring-sender-tiles-wrapper .elementor-icon-box-title {
    min-height: 66px;
}

.hiring-sender-tiles-wrapper {
    overflow-x: auto;
}

.hiring-about-seven-tiles {
    width: calc(25% - 48px + 48px/4) !important;
}

.elementor-icon-box-wrapper h3.elementor-icon-box-title {
	margin-top: 0;
}

.hiring-about-swiper .elementor-widget-html {
    display: none;
}

.privacy-email-link:hover {
     color: #00B1E1 !important;
}

.elementor-widget-text-editor ul {
    padding-left: 28px;
    margin: 0;
}

.career-nav-link {
	text-transform: uppercase;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 32px;
    transition: background 0.3s;
}

.career-nav-link:hover {
    background: #E5F7FC;
}

.career-anckor-links-wrapper .e-con-inner {
    border-bottom: 2px solid #00B1E1;
}

/* Career page tiles */
@media (min-width: 1201px) {
    .hiring-about-swiper.swiper {
        overflow: visible !important;
    }
    .hiring-about-swiper .swiper-wrapper {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 24px !important;
        transform: none !important;
        width: 100% !important;
    }
    .hiring-about-seven-tiles.swiper-slide {
        width: calc(23% - 16px) !important;
        flex: 0 0 calc(23% - 16px) !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .hiring-about-swiper.swiper {
        overflow: visible !important;
    }
    .hiring-about-swiper .swiper-wrapper {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 24px !important;
        transform: none !important;
        width: 100% !important;
    }
    .hiring-about-seven-tiles.swiper-slide {
        width: calc(50% - 12px) !important;
        flex: 0 0 calc(50% - 12px) !important;
        margin-right: 0 !important;
    }
}


/* @media (max-width: 1200px) and (min-width: 769px) {
    .hiring-about-seven-tiles {
        width: calc(50% - 24px) !important;
        flex: 0 0 calc(50% - 24px) !important;
    }

    .hiring-about-swiper {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (min-width: 769px) {
    .hiring-about-swiper .swiper-slide {
        width: auto !important;
        transform: none !important;
        margin-right: 0 !important;
    }
    
    .hiring-about-swiper .swiper-wrapper {
        display: contents;
    }
} */

/* Banner overray*/
.hero-overlay {
    position: relative;
    overflow: hidden;
}

.hero-overlay::before {
    display: none;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom,
        rgba(2, 31, 39, 0) 0%,
        rgba(2, 25, 31, 0.92) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.7) 60%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.7) 60%, black 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay > * {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
	 .hiring-about-swiper .elementor-widget-html {
        display: block;
    }
	
    .hiring-tiles-wrapper .e-con-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hiring-tile:not(:last-child) {
        position: relative;
    }
    
    .hiring-tile:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 25px;
        background: #00B1E1;
    }
	
	/* 	Swiper slider */
	 .hiring-about-swiper {
        overflow: hidden !important;
    }

    .hiring-about-seven-tiles {
        width: 100% !important;
        min-width: 100% !important;
        flex-shrink: 0 !important;
    }

    .hiring-about-pagination {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 6px;
        margin-top: 16px;
		margin-left: 40px;
        padding: 0 4px;
    }

    .hiring-about-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #fff;
        opacity: 0.3;
        transition: all 0.3s;
        flex-shrink: 0;
    }

    .hiring-about-pagination .swiper-pagination-bullet-active {
        width: 24px;
        height: 8px;
        border-radius: 4px;
        background: #fff;
        opacity: 1;
    }
	/* Anchor links	 */
	    .career-anckor-links-wrapper .e-con-inner {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .career-anckor-links-wrapper .elementor-widget-text-editor {
        flex: 1;
        min-width: 0;
        max-width: 95px;
    }

    .career-anckor-links-wrapper .elementor-widget-text-editor p {
        margin: 0;
    }

    .career-nav-link {
        display: block;
        word-break: break-word;
        white-space: normal;
        text-align: center;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
	.career-nav-link {
        font-size: 12px;
		padding: 0;
    }
}

@media (max-width: 400px) {
	:lang(de) .career-nav-link {
        font-size: 9px;
    }
}