﻿.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.all-patner {
    display: flex;
    overflow: hidden;
}
.review-container {
    display: flex;
    flex-direction: row;
    transition: transform 0.5s ease;
}
.review-card {
    flex: 0 0 auto;
    width: 210px;
    box-sizing: border-box;
    margin-right: 10px;
   background-color: #f7f7f7;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}

.carousel-btn-container {
 position: absolute;
  top: 60%;
  left: 18%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #494949;
  border-radius: 50px;
  padding: 1px 10px;
  z-index: 2222;
  width:5%;
}
@media (max-width: 768px) {
    .review-card {
        width: 250px;
        
    }
     .carousel-btn-container {
 
  top: 80%;}
}
@media (max-width: 576px) {
    .review-card {
        width: 200px;
    }
    
    
    
    .carousel-btn-container {
 
  top: 80%;}
    
}

.carousel-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: background-color 0.3s ease;
    margin-right: 5px;
  margin-left: 5px;
    
}
.carousel-btn:hover {
   background-color: rgb(0, 86, 144);
  color: #fff;
}
.carousel-btn span {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

