.werkgebied-header-section{
    background-image: url("../img/backgrounds/roads.jpg");
    background-size: cover;
    /*border-bottom-left-radius:50px ;*/
    border-bottom-right-radius:50px ;
}
.werkgebied-section{
    justify-content: space-evenly;
    align-content: center;
    align-items: flex-start;
    margin-bottom: 50px;
}
.werkgebied-content-section-container{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: white;
}

.werkgebied-card-container{
    display: flex;
    flex-wrap: wrap;
    width: var(--contentWidth);
    align-content: center;
    align-items: center;
    height: 100%;

}

.werkgebied-card{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    /*height: 90vh;*/
    width: 25%;
    /* background-color: #212121; */
    justify-content: center;
    align-content: center;
    transition: 0.8s;
    /*background-color: red;*/

}
.werkgebied-airports-card{
    -webkit-box-shadow: 3px 5px 14px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: 3px 5px 14px -3px rgba(0,0,0,0.75);
    box-shadow: 3px 5px 14px -3px rgba(0,0,0,0.75);
    border-radius: 20px;

}

.werkgebied-airports-card:hover{
    transform: scale(1.1);
}
.werkgebied-card-top{
    display: flex;
    flex-wrap: wrap;
    height: 30vh;
    width: 100%;
    background-color: var(--colorSecondary);
    border: 3px solid var(--colorAccent);
    border-bottom: none;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.werkgebied-card-top-1{
        background-image: url("../img/backgrounds/netherlands.jpg");
    background-size: cover;
}
.werkgebied-card-top-2{
        background-image: url("../img/backgrounds/belgium.jpg");
    background-size: cover;
}
.werkgebied-card-top-3{
        background-image: url("../img/backgrounds/germany.jpg");
    background-size: cover;
}
.werkgebied-card-bottom {
    display: flex;
    flex-wrap: wrap;
    height: 70vh;
    width: 100%;
    background-color: var(--colorSecondary);
    /* border: 3px solid var(--colorAccent); */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    justify-content: center;
    align-content: start;
}
.werkgebied-card-left{
}
.werkgebied-card-right{
}
.werkgebied-card-title{
    font-family: var(--titleFf);
    font-size: var(--cardTitleFontSize);
    color: var(--h2TitleFontColor);
    padding: var(--textPadding);
    font-weight: var(--cardTitleFontWeight);
    margin: 0;
}
.werkgebied-card-text-container{
    text-align: center;
    align-items: flex-start;
    justify-content: space-evenly;
}
.werkgebied-card-text{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    font-family: var(--secondaryFf);
    font-size: var(--textFontSize);
    font-weight: var(--textFontWeight);
    color: var(--colorPrimary);
    padding: 0;
    /*font-style: italic;*/
}

.werkgebied-phone-left{
    display: flex;
    height: 80px;
    width: 80px;
    background-image: url("../img/icons/phone-icon-black.svg");
    /*background-size: cover;*/
    background-size: 60px;
    background-position: center;
    background-repeat: no-repeat;
}

.werkgebied-phone-right{
    display: flex;
    height: 80px;
    width: 70%;
    flex-wrap: wrap;
    font-family: var(--ff);
    font-size: var(--textFontSize);
    font-weight: var(--textFontWeight);
}
.werkgebied-phone-top{
    display: flex;
    width: 100%;
    height: 50%;
    justify-content: flex-start;
    align-items: flex-end;
        color: #4b4b4b;
    font-weight: 400;
}

.werkgebied-phone-bottom{
        display: flex;
    width: 100%;
    height: 50%;
    justify-content: flex-start;
    align-items: flex-end;
        color: var(--colorPrimary);
}

/* Media query for tablets */
@media (max-width: 991px) {
.werkgebied-section{
    flex-direction: column;
    align-items: center;
}
    .werkgebied-card{
        width: 70%;
        margin-bottom: 50px;
        height: auto;
    }
    .werkgebied-card-top{
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 15vh;
    }
    .werkgebied-card-bottom {
    height: auto;
    width: 100%;
        justify-content: center;
}
    .werkgebied-card-text-container {
    text-align: start;
    align-items: flex-start;
    justify-content: space-evenly;
        margin-left: 20px;
}

    .werkgebied-card-title{
        width: 100%;
        text-align: center;
        font-size: var(--mobileCardH1FontSize);
    }
    .werkgebied-card-text{
        width: 100%;
        font-size: 5vw;
    }

    .werkgebied-phone-right {
    display: flex;
    height: 80px;
    width: 70%;
    flex-wrap: wrap;
    font-family: var(--ff);
    font-size: var(--mobileTextFontSize);
    font-weight: var(--textFontWeight);
        justify-content: center;
}

    .werkgebied-phone-top{
        justify-content: center;
    }

    .werkgebied-phone-bottom{
        justify-content: center;
    }
}

/* Media query for mobile devices */
@media (max-width: 767px) {


}