.review-banner{
    width:100%;
    height:499px;
    background-image: url(/img/reviewbanner.jpg);
    background-size:cover;
    background-repeat: no-repeat;
    overflow: hidden;
    display:flex;
    align-items: center;
    position:relative;
    z-index:1;
}
.review-banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; 
    z-index: 2;
    pointer-events: none;
    background-color: rgba(255, 102, 144, 0.5);
}
.review-title{
    font-size:3rem;
    font-weight: bold;
    color:white;
    text-align: center;
    width:100%;
    display:block;
    z-index:3;
}
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-items: center;
    padding: 20px;
}
.review-box{ 
    height:490px;
    background-color:var(--primary-one);
    float:left; 
    border-radius: 8px;
    padding: 15px;
    max-width: 320px;  
}
.review-pic{
    width:200px;
    height:200px; 
    overflow:hidden;
    border-radius:100px;
    border:3px solid white;
    margin: 0 auto;
}
.review-picture{
    width:200px;
    height:200px;
}
.review-text{
    font-style: italic;
    color: white;
    padding: 20px 0;
    line-height: 1.7rem;
    text-align: center;
    font-size: 1.1rem;
}
.review-source{
    font-weight:bold;
    color:white;
    padding:10px 0;
    line-height:25px;
    text-align:center;
    font-size:1.1rem;
}
/****************************************************/
.review-box-full{ 
    height:max-content;
    float:left; 
    border-radius: 8px;
    padding: 15px;
    max-width: 320px;  
}
.review-pic-full{
    width:200px;
    height:200px; 
    overflow:hidden;
    border-radius:100px;
    border:3px solid var(--primary-two);
    margin: 0 auto;
}
.review-picture-full{
    width:200px;
    height:200px;
}
.review-text-full{
    font-style: italic;
    color: gray;
    padding: 20px 0;
    line-height: 1.4rem;
    text-align:left;
    font-size: 0.9rem;
}
.review-source-full{
    font-weight:bold;
    color:var(--primary-two);
    padding:10px 0;
    line-height:25px;
    text-align:left;
    font-size:1.1rem;
}