/* CSS Document */

/********** COLOURS **********/

:root {
    --v-footer: #0e182a; 
    --v-dark: #333333;
    --v-light: #ffffff;
    --bs-body-color: #333333;
    --v-light2: #fcfbfc;
    --v-darkblue: #0e182a;
    --v-lightblue: #9fa3aa;
}


.bg-darkblue {
  background-color: var(--v-darkblue);
  }  

.bg-light2 {
  background-color: var(--v-light2);
  }   

.text-lightblue {
  color: var(--v-lightblue);
  } 
  
body {
  color: var(--v-dark);
  font-family: "Roboto Mono", monospace;
}     
   
    
/**************** HEADLINES & FONTS *******************/

h1,
h2,
h3,
h4,
h5,
h6
{  
    font-family: "Outfit", sans-serif;   
    font-weight: 700;
    color: var(--v-dark);
} 

/* p */
p {
  font-family: "Roboto Mono", monospace;   
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.9;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 0.75rem;
    line-height: 1.85;
  }
}

/* DISPLAY-1 STARTSEITE HEADLINE */
.display-1 {
  font-family: "Outfit", sans-serif;     
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.1;
}

@media screen and (max-width: 768px) {
  .display-1 {
    font-size: 2.5rem;
  }
}

/* DISPLAY-2 HEADLINE */
.display-2 {
  font-family: "Outfit", sans-serif;     
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.1;
}

@media screen and (max-width: 768px) {
  .display-2 {
    font-size: 2.8rem;
  }
}

/* DISPLAY-3 SEITENBEGRIFFE*/
.display-3 {
  font-family: "Outfit", sans-serif;     
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--v-dark);
}


@media screen and (max-width: 768px) {
  .display-3 {
    font-size: 1.8rem;
  }
}

/* DISPLAY-4 HEADLINE KLEINER */
.display-4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .display-4 {
    font-size: 1.3rem;
    font-weight: 600;
  }
}

/* DISPLAY-5 PORTFOLIO HEADS */
.display-5 {
  font-family: "Outfit", sans-serif;     
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.1;
}

@media screen and (max-width: 992px) {
  .display-5 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .display-5 {
    font-size: 1.4rem;
  }
}

/* DISPLAY-6 MENUSCHRIFT*/
.display-6 {
  font-family: "Outfit", sans-serif;     
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .display-6 {
    font-size: 1.6rem;
  }
}

/* DISPLAY-7 kleiner als p aber größer als small */
.display-7 { 
    font-weight: 400;
    font-size: 0.7rem;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .display-7 {
    font-size: 0.65rem;
  }
}

/* DISPLAY-8 RELATED LINKS */
.display-8 {
  font-family: "Outfit", sans-serif;
  font-size: 1.0rem;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .display-8 {
    font-size: 1.0rem;
    font-weight: 600;
  }
}

/* DISPLAY-9 INTERVIEW */
.display-9 {
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .display-9 {
    font-size: 0.9rem;
    font-weight: 600;
  }
}

/* DISPLAY-LOGO LOGOSCHRIFT*/
.display-logo {
  font-family: "Outfit", sans-serif;     
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2rem;    
}

@media screen and (max-width: 768px) {
  .display-logo {
    font-size: 0.7rem;
  }
}

/* DISPLAY-LINK auf den Detailseiten*/
.display-link {
  font-family: "Outfit", sans-serif;     
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1rem;  
}

.lead {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .lead {
    font-size: 1.0rem;
  }
}
  
/*************** HEADLINE END *************/

.swiper-controls .swiper-navigation .swiper-button {
  background: rgba(var(--bs-white-rgb), 0.7);
  color: var(--v-dark);
  border: 0;
  box-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.02);
  width: 2.2rem;
  height: 2.2rem;
  line-height: inherit;
  border-radius: 10%;
  text-shadow: none;
  transition: all 0.2s ease-in-out;
}