/* @import url(./innovations.css); */

:root {

    --primary-red:      rgba(223, 52, 46, 1);
    --primary-blue:     rgba(0, 67, 136, 1);
    --white:            rgba(255, 255, 255, 1);
    --black:            rgba(0, 0, 0, 1);
    --black-10:            rgba(0, 0, 0, .1);
    --black-70:            rgba(0, 0, 0, .7);
    --dark-grey:        rgba(112, 112, 112, 1);
    --mid-grey:         rgba(161, 161, 160, 1);
    --light-grey:       rgba(206, 206, 206, 1);
    --light-grey-80:    rgba(206, 206, 206, .8);
    --light-blue:         rgba(204, 237, 249, 1);
    --vileda-grey:                rgba(214, 224, 222, 1);
    --light-green:          rgba(200, 221, 181, 1);
    --sus-green:            rgba(0, 153, 61, 1);


    --gradient-green: linear-gradient(148deg, rgba(200,221,181,1) 0%, rgba(162,193,135,1) 51%, rgba(200,221,181,1) 100%);


    --gradient-kachel: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);

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

body {
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.no-scroll {
    overflow: hidden;
  }
section {
    margin-top: 50px;
    margin-bottom: 100px;
}
h3 {
    margin: 2rem 0 1rem;
}
p {
    font-size: 18px;
    font-weight: 400;
}
p.small {
    font-size: 16px;
}
a {
    color: var(--primary-red);
}
a:hover {
    cursor: pointer;
}
.fhcs-page .hero a {
    color: var(--white);
    text-decoration: none;
}
.fhcs-page .hero a:hover {
    color: var(--primary-red);
}
.button a {
    color: var(--white);
    text-decoration: none;
}
.button a:hover {
    color: var(--black) !important;
}
.button a:visited {
    color: var(--white);
    text-decoration: none;
}
.button {
    text-decoration: none;
    color: var(--white);
    background-color: var(--primary-red);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    text-align: center;
    align-self: flex-start;
    box-shadow: 0px 3px 6px var(--light-grey);
    cursor: pointer;
}
.button:hover {
    background-color: var(--vileda-grey);
}
.button:hover a {
    color: var(--black);
}
.wrapper-full {
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}
.wrapper-xl {
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
    overflow: hidden;
}
.wrapper-l {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
    overflow: hidden;
}
.wrapper-m {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
    overflow: hidden;
}

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

.bg-white {
    background-color: var(--white);
}
.shadow {
    box-shadow: 3px 3px 5px var(--light-grey);
}
.polygon {
    width: clamp(300px, 40dvw, 1000px);
    height: auto;
    position: absolute;
    z-index: -1;
}
#polygon1 {
    left: 20px;
}

#polygon2 {
    right: 20px;
}
.main-hl {
    font-size: clamp(40px, 3vw, 60px);
    font-weight: 600;
    margin-bottom: .5rem;
}
.datenschutz-page .main-hl {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.teaser-text {
    margin-bottom: 1rem;
}
.sub-hl, .service-hl{
    font-size: clamp(24px, 5vw, 37.5px);
    font-weight: 600;
}
.sub-hl-sm {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}
header {
    height: 100px;
    width: 100vw;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 800;
    background-color: var(--white);
    position: fixed;
    top: 0;
    z-index: 999;
}
main {
    margin-top: 100px;
}
header nav .desktop-menu,
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    gap: 20px;
}
footer {
    margin-top: auto;
    min-height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
    width: 100vw;
    box-shadow: 0px 2px 5px var(--mid-grey);
    z-index: 800;
    background-color: var(--white);
}
footer .footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 20px;
}
.logos {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-width: 300px;
    gap: 2rem;
  
}

.logo{
    width: 120px;
}

