html {
    height: 100%;
    background-color: #352941;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.phone-link,
.phone-link:visited,
.phone-link:hover,
.phone-link:active {
    color: #fff;
    text-decoration: none;
}

.back-to-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 22px;
    z-index: 9999;

    width: 70px;
    height: 70px;

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

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

:root {
    --site-max-width: 1600px;
    --site-side-padding: 40px;
}

.container-wide,
.container-header {
    max-width: var(--site-max-width);
    padding-left: var(--site-side-padding);
    padding-right: var(--site-side-padding);
}

/* FONTS */
@font-face {
    font-family: 'FigtreeReg';
    src: url(fonts/figtree-v9-latin-regular.woff2) format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree300';
    src: url(fonts/figtree-v9-latin-300.woff2) format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree900';
    src: url(fonts/figtree-v9-latin-900.woff2) format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree500';
    src: url(fonts/figtree-v9-latin-500.woff2) format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree600';
    src: url(fonts/figtree-v9-latin-600.woff2) format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree700';
    src: url(fonts/figtree-v9-latin-700.woff2) format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree800';
    src: url(fonts/figtree-v9-latin-800.woff2) format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree800It';
    src: url(fonts/figtree-v9-latin-800italic.woff2) format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree300It';
    src: url(fonts/figtree-v9-latin-300italic.woff2) format('woff2');
    font-weight: 300;
    font-style: normal;
}

body {
    font-family: 'FigtreeReg', sans-serif;
}

.top-header {
    background-color: #352941;        
    padding-top: 35px;
}

/* TOP AREA */
.header-top {
    padding: 0 0 30px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 35px;
}

.lang-switch {
    gap: 18px;
}

.lang-switch a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
}

/* Taller divider */
.lang-divider {
    width: 3px;
    height: 30px;
    background: rgba(255,255,255,0.9);
    display: inline-block;
    margin-top: -6px;   /* makes line slightly higher */
    margin-bottom: -6px;
}

