*{
    margin: 0px;
}
/*Drop-Down-Menü und Header*/ 
header{
	position: relative;
    z-index: 2;
	display: flex; 
	justify-content: space-between;
}
.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #000;
    background-color: #2F4156;
  height: 30px;
  padding: 1em;
}
.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}
.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#menu-toggle {
  display: none;
}

/* Aussehen des Hamburger Menüs*/ 
.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #C0C0C0 ;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}
.menu-button::before {
  content: '';
  margin-top: -8px;
}
.menu-button::after {
  content: '';
  margin-top: 8px;
}
#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}
#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}
#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}
/* Ab wann das Hamburger Menü sichtbar wird*/
@media (max-width: 965px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
	/* So sieht das geöffnete Menü aus*/
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  background-color: #FFFFFF;
  }
  .menu > li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
    color: white;
    background-color: #2F4156;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}

/*Größe des Logos im Header*/
img{
	height: 15px; 
	width:auto; 
}

/*Design der globalen Navigation (ohne Drop-Down*/
.global:link, .global:visited{
	font-family: Helvetica;
	font-size: 18px; 
	color:#C0C0C0 ;
	text-decoration: none;
}
.global:hover,.global:visited:hover, .global:focus, .global:active{
	color: #567C8D; 
	text-decoration: none;
}

/* Design des Teasers mobile first*/
.teaser{ 
    align-items: start;
    padding: 30px;
    height: auto;
    padding-top: 60px;
    background-color: #F5EFEB;
	display: flex;
    justify-content: center;
    text-align: center;
}

h1 {
  	font-family: "Hiragino Mincho ProN", serif;
  	font-size: 30px;
	color: #567C8D;
}
.special-font {
    font-family: "Snell Roundhand", cursive;
    font-size: 40px;
}
#teaserimg{
    visibility: hidden;
}
/*Design mittlerer Bildschirm- Keine Zentrierung mit Bild */ 
@media(min-width: 800px){
    .teaser{
        padding: 70px 30px;
        justify-content: start;
        text-align: left;
        align-items: center;
    }
}
@media(min-width: 965px){
    .teaser{
        padding: 130px 30px;
    }
}
@media(min-width: 800px){
    .teaser-child1{
        flex: 0 0 70%;
    }
}
@media(min-width: 800px){
    .teaser-child2{
        flex: 0 0 30%;
    }
}
@media(min-width: 800px){
    #teaserimg{
        visibility: visible;
        width: 83%;
        height: auto;
    }
}
/*Responsive Schrift auf großem Bildschirm*/ 
@media(min-width: 800px){
    h1{
        font-size: clamp(0.1rem, 4.5vw, 30rem);
    }
}
@media(min-width: 800px){
    .special-font{
        font-size: clamp(0.1rem, 5vw, 30rem);
    }
}
@media(min-width: 965px){
    .teaser-child1{
        position: relative;
        left: 4%;
    }
}

/*ABOUT US Section*/

/*Allg. Design*/
#AboutUs{
	padding: 40px 30px 30px 30px;
	display: flex;
	flex-direction: column;
}
h2{
  font-weight: normal;
  color: #567C8D;
  font-size: 35px;
}
h3{
	font-size: 25px;
	margin-bottom: 30px;
	margin-top: 30px;
}
p{
	font-size: 22px;
}
/* Auf mobile */
.row {
  display: flex;
  flex-direction: column;
}
.Quote1, .Quote2, .Quote3, .Quote4, #quote5{
  display: flex;
  justify-content: center;
}
#quote1-img, #quote2-img, #quote3-img, #quote4-img, #quote5-img{
	height: 250px;
}
.AboutUsText1, .AboutUsText2, .AboutUsText3{
  max-width: 100%;
  color: #2F4156;
  box-sizing: border-box;
  margin-bottom: 30px;
}
/*Auf großem Bildschirm*/
  
@media (min-width: 600px) {
  h2 {
	  font-size: 40px;
  }
}
@media (min-width: 951px) {
  .row{
    flex-direction: row;
  }
}
@media (min-width: 951px) {
  .row.reversed{
    flex-direction: row-reverse;
  }
}
@media (min-width: 951px) {
  .AboutUsText1, .AboutUsText2, .AboutUsText3, #Productstext{
    max-width: 60%;
    word-wrap: break-word;
	overflow-wrap: break-word;
  }
}
@media (min-width: 951px) {
  .Quote1, .Quote2, .Quote3{
    width: 40%;
    margin: 30px;
  }
}
@media (min-width: 951px) {
  .Quote4{
    width: 40%;
  }
}
@media (min-width: 969px) {
  .Quote1,.Quote3, .Quote4{
    position: relative;
    left: 20px;
  }
}
@media (min-width: 951px) {
  .Quote2{
    position: relative;
    left: -20px;
  }
}
#Specialists{
	margin-top: 10px;
	padding: 0px 30px 30px 30px;
	background-color: #F5EFEB;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
