body .bgImage {
    background-image: url("/images/omslagfotos/omslagfotoAboutUs.jpeg" );
    background-position: bottom !important;
}


.main-wrapper {
    display: flex;
    text-align: center;
    justify-content: center;
    position: absolute;
    top: 35%;
    left: 100px;
    right: 100px;
}
.main-title {
    width: 25%;
    background-color: #e2d5cb;
    padding: 25px;
    border: none;
    border-radius: 10px;
}

.about {
    background-color: #e2d5cb;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
    padding-bottom: 20px;
    gap: 30px;  
    align-items: stretch;
}

.about .card {
    flex: 0 0 calc(16.66% - 20px);
    display: flex;
    justify-content: flex-start;
    align-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #2d3334;
    border: none;
    border-radius: 10px;
    transition-duration: 0.2s;
}

.about .card:hover {
    box-shadow: 6px 6px 16px rgba(52, 88, 111, 0.5);
    padding-top: 25px;
}

.about .card:hover .image {
    border: none;
    border-radius: 10px; 
    width: 100%;
}

.about .card .image {
    size: auto;
    width: 90%;
    border: none;
    border-radius: 10px;
    transition-duration: 0.2s;
}

.about .card .image:hover {
    animation: turnCicle10SDelay 3s 1;
    animation-delay: 10s;
    animation-timing-function: linear;
}

@keyframes turnCicle10SDelay {
    0% {
        transform: scale(0.8) rotate(0deg) translateX(0);
        opacity: 0;
    }
    15% {
        transform: scale(1.1) rotate(15deg) translateX(20px);
        opacity: 1;
    }
    30% {
        transform: scale(1) rotate(-10deg) translateX(-30px);
    }
    45% {
        transform: scale(1.05) rotate(5deg) translateX(10px);
    }
    60% {
        transform: scale(1) rotate(0deg) translateX(0);
    }
    100% {
        transform: scale(1) rotate(360deg) translateX(0);
    }
}

.about .card p {
    color: #e2d5cb;
}

.about .card .name {
    font-size: 20pt;
    font-weight: bolder;
    margin-bottom: 0;
    text-align: center;
}

.about .card .task {
    font-size: 16pt;
    margin: 5px;
    margin-left: 0;
    font-weight: bolder;
    margin-bottom: 15px;
}

.about .card .descr {
    font-size: 14pt;
    margin: 0;
    margin-bottom: 20px;
}

.geintreseerd .title {
    padding-top: 20px;
    font-weight: bolder;
    text-align: center;
    vertical-align: middle;
}

.geintreseerd , .socials {
    background-color: #e2d5cb;
}

.socials .text {
    font-size:  20pt;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
}

.social-wrappper {
    grid-template-columns: 1fr 1fr 1fr;
}



@media (max-width: 1440px) {

}

@media (max-width: 1280px) {
    .about {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 50px;
        padding-bottom: 20px;
    }
    .social-wrappper {
        grid-template-columns: 1fr;
    }

    .about .card {
        flex: 0 0 calc(25% - 20px);
    }

}

@media (max-width: 1024px) {
    .about .card {
        flex: 0 0 calc(35% - 20px);
    }
}

@media (max-width: 768px) {

    .main-title {
        width: 35%;
    }

    .main-wrapper {
        top: 45%;
    }

    .about .card {
        flex: 0 0 calc(38% - 20px);
    }

}
@media (max-width: 600px) {
    
    .main-title {
        width: 80%;
    }   

    .about .card {
        flex: 0 0 calc(70% - 20px);
    }
}

@media (max-width: 360px) {
    .warning2 {
        top: 30%;
    }
}