



/* Apply the animation to the review cards */
.review_card {
    animation: fadeInUp 0.5s ease forwards;
}

.column{
    display: flex;
    margin-left: 200px;
}
h6{
    padding-right:25px;
    font-size: 15px;
}

.icon-with-border {
    width: 2.5vh;
    padding-right: 5px;
}
.icon-with-border2 {
    width:  3vh;
    padding-right: 5px;
     padding-left: 2px;
}

@media screen and (max-width: 768px) {
    .column {
        margin-left: 0; /* Decreasing margin-left */
        flex-direction: row; /* Stacking items vertically */
        align-items: flex-start; /* Aligning items to the start of the column */
    }
    
    .column h6 {
        padding-right: 10px; /* Adjusting padding */
        font-size: 1.5vh; /* Decreasing font size */
    }
    .icon-with-border {
        width: 2vh;
        
    }
    .icon-with-border2 {
        width: 2.5vh;
       
    }

}  



    select {
  width: 100%;
  padding: 10px;
  border: 1px solid #fffefe;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 16px;
}

select option {
  font-size: 16px;
}
  .review_card:nth-child(n+6) {
      display: none;
  }

  .review_card {
      transition: opacity 1.5s ease-in-out;
  }
  
  .reviews_summary {
    width: 100%;
    height:250px;
    position: relative;
    display: inline-block; /* Ensures container shrinks to fit its content */
}
.reviews_summary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
} 

.reviews_summary img {
    display: block;
    height:100%;
    width: 100%; /* Ensures the image fills the container */
    object-fit: cover; /* This ensures the image covers the container */
    background-repeat: no-repeat;
    background-position: center center;
}

.info{
    padding-right: 28% ;
    position: relative;
    display: block;
    margin-top: 100px;
    
    /* margin-right: 850px; */
}
.centered-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex ;
    flex-direction: column ;
    align-items: center;
    pointer-events: auto;
    margin-bottom: 30px;
}

.centered-content h3 {
    text-align: left;
    font-size: 4.5rem;
    color: #ffffff;
    width: 14ch; /* set width to fit 11 characters */
    white-space: nowrap; /* prevent wrapping */
    overflow: hidden; /* hide overflowing content */
    text-overflow: ellipsis; /* show ellipsis (...) for overflow */
}

.small{
    width: 200px;
    height: 50px;
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    color: #ffffff;
    background-color: #3578fa;
    border-radius: 5px;
    padding: 5px;
}
.em{
    padding-left: 40%;
    position: relative;
    margin-top: -50px;
    color: #ffffff;
    font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
    .info {
        padding-right: 20%;
        margin-top: 110px;
    }
    .small {
        width: 100px;
        height: 25px;
        font-size: 0.75rem;
    }
    .centered-content h3 {
        text-align: left;
        font-size: 2.5rem;
        width: 11ch; /* set width to fit 11 characters */
        white-space: nowrap; /* prevent wrapping */
        overflow: hidden; /* hide overflowing content */
        text-overflow: ellipsis; /* show ellipsis (...) for overflow */
    }
    .em {
        margin-top: -30px;
        padding-left: 75%;
        font-size: 0.75rem;
    }
    .reviews_summary {
        height: 200px;
    }
}
        .ratingstar5{
            color:green;
        }
        .ratingstar4{
            color:rgba(120, 228, 47, 0.979);
        }
        .ratingstar3{
            color:yellow;
        }
        .ratingstar2{
            color:rgb(255, 166, 0);
        }
        .ratingstar1{
            color:red;
        }
  
   
    /* Define the keyframe animation */
    