.ourReferences {
    margin-bottom: 135px;
}
.ourReferences .referenceWrapper {
    width: 100%;
    margin-bottom: 15px;
}
.ourReferences .referenceWrapper ul {
    display: flex;
    align-items: center;
}
.ourReferences .referenceWrapper ul li {
    width: calc(100% * 1/5);
}
.ourReferences .referenceWrapper ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    border-radius: 5px;
    transition: all 0.3s ease;
    gap: 13px;
    @media screen and (max-width:768px) {
        font-weight: 500;
        text-align: center;
    }
}
.ourReferences .referenceWrapper ul li a:hover {
    background: rgba(255, 0, 184, 0.15);
}
.ourReferences .referenceDesc p {
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.24px;
    background: radial-gradient(81.58% 81.58% at 50% 50%, #232323 0%, rgba(35, 35, 35, 0.3) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ourReferences li .image_area{
    /* border-right: 1px solid #ff00b8; */
    padding-right: 10px;
    display: flex;
    align-items: center;
    @media screen and (max-width:768px) {
        height: 35px;
        margin-bottom: 12px;
        padding-right: 0;
        & img{
            margin:0 auto;
        }
    }
}
.ourReferences li .image_area img{
    width: 100%;
    filter: grayscale(1);
    transition: all 0.3s ease;
}
.ourReferences li .image_area:hover img{
    filter: grayscale(0);
}
.ourReferences li .text_area{
    font-size: 19px;
}


@media screen and (max-width:768px) {
    .ourReferences li .text_area{
        line-height: 24px;
        font-size:14px;
    }
}