footer .logos {
    background-image: none;
    gap: 3rem;
    flex-wrap: wrap;
}
footer .logos a {
    display: flex;
}
footer .logos .freudenbergLogo {
    align-self: center;
}
.desktop-menu .top-nav,
.footer-nav ul {
    display: flex;
    list-style-type: none;
    height: 100%;
    align-items: center;
    gap: 35px;
}
footer .footer-nav {
    padding-top: 20px;
    padding-bottom: 20px;
    /* flex-wrap: wrap; */
    gap: 40px;
}
.footer-nav ul {
    flex-wrap: wrap;
}
.top-nav a,
.footer-nav a {
    text-decoration: none;
    font-family: Open Sans;
    font-size: 20px;
    color: var(--black);
}
.top-nav a:hover,
.footer-nav a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

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


#burger-menu {
    cursor: pointer;
    height: 27px;
    width: 27px;
    /* margin: 50px; */
    overflow: visible;
    position: relative;
    z-index:900;
  }
  #burger-menu span,
  #burger-menu span:before,
  #burger-menu span:after {
    background: var(--black);
    display: block;
    height: 4px;
    opacity: 1;
    position: absolute;
    transition: 0.3s ease-in-out;
  }
  #burger-menu span:before,
  #burger-menu span:after {
    content: "";
  }
  #burger-menu span {
    right: 0px;
    top: 13px;
    width: 27px;
  }
  #burger-menu span:before {
    right: 0px;
    top: -10px;
    width: 16px;
  }
  #burger-menu span:after {
    right: 0px;
    top: 10px;
    width: 20px;
  }
  
  #burger-menu.close span {
    transform: rotate(-45deg);
    top: 13px;
    width: 27px;
  }
  #burger-menu.close span:before {
    top: 0px;
    transform: rotate(90deg);
    width: 27px;
  }
  #burger-menu.close span:after {
    top: 0px;
    left:0;
    transform: rotate(90deg);
    opacity:0;
    width:0;
  }
  
  body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
  
  #menu {
    z-index: 850;
    width: 100vw;
    height: calc(100% - 100px);
    position: fixed;
    top: 100px;
    right: -100%;
    visibility: hidden;
    opacity: 0;
    text-align: right;
    padding-right: 27px;
    padding-top: 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: inset 0px 0px 5px var(--mid-grey);
    overflow-y: auto; /* Scrollen im Menü erlauben */
  }
  #menu * {
    max-width: 100%;
    overflow: hidden;
  }
  
  #menu.overlay {
    visibility: visible;
    opacity: 1;
    background: var(--white);
    right: 0;
  }
  
  
  
  #menu li{
    list-style: none;
  }
  #menu a{
    color:var(--black);
    display:block;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
    text-decoration: none;
  }
  #menu a:hover {
    color: var(--primary-red);
  }
  #menu li:not(:first-of-type)::before {
    content: "";
    display: block;
    border-bottom: 1px solid var(--black);
    margin-bottom: 20px;
}

  #menu li:last-of-type::after {
    content: "";
    display: block; /* oder inline-block */
    /* border-bottom: 1px solid var(--black); */
    margin-bottom: 30px;
}


.hero {
    margin-top: 0px;
    position: relative;
}
.index .hero {
    background-image: url(../img/1_Header_1920x840.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 5% center;
    min-width: 100%;
    min-height: 840px;

}

.hero img {
    width: 100%;
    height: auto;
}
.ergonomie-page .hero img {
    width: 80%;
    height: auto;
}
.hero .hl-container {
    position: absolute;
    bottom: 0;
    right: 0;
    min-height: 230px;
    width: clamp(500px, 50vw, 1000px);
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding: 2rem 2rem 2rem 5%;

}


.hero .hl-container p {
    width: 80%;
    align-self: flex-end;
}
.intro {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 100px;
}
.intro-full {
    flex-direction: column;
}
.text-container-full {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 70px;
    padding-bottom: 70px;
}
.text-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 990px;
    padding-top: 70px;
    padding-bottom: 70px;
}
.text-container-50 {
    display: flex;
    flex-direction: row;
    gap: 40px;
    max-width: 990px;
}
.index .intro .text-container-50 {
    flex-direction: column;
}
.text-container-small {
    font-size: 16px;
    color: var(--black-70);
}
.text-container-50-full {
    display: flex;
    flex-direction: row;
    gap: 40px;
}
.text-container-50-full > * {
    width: 100%;
}
.katalog .text-container {
    width: 40vw;
}
.text-container.contact-container {
    padding: 1rem 0;
}
.img-container {
    min-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 75px;
    align-self: center;
}
.img-container img {
    width: 100%;
    height: auto;
}
.katalog .img-container {
    width: 60vw;
}
.sus-card {
    align-items: center;
}
.sus-card img {
    max-width: 200px;
    align-self: center;
}
.sus-card .button {
    align-self: center;
}

