section.testimony {
    background-color: var(--whiteSmoke);
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonyTitle {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 5px;
}

.testimonySubtitle {
    font-weight: 500;
    margin-bottom: 25px
}

.testimonyCard {
    align-items: flex-start;
    filter: var(--shadowColor);
    display: flex;
    font-size: 12px;
    padding: 15px;
    border-radius: 10px;
    margin: 0 10px;
    background-color: white;
    transition: 0.5s;
}

.testimonyCard:hover {
    /* color: white; */
    /* background-color: var(--emeraldColor); */
    transform: translateY(-5px);
}

.testimonyCardList {
    display: flex;
    transform: translateX(25%);
    max-height: 400px;
    padding: 10px 0;
    overflow: auto;
    transition: 0.5s;
    justify-content: flex-start;
}

.testimonyCardImage {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    background-color: whitesmoke;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../assets/images/employer_mekuru.jpeg);
}

.testimonyCardTitle {
    font-weight: bold;
    font-size: 14px;
}

.carouselList {
    margin: 20px 0 10px;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.carouselItem {
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--footerColor);
    transition: 0.3s;
}

.testimonyButton {
    margin-top: 40px;
    font-size: 16px;
}

.testimonyCardQuote {
    margin-top: 10px;
    width: 18vw;
    text-align: justify;
}

.testimonyCardJob {
    margin-top: 10px;
}