@charset "utf-8";

/*
* CSS-Design
* Kristin Neumann 
* Grafik- & Webdesign

Farben:

Lila
#7b34ea
rgba(123, 52, 234, 1)

Dunkellila
#5624a3
rgba(86, 36, 163, 1)

Türkis
#33cccc
rgba(51, 204, 204, 1)

Schwarz 
#180a2e
rgba(24, 10, 46, 1)

Weiß
#fafafa
rgba(250, 250, 250, 1)
*/


/* =======Case Study =======*/

.vorstellung img {
    border-radius: 5%;
}

.vorstellung p,
.vorstellung li {
    max-width: 750px;
    font-size: 1.5rem;
}

.bildraster {
    padding: 3rem 1rem;
    text-align: center;
}
  
.bildraster-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
  
.bild-box {
    flex: 1 1 calc(25% - 15px);
    max-width: calc(25% - 15px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
}
  
.bild-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
  

.kunden-zitat img {
    display: block;
    border-radius: 50%;
    max-width: 100px;
    margin: 0 auto;
}

.kunden-zitat cite {
    font-style: italic;
    line-height: 1.6;
    font-size: 1.2rem;
    color: #180a2e;
    text-align: center;
    max-width: 800px;
    margin: 20px auto;
    display: block;
}

/*=======Responsive Anpassungen======*/

/*======Case-Study======*/
@media screen and (max-width: 960px)  {
.vorstellung .col_1_2 {
    text-align: left;
}

.bild-box {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
}
}

@media screen and (max-width: 600px)  {
    .bild-box {
        flex: 1 1 100%;
        max-width: 100%;
    }
}