.kacheln {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-around; */
    gap: 57px;
    /* padding: 0; */
    align-items: center;
    justify-content: center;
}
.kacheln a {
    text-decoration: none;
    color: var(--white);
}
.kacheln .kachel-hl{
    color: var(--white);
    font-size: clamp(28px, 5vw, 45px);
    font-weight: 700;
}
.kachel {
    width: clamp(280px, 80vw, 400px);
    height: auto;
    background-size: 100%; /* besser geeignet für Bilder */
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: darken;
    position: relative;
    transition: background-size .3s ease-in-out;
    padding-top: 100%; /* Hält das Seitenverhältnis 1:1 */
    cursor: pointer;
}
.kachel:hover {
    background-size: 110%;
}
.kacheln .text-box {
    position: absolute;
    /* top: 60%; */
    bottom: 0;
    padding: 1.3rem;
}
.welcome {
    background-image:
    var(--gradient-kachel),
    url(../img/HerzlichWillkommen.jpg);

}
.innovations {
    background-image: 
    var(--gradient-kachel),
    url(../img/Innovationen.jpg);
}
.sustainability {
    background-image: 
    var(--gradient-kachel),
    url(../img/Nachhaltigkeit.jpg);
}
.fhcs {
    background-image: 
    var(--gradient-kachel),
    url(../img/vileda_gebaeude_kachel.jpg);
}
.service {
    background-image: 
    var(--gradient-kachel),
    url(../img/Service.jpg);
}
.faq {
    background-image: 
    var(--gradient-kachel),
    url(../img/FAQ.jpg);
}
.katalog {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
}


.freudenbergLogo {
    height: clamp(30px, 5vw, 43px);
    width: auto;
}



.service-page .hero,
.welcome-page .hero,
.sustainability-page .hero, 
.innovations-page .hero,
.faq-page .hero,
.fhcs-page .hero,
.datenschutz-page .hero,
.ergonomie-page .hero,
.trockenreinigung-page .hero {
    background: rgb(0,67,136);
    background: linear-gradient(170deg, rgba(0,67,136,1) 0%, rgba(0, 67, 136, .8) 30%, rgba(255,255,255,1) 96%, rgba(255,255,255,1) 100%);    height: auto;
    display: flex;
    padding: 100px 0;
    margin-bottom: 0;
}
.sustainability-page .hero {
    background: linear-gradient(166deg, rgba(0,67,136,1) 0%, rgba(0, 67, 136, .8) 50%, rgba(255,255,255,1) 96%, rgba(255,255,255,1) 100%); 
}
.sustainability-page .hero .button::after {
    content: '';
    background-image: url(../img/svg/document.svg);
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    width: 16px; /* oder gewünschte Breite */
    height: 21px; /* oder gewünschte Höhe */
    margin-left: 8px; /* Abstand zum Text */
    vertical-align: middle; /* für vertikale Ausrichtung */
}
@media screen and (max-width: 1200px) {
    .sustainability-page .hero {
        background: linear-gradient(150deg, rgba(0,67,136,1) 0%, rgba(0, 67, 136, .8) 69%, rgba(255,255,255,1) 118%, rgba(255,255,255,1) 100%);
    }

}
.flex {
    display: flex;
    /* margin-top: 200px; */
    align-items: center;
}
.flex-start {
    justify-content: flex-start;
    width: 100%;
}
.small-padding-top {
    padding-top: 2rem;
}