#specialiststext{
	max-width: 750px;
  	width: 100%;
  	margin: 0 auto;
  	text-align: center;
} 
/*Section Research*/ 
#Research{
	padding: 30px;
	background-color: #567C8D;
	color: #F5EFEB;
}
#research-flex{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
/*Mobile first*/
.research{  
    flex: 0 0 100%;
	box-sizing: border-box;
	display: flex;    
	flex-direction: column;
  	justify-content: center;     
  	align-items: center;    
	text-align: center;
}
.research-img{
	margin-top: 25px;
	height: 55px;
	width: auto;
}

/* Mittlere Bildschirme: 2 pro Zeile */
@media (min-width: 500px) {
  .research {
    flex: 0 0 50%;
  }
}
/*Große Bildschirme: 4 pro Zeile*/
  @media (min-width: 950px) {
  .research {
    flex: 0 0 25%;
  }
}

/*References Section*/ 
#References{
	padding: 30px;
	background-color: rgba(200, 217, 230, 0.35);
    justify-content: center;
	text-align: center;
}
h5{
	font-weight: normal;
	color: #567C8D;
	font-size: 40px;
	text-align: center;
}
#references-flex{
	display: flex;
	flex-wrap: wrap;
}
#references-child1, #references-child2{
	flex: 0 0 100%;
	justify-content: center;
	text-align: center;
}
.references-text{
	margin-top: 30px;
}
/*Img1: Logos, Img2: Weltkarte*/ 
.references-img1{
	margin-top: 25px;
}
#SaksGlobal{
	height: 35px;
	width: auto;
}
#SaksAve{
	height: 45px;
	width: auto;
}
#NeimanMarcus{
	height: 60px;
	width: auto;
}
#BergdorfGoodman{
	height: 23px;
	width: auto;
}
.references-img2{
	margin-top: 40px;
	width: 350px;
	height: auto;
}
/* Große Bildschirme: 2 pro Zeile */
@media (min-width: 800px) {
#references-child1, #references-child2 {
    flex: 0 0 50%;       
  }
}
@media (min-width: 800px) {
.references-img2{
	margin-top: 60px;
  }
}
@media (min-width: 1000px) {
.references-img2{
	width: 400px; 
	height: auto;
  }
}

/*Products Section */ 
#Products{
    padding: 30px;
}
#Productstext{
    margin: 30px 0px;
  }

/*Categories Flexbox*/ 
#Categories{
    padding: 30px;
}
.categories-img{
   height: 70px;
	width: auto;
	margin: 0px 0px -15px 0px;
}

#p-homedecor,#p-fashion, #p-accessoires, #p-finefood{
	font-family: Helvetica;
	line-height: 30px;
}
#categories-flex {
    margin: 20px -30px -30px -30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    background-color: #F5EFEB;
    padding: 30px;
    gap: 30px;
    color: #567C8D;
}

/* Alle Kinder nehmen standardmäßig 100 % */
.categories-child {
    flex: 0 0 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Zwei pro Zeile ab 600px */
@media (min-width: 600px) {
    .categories-child {
        flex: 0 0 40%;
    }
}
/* Vier pro Zeile ab 950px */
@media (min-width: 950px) {
    .categories-child {
        flex: 0 0 20%; /* etwas Luft (22% x 4 + gap ergibt ~100%) */
    }
}

/*Our Team Section*/ 
#OurTeam{
    padding: 30px 30px 0px 30px;
}
#h-ourteam{
    margin-top: 30px;
}
#OurTeam-Text, #quote5 {
    flex: 1;
  }
#OurTeam-flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 950px) {
  #OurTeam-flex {
    flex-direction: row;
    align-items: center;
  }
}
#OurTeam-Text, #quote5 {
    flex: 1;
}
@media (min-width: 950px) {
  #OurTeam-flex {
    flex: 0 0 60%;
  }
}
@media (min-width: 950px) {
  #quote5 {
    flex: 0 0 40%;
  }
}
#quote5{
	margin-bottom: 30px;
}
h6{
    color: #567C8D;
    font-size: 30px;
    font-weight: unset;
    
}

/*Profile*/ 

