.founder {
    background: var(--black);
    color: var(--white);
    position: relative;
    height: auto;
    overflow: hidden;
}

.founderImg {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 5.20vw;
}

.man {
    width: 35%;
    height: auto;
}

.star2 {
    position: absolute;
    bottom: -8%;
    left: 29%;
    width: 6.250vw;
    height: 6.250vw;
    animation: rotation 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation: rotation 5s linear infinite;
}

.founderLine {
    width: 100%;
    height: 1.5px;
    background: var(--white);
    margin: 2.6vw 0;
}

.founderText {
    position: absolute;
    width: 30%;
    z-index: 2;
}

#founderText1 {
    top: 30%;
    left: 15%;
}

#founderText2 {
    top: 70%;
    right: 15%;
}

.teamCards {
    display: flex;
    gap: 2.6vw;
    flex-wrap: wrap;
}

#teamCard {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 2.6vw;
    padding: 2.6vw 2vw;
    text-align: center;
    width: 18vw;
}

#teamCard img {
    height: 10.4vw;
    width: 10.4vw;
}

@media (max-width: 868px) {
    .founderImg {
        margin-top: 25vw;
    }

    .man {
        width: 60%;
    }

    .founderText {
        width: 50%;
    }

    #founderText1 {
        top: 20%;
        left: 5%;
    }

    #founderText2 {
        top: 70%;
        right: 5%;
    }

    .star2 {
        left: 15%;
        width: 10vw;
        height: 10vw;
    }

    .teamCards {
        gap: 1vw;
    }

    #teamCard {
        padding: 2.6vw 2vw;
        width: 19vw;
    }

}

@media (max-width: 670px) {
    .founderImg {
        margin-top: -1vw;
    }

    .man {
        width: 80vw;
    }

    .star2 {
        left: 15%;
        width: 15vw;
        height: 15vw;
    }

    .founderText {
        position: initial;
        width: 90%;
    }

    #founderText1 {
        margin-top: 5vw;
    }

    #founderText2 {
        margin-top: 15vw;
    }

    .teamCards {
        gap: 2vw;
    }

    #teamCard {
        padding: 2.6vw 2vw;
        width: 47vw;
    }

    #teamCard img {
        height: 20.4vw;
        width: 20.4vw;
    }

}