.datenschutz-page p {
    margin: 1rem 0 .7rem;
}
p.datenschutz-question {
    margin-top: 3.5rem;
    font-weight: 600;
}
.datenschutz-page .sub-hl {
    margin-top: 3rem;
}
.datenschutz-page ol {
    padding-left: 5vw;
    margin: 2rem 0;
}

.hero-sub {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-sub > * {
    gap: 55px;
}
.hero-sub {
    color: var(--white);
}
.hero-sub h1 {
    font-size: 60px;
    line-height: 1.2;
}
.hl-container-sub {
    max-width: 600px;
}
.hl-container-sub *{
    margin-bottom: 1rem;
}
.hero-sub-img {
    min-width: 280px;
    max-width: 1000px;
}
.hero-sub .hl-container-sub .hero-list li {
    list-style: none;
    margin-bottom: .3rem;
    text-align: left;
    padding-left: 1.5rem;
    position: relative;
}
.hero-sub .hl-container-sub .hero-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    top: 0;
}
.services {
    padding-top: 50px;
    padding-bottom: 50px;
}
.service-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin: 120px auto;
}
.service-container h2 {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 500;
}
.service-container img {
    max-width: 500px;
    height: auto;
}
.service-container .service-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.service-container .cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.ceo-bg {
    background-color: var(--light-blue);
    padding-top: 80px;
    padding-bottom: 80px;
}
.ceo-card {
    display: flex;
    padding: 50px 0 55px;
    position: relative;
    height: 500px; /* Erhöhe die Höhe des Containers */
    overflow: visible;
    align-items: center; /* Zentriere Bild und Text vertikal */
}
.ceo-text {
    background-color: var(--white);
    padding: 50px 100px 55px 295px;
    box-shadow: 2px 5px 9px var(--black-10);
}
.ceo-card:nth-of-type(even) .ceo-text {
    background-color: var(--white);
    padding: 50px 295px 55px 100px;
    box-shadow: 2px 5px 9px var(--black-10);
}

.ceo-card .ceo-img {
    position: absolute;
    bottom: -35px; 
    margin: 0 24px 0;
}
.ceo-card:nth-of-type(odd) .ceo-img {
    left: -50px; 
}
.ceo-card:nth-of-type(even) .ceo-img {
    right: -50px; 
}
.ceo-name {
    font-size: 37.5px;
    font-weight: 600;
    margin-bottom: 15px;
}
.ceo-comp {
    margin-bottom: 50px;
}
.ceo-comp,
.ceo-quote {
    font-size: 23.5px;
    font-weight: 600;
}
.sustainability-page .img-full {
    background-image: url(../img/sustainability/SA_84949494_MOD.jpg);
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    /* margin-bottom: -200px; */
    /* margin-top: -200px; */
}
.sustainability-page .img-center {
    max-width: 100%;
}
.sustainability-page .img-center img {
    display: block;
    max-width: 50%;
    margin: 25px auto 100px;
}
.sustainability-page .ecovardis-medal {
    width: 50%;
}
.sus-green {
    color: var(--sus-green);
}

