*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* banner section */

#about-banner{
        background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)),url("../images/productBg.svg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
}

/* vision section */
#vision-sec{
    background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)),url("../images/visionbg.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.visionbtn{
    color: #fff;
    transition: all 0.5s ease;
}
.visionbtn:hover{
    background-color: #ffff;
    color: #000;
}

.vision-room{
    transition: all 1s ease;
    animation: vision 2s ease infinite;
}

@keyframes vision {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(15px);
    }
    100% {
        transform: translateY(-15px);
    }
}

/* founder section */

.founder-img {
    transition: all 0.5s ease;
    overflow: hidden;
    cursor: pointer;
}

.founder-img img{
    transition: all 0.5s ease;
}
.founder-img:hover img{
    transform: scale(1.1);
    transition: all 0.5s ease;
}