.icon-btn {
    color: white;
    font-size: 42px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.icon-btn img {
    width: 50px;
    height: 50px;
    display: block;
}

.icon-btn:hover {
    color: #fff;
    opacity: 0.7;
}

/* RIBBON */
.contact-ribbon {
    background: #4A425A;
   min-height: 80px;
    overflow: visible;
}

.contact-ribbon .container-wide {
    position: relative;
}

.contact-ribbon .container-header {
    min-height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}


        /* LOGO  */ 
        .logo-box {
            position: absolute;
            /*  left: var(--site-side-padding);*/
            top: 50%;
            left: max(20px, 3vw);
    transform: translateY(-50%);
    z-index: 10;
        }

        .logo-box img {
            max-height: 110px;
            width: auto;
            background: #fff;
            border-radius: 16px;
            padding: 25px 40px;
            display: block;
        }

        /* KONTAKT */
        .kontakt-wrapper {
            min-height: 0px;
            padding-right: 0px;
        }

        .contact-link {
            color: #fff;
            text-decoration: none;
            font-size: 34px;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .contact-link:hover {
            color: #fff;
            opacity: 0.8;
        }

.hero-section {
    background: #352744;
    padding: 130px 0 10px;
    color: white;
    font-family: 'Figtree300', sans-serif;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 650px);
    gap: clamp(40px, 5vw, 90px);
    align-items: center;
}

.hero-top {
    margin-bottom: 70px;
}

/* HERO-CONTENT */
.hero-content p {
    font-size: 1.55rem;
    line-height: 1.7;
    font-weight: 200;
    color: white;
    max-width: none;
    width: 100%;
    margin: 0;
}

.hero-highlight {
    font-family: 'Figtree700';
    font-size: 1.45em;
    font-weight: 700;
    line-height: 1.2;
}
/* IMAGE */
.hero-image-wrapper {
    display: flex;
    justify-content: flex-end;
    transform: none;
}

.hero-image {
    width: 118%;
    max-width: 700px;

    /* organic blob shape */
    border-radius: 38% 62% 53% 47% / 42% 39% 61% 58%;
    display: block;
}

/* STATS */
.stats-row {
    margin-top: 120px;
}

.stat-item {
    margin-bottom: 10px;
}

.stat-number {
    font-family: Figtree800;
    font-size: 5rem;
    line-height: 1;
    font-weight: 900;
    color: #e6c8c8;
}

.stat-text {
    font-family: 'Figtree600';
    font-size: 2.2rem;
    line-height: 1.2;
    margin-top: 7px;
    margin-bottom: 0px;
}

/* ACCORDION */

.accordion-section {
    background: #352941;
    padding: 90px 0 80px !important;
}

/* DEFAULT */
.custom-accordion-box {
    background: #4A425A;
    border-radius: 36px;
    overflow: hidden;
    margin-bottom: 30px;
}

/* WHITE */
.accordion-white {
    background: #fff;
}

.accordion-toggle {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 20px 40px 20px !important;

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

    color: #fff;
    font-family: 'Figtree600', sans-serif;
    font-size: 2.2rem;
    line-height: 1.2;
}

/* TOGGLE AREA WHITE */
.accordion-white .accordion-toggle {
    background: #fff;
    color: #352941;
}

/* BODY AREA WHITE */
.accordion-white .accordion-body-custom {
   background: #fff;
    color: #352941;
}

/* OPEN */
.accordion-toggle[aria-expanded="true"] {
    padding: 20px 40px 10px !important;
}

/* plus / minus */
.accordion-symbol::before {
    content: "+";
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.accordion-toggle[aria-expanded="true"] .accordion-symbol::before {
    content: "−";
}

.accordion-body-custom {
    padding: 0px 40px 30px !important;
    color: #fff;
    font-family: 'Figtree300', sans-serif;
    font-size: 1.5rem !important;
    font-weight: 300;
    line-height: 1.8;
}

#solutionsBox {
   padding-top: -10px !important;
}

.moving-banner-section {
    background: #352941;
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 50px;
}

/* WRAPPER */
.banner-image-wrapper {
    overflow: hidden;
    position: relative;
    background: #352941; /* same as section background */
}

.banner-image-wrapper,
.carousel-inner,
.carousel-item {
    height: 750px;
    overflow: hidden;
}

/* IMAGE */
.banner-image {
    width: calc(100% + 4px);
    height: calc(750px + 8px);
    margin-left: -2px;
    margin-top: -4px;

    object-fit: cover;
    display: block;

    backface-visibility: hidden;
    transform-origin: center center;
    transform: scale(1);

    transition:
        transform 12s ease,
        opacity 3s ease;
}

/* ACTIVE IMAGE ZOOMS */
.carousel-item.active .banner-image {
    transform: scale(1.04);
}

/* REMOVE BOOTSTRAP DEFAULT SLIDE EFFECT */
.carousel-item {
    transition: opacity 3s ease-in-out !important;
}

.custom-slider-dots {
    bottom: 28px;
    margin-bottom: 0;
}

.custom-slider-dots button {
    width: 42px !important;
    height: 8px !important;
    border-radius: 999px;
    background-color: rgba(255,255,255,0.55) !important;
    border: none !important;
    opacity: 1 !important;
}

.custom-slider-dots button.active {
    background-color: #fff !important;
}

/* AUTOPLAY: slow cinematic fade */
.carousel-fade .carousel-item {
    transition: opacity 3s ease-in-out !important;
}

/* MANUAL MODE: faster, less faded */
.manual-carousel.carousel-fade .carousel-item {
    transition: opacity 0.45s ease-in-out !important;
}

/* Optional: reduce zoom effect in manual mode */
.manual-carousel .carousel-item.active .banner-image {
    transform: scale(1.0);
    transition:
        transform 0.45s ease-in-out,
        opacity 0.45s ease-in-out;
}

/* MARQUEE */
.marquee-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}

.marquee-track {
    --marquee-distance: 5200px;

    display: flex;
    width: max-content;
    position: relative;

    animation: marqueeMove 50s linear infinite;
}

.marquee-group {
    display: flex;
    flex-shrink: 0;
}

.marquee-group span {
    flex-shrink: 0;
    white-space: nowrap;

    font-family: 'Figtree800It';
    font-size: 4.5rem;
    font-weight: 800;
   
    color: #e6c8c8;

    padding-left: 10px;
    padding-right: 10px;
}

@keyframes marqueeMove {
    from {
        left: 0;
    }

    to {
        left: calc(-1 * var(--marquee-distance));
    }
}

/* CONTENT */
.content-row {
    row-gap: 50px;
    --bs-gutter-x: 7rem;
}

.content-col p {
    color: white;

    font-family: 'Figtree300', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.7;

    max-width: 30000px;
}