.sustainability-comp-container {
    background: var(--gradient-green);
    margin-top: -200px;
    margin-bottom: 0;
    padding-top: 200px;
    padding-bottom: 200px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.sustainability-page .button {
    width: clamp(200px, 80% 400px);
}
.sustainability-page .hl-container-sub .sub-hl {
    margin-bottom: 40px !important;
}
.sustainability-page .init {
    font-size: 1.5rem;
    font-weight: 600;
}
.sustainability-page ul {
    list-style: none;
}

.sustainability-page li {
    position: relative;
    padding-left: 2rem;
    font-size: 20px;
    margin-bottom: 20px;
}

.sustainability-page li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .6em; /* Vertikaler Abstand zur Anpassung der Position des Bildes */
    width: 1em; /* Breite des Bildes */
    height: 1em; /* Höhe des Bildes */
    background-image: url('../img/svg/leaf.svg');
    background-size: contain; /* Anpassung der Bildgröße */
    background-repeat: no-repeat;
}

.sustainability-page .text-container {
    padding-left: 2rem;
    padding-right: 2rem;
}


/* ===== Contact Modal ===== */
/* Verstecke das Modal-Fenster standardmäßig */
.modaloverlay {
    display: none;
}

/* Zeige das Modal-Fenster an, wenn die Klasse "open" hinzugefügt wird */
.modaloverlay.open {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modaloverlay {
    width: 100%;
    height: 100vh;
    background-color: var(--black-70);
    z-index: 900;
    position: fixed;
    bottom: 0;
    left: 0;
    
}
.modaloverlay .wrapper-xl {
    height: 100%;
    position: relative;
}
.modal-parent {
    width: clamp(300px, 60vw, 1200px);
    max-height: 90dvh;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    z-index: 899;
    background-color: var(--white);
    padding: 1rem 2rem;
}
.modal-parent::-webkit-scrollbar {
    width: 0px;
}
.modalclose {
    cursor: pointer;
    height: 27px;
    width: 27px;
    overflow: visible;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 900;
}

.modalclose span,
.modalclose span:before,
.modalclose span:after {
    background: var(--primary-red);
    display: block;
    height: 4px;
    opacity: 1;
    position: absolute;
}

.modalclose span:before,
.modalclose span:after {
    content: "";
}

.modalclose span {
    transform: rotate(-45deg);
    top: 13px;
    width: 27px;
}

.modalclose span:before {
    top: 0px;
    transform: rotate(90deg);
    width: 27px;
}
.modal-screen .text-container {
    padding: 0;
    margin: 45px 0;
}
form .input-container {
    width: 100%;
    margin: 2rem auto;
}
form input[name="namedsajldj"],
    input[name="emaildsajldj"],
    input[name="kommentardsajldj"],
    input[name="phonedsajldj"],
    input[name="postcodedsajldj"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--black-70);
    padding: 8px 8px;
}
form .checkbox-container {
    width: 100%;
    margin: 1rem auto;
}
.ast {
    font-size: .7rem;
    color: var(--primary-red);
}
.pooh {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}
form input[type="submit"] {
    width: 20%;
    padding: 8px 8px;
    margin: 1rem 0;
    background-color: #f8f9fa;
    border: 1px solid #E6E7E8;
    border-radius: 4px;
    color: #3c4043;
    cursor: pointer;
    font-family: arial, sans-serif;
    font-size: 14px;
    height: 36px;
    line-height: 27px;
    min-width: 100px;
    padding: 0 16px;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: pre;
}
form input[type="submit"]:hover {
    background-color: var(--primary-red);
    color: var(--white) !important;

    border-color: #dadce0;
    box-shadow: rgba(0, 0, 0, .1) 0 1px 1px;
    color: #202124;
}

form input[type="submit"]:focus {
    border-color: #4285f4;
    outline: none;

}

.col {
    display: flex;
    flex-direction: column;
}
.row {
    display: flex;
    flex-direction: row;
}

.align-center {
    align-items: center;
}
.space-between {
    justify-content: space-between;
}
.text-col {
    width: 50vw;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
}
.img-row {
    width: 40vw;
}
.img-row img {
    width: 100%;
    max-width: 500px;
    padding-left: min(7vw, 100px);
    padding-right: min(7vw, 100px);
}