/*Blaue Box */ 
#blue-draga, #blue-stephan, #blue-cara{
	background-color: rgba(200, 217, 230, 0.35);
	margin: 0px -30px 0px -30px;
	padding: 30px;
    height: auto;
}
/*Div Box in der das Bild ist*/
#stephan-bild, #cara-bild,#draga-bild{
    margin-top: -50px;
	display: flex;
    justify-content: center;
    align-items: center;
}

/*Bilder*/
.stephan-bild,.draga-bild,.cara-bild{
	width: 250px;         
    height: 250px;      
    border-radius: 50%;
    object-fit: cover;
}
/*Damit Bilder im Kreis zentriert sind*/ 
.stephan-bild{
	object-position: -60px;
}
.cara-bild{
	object-position: -40px;
}

.job{
	color: #567C8D;
    margin-top: 15px;
}
#description-draga, #description-stephan, #description-cara{
	margin: 30px 0px 50px 0px;
	column-count: 1;
    gap: 40px;
}

@media (min-width: 900px) {
    #draga-flex, #cara-flex, #stephan-flex{
	display: flex;
  	flex-direction: column;  
  	width: 50%;
    }
}
@media (min-width: 900px) {
   #draga-bild, #cara-bild, #stephan-bild{
	   justify-content: flex-start;
       margin-left: 66%;
    }
}
@media (min-width: 900px) {
   #draga-bild, #cara-bild, #stephan-bild{
	   width: 350px; 
	   height: auto;
	   position: relative;
       top: -60px;
    }
}
@media (min-width: 900px) {
    #description-draga, #description-stephan, #description-cara{
		margin-top: -170px;
		width: 60%
    }
}

/*Footer*/
footer{
	background-color: rgba(221, 221, 222, 0.4);
	width: 100%;
	text-align: center; 
}

/*Logo im Footer, schwarz*/
.img-footer{
    height: 60px;
    margin: 30px 0px;
}
@media(min-width:900px){
    .img-footer{
        height: 80px;
    }
}
#adress, #contacts, #Addon{
	font-size: 18px;
}
#socialmedia {
	display: flex; 
	justify-content: center;
	gap: 60px;
}
#linkedin, #instagram {
	height:40px;
	width: 40px;
    margin-top: 30px;
}

#Addon{
	position: relative;
	top: 20px;
	margin-bottom: 50px;
}

#nav-footer{
    width: 100%;
	background-color: #2F4156;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 30px;
    padding: 20px 0px 20px 0px;
}
.footer:link, .footer:visited{
	font-family: Helvetica;
	font-size: 18px; color:#F5EFEB ;
	text-decoration: none;
}
.footer:hover,.footer:visited:hover, .footer:focus, .footer:active{color: #DEDEDE; 
	text-decoration: none;}

/* Contacts im Footer sind die Links zur Mailto */
a.contacts:link{
	color:#111111 ;
	text-decoration: none;
}
a.contacts:hover{
	color: #4C86B1; 
	text-decoration: none;
}
a.contacts:visited{
	color:#111111; 
	text-decoration: none;
}

#pfeil-home, #pfeil-imprint, #pfeil-dataprotection{
	background-color: #C8D9E6;
	position: fixed; 
	top: 85%; left: 85%;
	padding: 5px;
	border-radius: 15px;
	cursor: pointer;
  	visibility: hidden;
  	opacity: 0;
  	transition: opacity 0.3s ease-in-out;
}
#pfeil-home.visible, #pfeil-imprint.visible, #pfeil-dataprotection.visible{
  visibility: visible;
  opacity: 1;
}
#pfeil{
	height: 40px; 
	width: 40px;
}

/*Imprint und Data section Seiten*/ 
#imprint, #dataprotection{
	padding: 30px;
}
.imprint-headline{
	margin-top: 10px;
}
.h-imprint, .h-dataprotection{
	font-size: 25px;
	color: #A9A9A9;
	line-height: 45px;
	margin: 10px 0px 10px 0px;
}
.p-imprint, .p-dataprotection{
        max-width: 850px;
    }
.icon-link:link{
	color:#111111 ;
	text-decoration: none;
}
.icon-link:hover{
	color: #4C86B1; 
	text-decoration: underline;
}
.icon-link:visited{
	color:#111111; 
}
.icon-link:active{
	color: #A9A9A9;
	
}

.icon-link:link, .icon-link:visited{
	font-family: Helvetica;
	font-size: 18px; color:#111111 ;
	text-decoration: none;
}
.icon-link:hover,.icon-link:hover, .icon-link:focus, .icon-link:active{color: #4C86B1; 
	text-decoration: underline;}