.contact-page-section {
    background: #352941;
    color: #fff;
    padding: 80px 0 140px;
}

/* FORM BOX */
.contact-form-box {
    width: 100%;
    margin: -20PX auto 130px;

    background: #4A425A;
    border-radius: 36px;
    overflow: hidden;
}

.contact-form-toggle {
    width: 100%;
    border: 0;
    background: transparent;

    padding: 20px 30px;

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

    position: relative;

    color: #e6c8c8;
    font-family: 'Figtree700', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-form-symbol {
    position: absolute;
    right: 42px;
}

.contact-form-symbol::before {
    content: "";
}

.contact-form-toggle[aria-expanded="true"] .contact-form-symbol::before {
    content: "−";
    font-size: 2.6rem;
    line-height: 1;
}

.contact-form-body {
    padding: 0 50px 45px;
}

.contact-form-intro {
    max-width: 900px;
    margin: 0 auto 34px;

    text-align: center;
    font-family: 'Figtree300', sans-serif;
    font-size: 1.15rem;
    line-height: 1.6;
}

.contact-form-body label {
    display: block;
    margin-bottom: 6px;

    font-family: 'Figtree300', sans-serif;
    font-size: 1rem;
    color: #fff;
    margin-left: 5px;
}

.contact-form-body .form-control {
    border: 0;
    border-radius: 5px;
    min-height: 38px;
    margin-bottom: 20px;
}

.contact-textarea {
    height: 310px;
    resize: vertical;
}

.form-field {
    position: relative;
}

.field-error {
    display: none;

    position: absolute;
    left: 10px;
    top: 50px;

    transform: translateY(-50%);
    font-family: 'Figtree500';
    font-size: 1.1rem;
    color: #b11c1a;

    pointer-events: none;
}

.form-field.show-error .field-error {
    display: block;
}

.textarea-field .field-error {
    left: 10px;
}

.contact-form-body .form-control.is-empty {
    background-color: #dad5fa !important;
    color: transparent;
}

.contact-form-body .form-control.is-empty::placeholder {
    color: transparent;
}

.contact-submit-wrapper {
    display: flex;
    justify-content: center;

    margin-top: 40px;
}

.contact-submit-btn {
    border: 0;
    background: transparent;
    padding: 0;

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

    cursor: pointer;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.contact-submit-btn img {
    width: 160px;
    height: auto;
    display: block;
}

.contact-submit-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* COMPANY */
.company-contact-section {
    max-width: 1200px;
    margin: 100px auto 80px;
}

.company-contact-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 90px;
    align-items: start;
}

.company-block {
    margin-bottom: 64px;
}

.company-block h2 {
    font-family: 'Figtree600', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 12px;
}

.company-block h3 {
    font-family: 'Figtree600', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 12px;
    margin-top: 100px;
}

.company-block-2 h3 {
    font-family: 'Figtree600', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 12px;
    margin-top: 100px;
}

.company-block-2 h4 {
    font-family: 'Figtree600', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 12px;
    margin-top: 30px;
}

.company-block p {
    font-family: 'Figtree300', sans-serif;
    font-size: 1.35rem;
    line-height: 1.7;
    margin: 0;
}

.company-block-2 p {
    font-family: 'Figtree300', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.company-block p {
    font-family: 'Figtree300', sans-serif;
    font-size: 1.35rem;
    line-height: 1.7;
    margin: 0;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.contact-map2 img {
    width: 90%;
    border-radius: 8px;
    display: block;
    margin-top: 120px;
}


/* PEOPLE */
.people-section {
    max-width: 1200px;
    margin: 0 auto;
}

.people-heading {
    font-family: 'Figtree700', sans-serif;
    font-size: 2.4rem;
    margin-bottom: 70px;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 120px;
}

.person-card h3 {
    font-family: 'Figtree700', sans-serif;
    color: #e6c8c8;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.person-card p {
    font-family: 'Figtree300', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* FOOTER */

.partners-section {
    background: #352941;
    padding: 60px 0 0;
    position: relative;
    z-index: 2;
}

.contact-heading {
    margin-bottom: 50px;
}

.contact-heading a {
    color: #e6c8c8;
    text-decoration: none;
    font-family: 'Figtree600';
    font-size: 2.8rem;
    font-weight: 800;
}

.contact-heading span {
    font-size: 4rem;
    vertical-align: -6px;
    margin-left: 8px;
}

.partners-section {
    background: #352941;
    padding: 40px 0 0;
    position: relative;
    z-index: 2;
}

.partners-box {
    max-width: 1200px;
    min-height: 300px;
    margin: 0 auto;

    background: #f1f1ff;
    border-radius: 18px;

    padding: 30px 25px 60px;

    position: relative;
    top: 50px;
    z-index: 10;
}

.partners-text {
    font-family: 'Figtree300';
    font-size: 1.2rem;
    color: #352941;
    margin-bottom: 40px;
}

/* RANDOM / ORGANIC LOGO PLACEMENT */

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 70px 100px;
}

.partner-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

.partner-logo img {
    max-height: 42px;
    width: auto;
    display: block;
}

.logo-small {
    max-height: 30px !important;
}

.logo-medium {
    max-height: 40px !important;
}

.logo-large {
    max-height: 50px !important;
}

/* individual “random” positioning */
.logo-1 { transform: translateY(-6px); }
.logo-2 { transform: translateY(10px); }
.logo-3 { transform: translateY(-12px); }
.logo-4 { transform: translateY(4px); }
.logo-5 { transform: translateY(-6px); }
.logo-6 { transform: translateY(10px); }
.logo-7 { transform: translateY(-12px); }
.logo-8 { transform: translateY(4px); }
.logo-9 { transform: translateY(12px); }
.logo-10 { transform: translateY(-8px); }

.partners-logos a {
    transition: opacity 0.25s ease,
                transform 0.25s ease;
}

.partners-logos a:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}

.footer-section {
    background: #4A425A;
    position: relative;
    overflow: hidden;
    padding: 200px 0 200px;
}

.footer-section .container-wide {
    padding-right: 0;
}

/* bottom footer different color */
.footer-bottom-section {
    background: #4A425A;
    padding: 90px 0 90px;
}

.footer-content {
     position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-left: 80px; /* desktop only */
    max-width: 900px;
    margin: 0;
}

.footer-content {
    padding-left: 80px;
}

.footer-info {
    color: white;
    font-family: 'Figtree300';
    font-size: 1.2rem;
    line-height: 2.2;
}

.footer-map {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    width: 42%;
    z-index: 1;
    overflow: hidden;

    -webkit-mask-image: linear-gradient(
        to left,
        black 70%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to left,
        black 70%,
        transparent 100%
    );
}

.footer-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-copyright {
    position: absolute;
    left: 40px;
    bottom: 30px;

    color: #f1f1ff;

    font-family: 'Figtree300It';
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* WIDE VIEW */ 
/* @media (min-width: 1850px) {
    .container-header,
    .footer-section .container-wide,
    .partners-section .container-wide {
        padding-left: 0px;
        padding-right: 0px;
    }

    .logo-box {
        left: 0px;
    }
} */ 

@media (min-width: 1850px) {

/* LOGO */
    .logo-box {
        left: -40px;
    }

    /* HEADER ICONS + KONTAKT */
    .header-actions,
    .kontakt-wrapper {
        margin-right: -60px;
    }

}



/* FOOTER 1400px */
@media (max-width: 1400px) {
    .footer-content {
        padding-left: 0;
    }
}

/* HERO IMG 1350px */
@media (max-width: 1350px) {
.hero-layout {
    grid-template-columns: 1fr;
    gap: 10px;
}

 .bottom-purple {
    height: 25px;
}

.hero-section {
    background: #352744;
}

.hero-text-col,
.hero-content p {
    width: 100%;
    max-width: none;
}

.hero-image-wrapper {
    transform: none;
    justify-content: center;
}

.hero-image {
    display: none;
    width: 100%;
    max-width: 560px;
}

.stats-row {
    margin-top: 90px;
    margin-bottom: 0;
}

.stat-item {
    margin-bottom: 0;
}

.accordion-section {
    padding-top: 20px;
}

}

/* FOOTER COLS 1250px */
@media (max-width: 1250px) {
   .footer-content {
        display: inline-grid;
        grid-template-columns: max-content max-content;
        gap: 100px;
        padding-left: 0;
    }

}

/* COLS 1100px */
@media (max-width: 1100px) {

.content-row {
    justify-content: center;
}

.content-col {
    width: calc(50% - 1.5rem);
    flex: 0 0 calc(50% - 1.5rem);
}

.content-col:last-child {
    width: 100%;
    flex: 0 0 100%;
    max-width: 600px;
}

}

/* TABLET */
@media (max-width: 992px) {

.hero-section {
    padding: 20 0 0px !important;
}

.hero-top {
    row-gap: 20px;
}

.hero-title {
    font-size: 2.4rem;
}

.hero-text {
    font-size: 1.2rem;
}

.stat-number {
    font-size: 4.3rem !important;
}

.stat-text {
    font-size: 1.6rem !important;
}

.custom-accordion-box {
    border-radius: 20px;
    margin-bottom: 20px;
}

.accordion-toggle[aria-expanded="true"] {
    padding: 10px 20px 10px !important;
}

/* plus / minus */
.accordion-symbol::before {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.accordion-toggle[aria-expanded="true"] .accordion-symbol::before {
    content: "−";
}

.accordion-body-custom {
    padding: 0px 20px 10px !important;
    color: #fff;
    font-family: 'Figtree300', sans-serif;
    font-size: 1.5rem !important;
    font-weight: 300;
    line-height: 1.8;
}

#solutionsBox {
   padding-top: -10px !important;
}

.marquee-track span {
    font-size: 3.8rem;
}

.content-col p {
    font-size: 1.5rem;
}

.content-row {
    --bs-gutter-x: 3rem;
}

.footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 60px;
        position: relative;
        z-index: 2;
    }

    .footer-info {
        white-space: normal;
    }

    .footer-map {
           width: 75%;
    right: -30px;
            opacity: 0.55;
    }

 .contact-page-section {
        padding: 60px 0 100px;
    }

   .company-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-map {
        width: 100%;
        max-width: none;
    }

    .contact-map img {
        width: 100%;
    }

    .people-grid {
        gap: 60px 70px;
    }

}

/* MOBILE */
@media (max-width: 768px) {

.back-to-top {
        right: 20px;
        bottom: 22px;
        width: 60px;
        height: 60px;
}

:root {
    --site-side-padding: 20px;
    }

.top-header {
    padding-top: 0;
    background: #352941;
}

.container-wide,
    .container-header {
    padding-left: var(--site-side-padding);
    padding-right: var(--site-side-padding);
}

.header-top {
    padding: 5px 5px;
    padding-top: 15px;
    padding-bottom: 15px;
    justify-content: space-between !important;
}

.header-actions {
    width: 100%;
    display: flex;
    align-items: center;
}

 /* Push language block left */
.lang-switch {
    margin-right: auto;
}

/* Push icons right */
.icon-btn:first-of-type {
    margin-left: auto;
}

/* Space between phone and mail */
.icon-btn + .icon-btn {
    margin-left: 10px;
}

.lang-switch a {
    font-size: 28px;
}

.lang-divider {
    height: 35px;
    width: 2px;
}

.icon-btn {
    font-size: 42px;
}

.contact-ribbon {
    background: #fff;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-ribbon .container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 25px;
    padding-right: 15px;
    height: 110px;
}

.logo-box {
    position: static;
    transform: none;
    left: auto;
}

.logo-box img {
    max-height: 50px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.kontakt-wrapper {
    margin-left: auto;
}

.contact-link {
    color: #352941;
    font-size: 32px;
    font-weight: 400;
}

.bottom-purple {
    height: 50px;
    background: #352941;
}

.hero-section {
    padding: 10px 0 0px !important;
}

.hero-top {
    margin-bottom: 0px;
    row-gap: 45px;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-highlight {
    display: block;
    margin-bottom: 6px;
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-image {
    display: none;
    max-width: 100%;
}

.hero-image-wrapper {
    transform: none;
}

.stats-row {
    margin-top: 0px;
    row-gap: 30px;
}

.stat-number {
    font-size: 3.5rem;
}

.stat-text {
    font-size: 1.3rem;
}

.accordion-section {
    padding: 50px 0 30px;
}

.custom-accordion-box {
    border-radius: 20px;
    margin-bottom: 20px;
}

.accordion-toggle {
    padding: 24px 0px;
    font-size: 1.55rem;
    text-align: left;
}

.accordion-symbol {
    display: inline-block;
    line-height: 1;
    position: relative;
    top: -3px;
}

.accordion-symbol::before {
        font-size: 2.6rem;
        line-height: 1;
    }

.accordion-toggle[aria-expanded="true"] {
    padding: 15px 20px 2px !important;
}

.accordion-body-custom {
    padding: 0px 20px 15px !important;
    font-size: 1.3rem !important;
    line-height: 1.6;
}

.moving-banner-section {
    padding-bottom: 50px;
}

.banner-image-wrapper,
.carousel-inner,
.carousel-item {
    height: 320px;
}

.banner-image {
    height: calc(320px + 8px);
}

.marquee-wrapper {
    padding: 40px 0 40px;
}

.marquee-group span {
    font-size: 2.6rem;
    padding-left: 10px;
    padding-right: 5px;
}

.content-col p {
    max-width: 100%;
    font-size: 1.55rem;
    line-height: 1.7;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.content-row {
    row-gap: 0px !important;
}

.contact-footer-section {
    padding: 10px 0 70px;
}

.contact-heading a {
    font-size: 2.4rem;
    line-height: 1;
}

 .mobile-break {
        display: block;
    }

.partners-section {
    padding-top: 10px;
    padding-bottom: 0px;
    overflow: visible;
}

.contact-heading {
    margin-bottom: 10px;
}

.partners-box {
    padding: 35px;
    margin-bottom: 0px;
}

.partners-logos {
    gap: 28px 34px;
}

.partner-logo {
    transform: none !important;
}

.partner-logo img {
    max-height: 34px;
}

.footer-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-map {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;

        width: calc(100% + 40px);

        margin-left: -20px;
        margin-top: 50px;

        opacity: 1;

        -webkit-mask-image:
            linear-gradient(to top, black 82%, transparent 100%);

        mask-image:
            linear-gradient(to top, black 82%, transparent 100%);
    }

    .footer-map img {
        width: 100%;
        height: auto;

        object-fit: contain;
    }

.footer-copyright {
        left: 20px;
        bottom: 40px;

        font-size: 0.8rem;
    }

.contact-form-toggle {
        padding: 22px 34px;
        font-size: 1.35rem;
    }

    .contact-form-symbol {
        right: 28px;
    }

    .contact-form-body {
        padding: 0 28px 35px;
    }

    .contact-form-intro {
        font-size: 1rem;
        text-align: left;
    }

    .people-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .people-heading {
        font-size: 2rem;
        margin-bottom: 45px;
    }

    .company-block p,
    .person-card p {
        font-size: 1.05rem;
    }

}

@media (max-width: 500px) {

    .back-to-top {
        right: 16px;
        bottom: 18px;
        width: 60px;
        height: 60px;
}

/* Space between phone and mail */
.icon-btn + .icon-btn {
    margin-left: 0px;
}

.lang-switch a {
    font-size: 20px;
}

.lang-divider {
    height: 26px;
    width: 2px;
}

.icon-btn {
    font-size: 24px;
}

.icon-btn img {
    width: 40px;
    height: 40px;
}

    .contact-ribbon {
        min-height: 80px;
    }

    .contact-ribbon .container-header {
        height: 80px;
        min-height: 80px;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .contact-ribbon .logo-box img {
        height: 30px !important;
        max-height: 30px !important;
        width: auto !important;
        padding: 10 !important;
    }

    .contact-ribbon .contact-link {
        font-size: 24px !important;
        line-height: 1;
    }

      .logo-box {
        padding-left: 10px;
    }

    .kontakt-wrapper {
        padding-right: 10px;
    }

    .bottom-purple {
    height: 30px;
}

.hero-content {
    padding-right: 0px;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.hero-highlight {
    font-size: 1.4em;
}

  .hero-top {
        margin-bottom: 0 !important;
    }

 .stats-row {
        margin-top: 10px !important;
        --bs-gutter-x: 0;
    }

.stat-number {
    font-size: 2.8rem !important;
}

.stat-text {
    font-size: 1.4rem !important;
    line-height: 1.25;
}

.stats-row {
    row-gap: 20px;
}

.stat-item {
    margin-bottom: 0;
    text-align: center;
}

.accordion-section {
        padding-top: 30px !important;
    }

.accordion-toggle {
        font-size: 1.25rem;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-top: 12px !important;
        padding-bottom: 12px !important;
        min-height: auto;
    }

 .accordion-body-custom {
        font-size: 1.1rem !important;
        line-height: 1.5;
        padding: 0 20px 12px !important;
    }

    .content-col,
    .content-col:last-child {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

.content-row {
    row-gap: 10px !important;
}

.content-col p {
    font-size: 1.25rem;
}

.contact-heading a {
        font-size: 1.8rem;
    }

    .contact-heading span {
        font-size: 2.8rem;
        vertical-align: -3px;
    }


}
