.intro {
    width: 100%;
    text-align: center;
    padding: 0 1rem;
    margin: 1.5rem auto;
    max-width: 1000px;
}

.intro h2 {
    color: #faa8bf;
    margin-bottom: 1rem;
}

/*Navigation Bar*/
.navigation{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    margin-bottom: 1rem;
    height: 60px;
    background-color: #F9F9F9;
}

.navigation h3 {
    padding: 0 1.3rem;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    font-family: ByShey, sans-serif;
    font-size: 1rem;
    margin: 0;
}

.navigation h3:after {
    content: '';
    position: absolute;
    height: 30px;
    width: 30px;
    background-color: #CEB39A;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: rotate(45deg);
    z-index: -1;
    display: none;
}

.navigation h3:hover {
    background-color: #CEB39A;
    cursor: pointer;
    color: white;
}

.navigation h3:hover:after {
    display: block;
}

.navigation .current {
    background-color: #CEB39A;
    cursor: pointer;
    color: white;
}

.navigation .current:after {
    display: block;
}

@media (max-width: 600px) {
    .navigation {
        flex-direction: column;
        height: fit-content;
        margin: 0;
    }
    .navigation h3 {
        width: 100%;
        height: fit-content;
        padding: 0.5rem 0;
        font-size: 0.9rem;
        justify-content: center;
    }
    .navigation .current:after {
        display: none;
    }

}
/*Verjaardagsfeest*/
.verjaardagsfeest, .babyshower, .gender {
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    position: relative;
}
.verjaardagsfeest {
    display: flex;

}
.txt {
    margin: 0 1rem;
    margin-right: 10rem;
    max-width: 750px;
    width: 50%;
    text-align: center;
}
h3 {
    color: #faa8bf;
    margin-bottom: 1rem;
    font-family: 'Dawning of a New Day', cursive;
    font-size: 2.8rem;
}
.omgeving {
    font-family: ByShey, sans-serif;
    margin: 0;
}
.verjaardagsfeest .flexpart {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
}

.verjaardagsfeest .flexpart span {
    font-weight: bold;
}

.img {
    width: 40%;
}

.img img {
    width: 40%;
    min-width: 100px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 10px;
    -moz-box-shadow:0px 0px 4px #575757;
    -webkit-box-shadow:0px 0px 4px #575757;
    box-shadow:0px 0px 4px #575757;
}

.img .img-large {
    width: 50%;
    margin: 0 2rem;
}
.responsivebr {
    display: none;
}
/*Babyshower*/
.babyshower p, .gender p {
    max-width: 1000px;
    margin-bottom: 2rem;
}

/*Triangle*/
.verjaardagsfeest:before, .gender:before {
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    background-color: #FFEFF1;
    z-index: -1;
}

.babyshower:before {
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    background-color: #FFEFF1;
    z-index: -1;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

/*Responsive*/

@media (max-width: 1735px){
    .txt {
        margin: 0 1rem;
    }
    .img .img-large {
        margin: 0 0.5rem;
    }
}

@media (max-width: 1200px){
    .txt {
        width: 40%;
    }
    .img {
        width: 50%;
    }
    .verjaardagsfeest .txt {
        width: 60%;
    }
    .verjaardagsfeest .img {
        width: 40%;
    }
}

@media (max-width: 1000px){
    .txt h3 {
        font-size: 2rem;
    }
    .verjaardagsfeest .img img{
        width: 70%;
    }
}

@media (max-width: 760px) {
    .allSection {
        flex-direction: column;
    }
    .allSection .txt{
        width: 100%;
        margin: 1rem;
    }
    .allSection .txt p {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    .img {
        width: 100%;
        display: inline-block;
        text-align: center;
        margin: 0 1rem;
        margin-top: 2rem;
    }
    .img img {
        width: 45%;
    }
    .img .img-large {
        width: 45%;
    }
    .verjaardagsfeest .img  {
        width: 100%;
    }
    .verjaardagsfeest .img img {
        width: 60%;
    }
}
@media (max-width: 480px) {
    .verjaardagsfeest .flexpart {
        grid-template-columns: 1fr;
    }
    .responsivebr {
        display: inline;
    }
}
@media (max-width: 350px) {
    .verjaardagsfeest .img img {
        min-width: 70%;
    }
}