#about-heading-section{
    height: 40vh;
    width: 100%;
    background-image: url("../img/TaxiDoetinchem0625391111.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
#about-heading-section::before{
content: "";
height: 100%;
background-color: rgb(241, 246, 255);
opacity: 0.9;
position: absolute;
width: 100%;
z-index: -1;
}

.section-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem 0;
}

.image-section{
    display: flex;
	justify-content: center;
	align-items: center;
    width: 45%;
}
.image-section img{
	width: 80%;
	border-radius: 5px;
	margin: 2rem 0;
}
.text-section{ 
    width: 55%;
    margin: 0 1rem;
}
.text-section p{
    margin: 1rem 0;
}
.about-small-text{
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: rgb(27, 38, 82);
}

@media (max-width: 700px) {
    /* ABOUT PAGE */
    .section-area {
        flex-direction: column;
        width: 90%;
        margin: auto;
    }
    .text-section{ 
        width: 90%;
        margin: 0 1rem;
    }
    .image-section {
        width: 90%;
    }
    .image-section img {
        width: 100%;
    }
    .big-text {
        font-size: 2rem;
    }
    .about-small-text{
        font-size: 0.7rem;
    }
}