h3{
    color: white;
}

.splash{
  background: linear-gradient(rgba(0, 0, 0, 0.7),
  rgba(0, 0, 0, 0.7)),
  url('../res/webBackground.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

/* Values */

.first-part{
    background: var(--background-color-four);
    padding: 100px 10vw 100px 10vw;
    /* The image used */
    /*background: linear-gradient(rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.7)),
    url('../res/webBackground.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center; */
}

.first-part h2{
    color: white;
    margin: auto;
    padding-left: 20px;
}

.first-part img{
    width: 40px;
    height: 40px;
}

.first-part p{
    text-align: left;
}

.first-part .alt-color{
    text-align: left;
    margin: auto;
}

.first-part-grid{
    display: inline-grid;
    grid-template-rows: auto auto;
    grid-row-gap: 20px;
}

.philo{
    text-align: left;
}

.mission{
    text-align: left;
}

.first-part i{
    color: var(--normal-font-color);
    margin: auto;
    font-size: 25px;
    text-align: center;
    padding-top: 5px;
}

.first-part-grid header{
    padding: 20px 0;
    text-align: left;
    display: inline-grid;
    grid-template-columns: auto auto;
}

/* Boss mans */

.second-part{
    background: var(--background-color-two);
    padding: 100px 10vw 100px;
}

.second-part img{
    width: 75px;
    height: 75px;
    border: 5px solid orange;
    border-radius: 50%;
}

.second-part h1{
    padding: 20px 0;
}

.second-part .boss-mans{
    display: inline-grid;
    grid-template-columns: auto auto;
    grid-gap: 4vw;
}

/* Gallery */

.third-part{
    background: var(--background-color-two);
    padding: 50px 100px;
    margin: auto;
    text-align: center;
}

.third-part h1{
    padding-bottom: 30px;
    text-align: left;
}

.third-part .card-list-grid{
    width: auto;
    display: inline-grid;
    grid-template-columns: 250px 250px 250px 250px;
    grid-gap: 50px;
}

.third-part .gallery-image{
    width: 250px;
    height: 300px;
    text-align: center;
    background-color: var(--background-color-four);
}

.third-part .gallery-image img {
    object-fit: cover;
    width: 250px;
    height: 300px;
    image-orientation: none;         /** disable auto-rotate with EXIF **/
}

@media only screen and (max-width: 1300px){
    .third-part .card-list-grid{
        grid-template-columns: 250px 250px 250px;
    }
}

@media only screen and (max-width: 800px){
    .second-part .boss-mans{
        display: block;
    }

    .second-part .boss-man-kenneth{
        padding: 15px 0;
    }

    .second-part .boss-man-john{
        padding: 15px 0;
    }
}

@media only screen and (max-width: 950px){
    .third-part .card-list-grid{
        grid-template-columns: 250px 250px;
        grid-gap: 25px;
    }

    .third-part{
        padding: 50px 10vw;
    }
}

@media only screen and (max-width: 600px){
    .third-part {
        text-align: left;
    }

    .third-part .card-list-grid{
        grid-template-columns: 250px;
    }
}
