.login_bg_container {
    &:before {
        content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(0.2px);
    }
}
@media screen and (min-width: 1280px) {
    .login_bg_container {
        width: 55% !important; 
    }

    .testimonial-container  {
        bottom: 80px;
    }
}

@media screen and (max-width: 1279px) {
    .login_bg_container {
        width: 44% !important; 
    }

    .testimonial-container  {
        bottom: 5px;
    }
}

@media screen and (max-width: 1023px) {
    .login_bg_container {
        width: 33% !important; 
    }

    .testimonial-container  {
        bottom: 5px;
    }
}

@media screen and (max-width: 767px) {
    .login_bg_container {
        display: none;
    }

    .testimonial-container {
        display: none;
    }
}
.testimonial-container {
    width: 100%;
    position: absolute;
    padding-left: 10%;
    z-index: 1;
}

.testimonial-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.testimonial {
    cursor: pointer;
    flex: 0 0 auto;
    width: 120px;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.testimonial:hover {
    transition: 200ms linear; 
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
}

.c_name {
    padding-left: 10px;
    font-size: large;
    
}

.hidden_div {
    background: #fff;
	
    position: absolute;
	z-index: 100;
	bottom: 90px;
    display: none;
    left: 50%;
	transform: translateX(-50%);
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.35);
    
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}