.markenharmonisierung {
    margin-top: 0;
    padding-top: 120px;
}
.markenharmonisierung .button {
    margin-top: 3rem;
}
.markenharmonisierung .logo-quer {
    display: none;
    height: 0;
}
#markenharmonisierung {
    scroll-margin-top: 1200px;
  }
.temp {
    color: orange;
}

.index .cms-element {
-webkit-box-shadow: 0px 0px 20px 0px rgba(21,25,25,0.14); 
box-shadow: 0px 0px 20px 0px rgba(21,25,25,0.14);
margin: 1rem 0;
width: 550px;
}
.index .cms-text {
    padding: 24px 32px 38px;
}

.index .cms-text p,
.index .cms-text a {
    font-size: 1.25rem;
}
.index .cms-text .bottom-container {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}
.index .cms-text .bottom-container a {
    text-decoration: none;
    position: relative;
}
.index .cms-text .bottom-container a:hover {
    text-decoration: underline;
}
.index .cms-text .bottom-container a::after {
    content: '';
    position: absolute;
    width: 1.25rem;  /* Passe die Größe nach Bedarf an */
    height: 1.25rem;
    background-image: url('../img/svg/maximize.svg');
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: .5rem;
    transform: translateY(15%);
}
.index .cms-text .bottom-container img {
    max-width: 215px;
}

@media screen and (max-width: 768px) {
    .row {
        flex-direction: column;
    }
    .text-col {
        width: 100%;
    }
    .img-row {
        width: 100%;
    }
    .markenharmonisierung a.button {
        align-self: center;
    }
    .markenharmonisierung .logo-quer {
        display: block;
        height: auto;
        padding: 2rem 2rem 1rem;
    }
    .markenharmonisierung .img-row img:first-child {
        display: none;
        height: 0;
    }
}
 @media screen and (max-width: 1490px) {

    .ergonomie-page .hero img {
        width: 100%;
        height: auto;
    }


    .ceo-card .ceo-img {
        top: 7vw;
    }
    .ceo-card .ceo-img {
        right: -50px;
    }
    .ceo-card .ceo-img img {
        width: clamp(280px, 30vw, 400px);
    }
    .ceo-card:nth-of-type(odd) .ceo-img {
        left: auto;
    }
    .ceo-card:nth-of-type(odd) .ceo-text, 
    .ceo-card:nth-of-type(even) .ceo-text {
        padding: 50px 330px 55px 100px;
    }
 }
 @media screen and (max-width: 1460px) {
    .top-nav a,
    .footer-nav a {
        text-decoration: none;
        font-family: Open Sans;
        font-size: 22px;
        color: var(--black);
    }
    .intro .img-container {
        min-width: 400px;
    }
    .sustainability-page .intro .img-container {
        min-width: 300px;
    }
    .welcome-page .intro .text-container-50 {
        flex-direction: column;
    }
 }
