

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

body{
    background-color: #FFFFFF !important;
    font-family: 'Roboto ', sans-serif;
}

.our-team-section{
    background-color: #F6F6F6 !important ;
    max-width: 70%;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}


.our-team-hero-text h1 {
    font-size: 64px;
}



.card-img-overlay .card-title{
    /* margin-top: 140px; */
}

/* .team-img{
    width: 100%;
    height: 450px;
    object-fit: cover;
} */

.overlay {
    position: absolute;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    background: linear-gradient(45deg,
    rgba(29, 236, 197, 0.5),
    rgba(91, 14, 214, 0.5) 100%) !important;

}

.overlay-container:hover .overlay {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}


@media screen and (max-width: 480px) {

    .our-team-section{
        background-color: #FFFFFF !important ;
        max-width: 100%;
        margin: auto;
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
    }
    .team-img{
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

    .our-team-section{
        background-color: #FFFFFF !important ;
        max-width: 100%;
        margin: auto;
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
    }

    .team-img{
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
}