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

html{
    font-size: 62.5%; /* 1rem is 10 pixels*/
    scroll-behavior:smooth;
}

a, a:visited, a:link{
    color: #eee;
    text-decoration: none;

}

body{
    font-size: 2rem;
    font-family: 'Roboto', sans-serif;
    background: #8B7E74;
}

.nav{
    width: 100%;
    background:#6096B4;
    display: flex;
    justify-content: space-between;
    min-height: 7rem;
    align-items: center;
    color: #eee;
    padding: 2rem;
    text-transform:uppercase;
    position:fixed;
    top: 0;
    left: 0;
    z-index: 1;

}



.list{
    display:flex ;
    list-style: none;
    gap: 4rem;
    font-size: 120%;
}

.cta{
    width: 11rem;
    padding:1rem;
    font-size: 80%;
    background:#E94560;
    border: none;
    color: #eee;
    border-radius: 0.5rem;
    text-transform:uppercase;

}

.cta:hover{
    cursor: pointer;
    background:hsl(350, 79%, 49%);
    transition: 0.2s;

}

.banner{
    height: 100vh;
    width: 100%;
    position: relative;
    
}


.banner > figure {
    height: 100%;
    width: 100%;
    background:linear-gradient(to bottom right, rgba(22, 33, 62, 0.4),80%, rgba(233, 69, 96, 0.4)), url("../img/pexels-kat-smith-551611.jpg");
    background-position: bottom;
    background-size: cover;
}

.banner > figure > div{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    color: #eee;
    text-align: center;
}



.heading{
    font-family: 'Open sans', cursive;
    font-size: 500%;
}

.heading2{
    font-family: 'Open sans', cursive;
    font-size: 380%;
}

.logo{
    font-size: 250% ;
    color: #eee;
    border: 0.5rem solid #F1D3B3;
    border-radius: 50%;
    padding: 1.5rem;
}

.SDG{
    padding: 4rem;
    height: 80rem;
    border-bottom:0.2rem solid #F1D3B3;

}

.SDG > header{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem;
    
}

.SDG > header > h2{
    font-family: 'Dancing Script', cursive;
    font-size: 380%;
    color: #eee;
}

.SDG > div{
    display: flex;
    gap: 4rem;
    justify-content: center;
    height: 100%;
}

.SDG > div > div{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.SDG > div > div > p{
    width: 55ch;
    color: #eee;
}

.SDG > div > figure > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;

}

.SDG > div > figure{
    position: relative;
    width: 60rem;
    height: 60rem;
}

.SDG > div > figure::after{
    content:"";
    background:linear-gradient(to bottom right, rgba(22, 33, 62, 0.4),80%, rgba(233, 69, 96, 0.4));
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    
}

.kenmerken{
    height: 80vh;
    border-bottom:0.2rem solid #E94560;
    padding: 4rem;
}

.kenmerken > header{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem;
    height: 20%;
    
    
}

.kenmerken > header > h2{
    font-family: 'Dancing Script', cursive;
    font-size: 380%;
    color: #eee;
}

.onzeKenmerken{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 80%;
}

.kenmerk{
    list-style: none;
    color: #eee;
    width: 40%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.kenmerk > p{
    width: 30ch;
    text-align: center;


}

.kenmerkIcon{
    font-size: 180%;
    border: 0.1rem solid #E94560;
    padding: 2rem;
    border-radius: 50%;
}

.gallerij{
    height: 80vh;
}

.gallerij > header{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 6rem;
    
}

.gallerij > header > h2{
    font-family: 'Dancing Script', cursive;
    font-size: 380%;
    color: #eee;
}

.fotos{
    display: flex;
    flex-wrap: wrap;
}

.foto{
    width: 25%;
    height: 40rem;
    list-style: none;
    position: relative;
}

.foto > section{
    content:"";
    width:100% ;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background:linear-gradient(to bottom right, rgba(22, 33, 62, 0.4),80%, rgba(233, 69, 96, 0.4));
    transform: scaleX(0);
    transition: 0.8s;
    transform-origin: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foto > section > .cta{
    opacity: 0;
    transition-delay: 0.8s ;
    transition-duration:0.2s ;
    
}

.foto:hover > section > .cta{
    opacity: 1;
}

.foto:hover > section{
    transform: scale(1);

}

.foto > img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 75rem) {
    body{
        font-size: 1.6rem;
    }
    .banner{
        height: 140rem;
    }
    .over{
        min-height: 120rem;
    }
    .over > header{
        height: 20%;
    }
    .over > div{
        flex-direction: column;
        height: 80%;
    }
    .over > div > div{
        height: 60%;
    }
    .over > div > div > p{
        width: 100%;
        color: #eee;
        height: 50%;
    }
    .over > div > figure{
        position: relative;
        width: 100%;
        height: 40%;
    }
    .kenmerken{
        min-height: 120rem;

    }
    .kenmerk{
        width: 100%;
    }
    .gallerij{
        height: auto;
    
    }
    .fotos{
        flex-wrap: wrap;
    }
    .foto{
        height: 20%;
        width: 100%;
    }
    .foto:hover > section > .cta{
        opacity: 0;
    }
    
    .foto:hover > section{
        transform: scale(0);
    
    }
    
}

@media screen and (max-width: 50rem) {
    .list{
        flex-direction: column;
    }
    
}