@media screen and (min-width: 1300px) {
    .mobile-menu {
        display: none;
    }
    .desktop-menu {
        display: flex;
    }
}
@media screen and (max-width: 1299px) {
    .desktop-menu {
        display: none !important;
    }
    
}
@media screen and (max-width: 1200px) {
    section {
        margin-bottom: 0;
        margin-top: 0;
    }
    .hero img {
        min-width: 280px;
        max-width: 600px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
    .markenharmonisierung_form-page .hero img {
        min-width: none;
        max-width: none;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
    .flex {
        flex-wrap: wrap;
        /* margin-top: 100px; */
    }
    .innovations-page .intro {
        flex-direction: column;
    }
    .ergonomie-page .intro {
        flex-direction: column;
    }
    .index .intro {
        flex-direction: column;
        margin: 2rem 0;
        gap: 3rem;
    }
    .index .intro .cms-element {
        width: clamp(280px, 80vw, 550px);
        margin-left: auto;
        margin-right: auto;
    }
    .index .cms-element img {
    max-width: 100%;
}
    .intro .text-container {
        width: 100%;
    }

    .text-container {
        gap: 2rem;
    }

    .logo{
        width: 110px;
    }

    .service-page .hero,
.welcome-page .hero,
.sustainability-page .hero, 
.innovations-page .hero,
.faq-page .hero,
.fhcs-page .hero,
.datenschutz-page .hero,
.ergonomie-page .hero,
.trockenreinigung-page .hero {
  
    padding: 70px 0;
   
}
 

}



@media screen and (max-width: 1024px) {
    .katalog {
        flex-direction: column;
        gap: 35px;
    }
    .katalog .text-container {
        width: 100%;
    }
    .katalog .img-container {
        width: 100%;
    }
    .welcome-page .intro {
        flex-direction: column;
    }
    .sustainability-page .intro {
        flex-direction: column;
    }
    .sustainability-page .intro .text-container {
        max-width: 100vw;
    }
    .sustainability-page .intro .img-container .text-container {
        max-width: 50vw;
    }
    .sustainability-page .intro .img-container .ecovardis-medal {
        width: clamp(200px, 50%, 300px);
        height: auto;
        /* max-height: 250px; */
    }
    .sustainability-page .intro .img-container {
        /* flex-direction: row; */
        gap: 75px;
        margin-bottom: 3rem;
    }
    .service-container {
        flex-direction: column;
    }

    .service-container img {
        min-width: 240px;
        width: 100%;
        max-width: 500px;
    }
    .ceo-card {
        flex-direction: column;
        height: auto;
    }
    .ceo-card .ceo-text {
        padding: 2rem !important;
        min-height: auto;
    }
    .ceo-card .ceo-img {
        position: static;
    }

    p {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    header {
        height: 100px;
    }
    header nav {
        height: 100px;
    }
    #menu {
        top: 100px;
        height: 100dvh;
    }
    main {
        margin-top: 100px;
    }
    section {
        margin-bottom: 50px;
        margin-top: 50px;
    }
    .main-hl,
    .hero-sub h1 {
        font-size: 42px;
    }
    .hero-sub h2 {
        font-size: 22px;
    }
    .small {
        font-size: 16px;
    }
    .logos {
        min-width: 200px;
        
    }

    .logo{
        width: 100px;
    }
 
    .index .hero {
        background-position: 15% center;
    }
    .hero {
        display: flex;
        flex-direction: column;
    }
    .hero .hl-container {
        width: 90vw;
    }
    .img-container {
        min-width: 280px;
    }


    .sustainability-page .intro {
        flex-direction: column;
    }
    .sustainability-page .intro .text-container {
        padding-top: 2rem;
        padding-bottom: 0;
    }
    .sustainability-page .intro .img-container {
        flex-direction: column;
    }
    .sustainability-page .img-center img {
        max-width: 90vw;
        margin: 0 auto 0;
    }
    .sustainability-page .text-container-50-full {
        flex-direction: column;
    }
    .sustainability-page .intro .img-container .text-container {
        max-width: 100vw;
    }
    .sustainability-page .img-full {
        background-position: -400px;
    }
    .sustainability-page .text-container {
        padding: 0;
    }

    p {
        font-size: 16px;
    }

}
@media screen and (max-width: 584px) {
    .index .intro .cms-element .bottom-container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}
@media screen and (max-width: 480px) {
    .wrapper-xl,
    .wrapper-l,
    .wrapper-m {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .index .hero {
        background-position: 40% -100px;
    }
    .hero .hl-container {
        clip-path: none;
        width: 100vw;
        display: block;
    }
    .hero .hl-container p {
        /* padding-left: 2rem; */
        width: 90%;
    }
    .main-hl,
    .hero-sub h1 {
        font-size: 32px;
    }
    .intro .img-container {
        min-width: 280px;
    }
    footer .footer-nav {
        gap: 10px;
        flex-direction: column;
    }
    .footer-nav ul {
        flex-direction: column;
        gap: 20px;
    }
}

