.reviewBannersec{
    padding: 50px 0 57px;
    background: linear-gradient(90deg, #FAFDFF 27.31%, #F4FFFB 100%);
}
.reviewBannersec h1{
    font-family: 'DM Serif Display';
    font-weight: 400;
    font-size: 35px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 15px;
        color: #1C3D5A;
}
.reviewBannersec p{
    font-family: Lato;
    font-weight: 500;
    font-size: 17px;
    line-height: 180%;
    letter-spacing: 0%;
    text-align: center;
    color: #6B6E98;
    max-width: 1008px;
    margin: 0 auto;
}
.reviewcardWrap{
    padding: 60px 0;
    display: flex;
    max-width: 1020px;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px 0;
    margin: 0 auto;
}
.reviewCard{
    padding:17px  10px 21px 24px;
    max-width: 485px;
    width: 100%;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:#F8FCFF;
    position: relative;
    border-radius: 15px;
     border: 1px solid #DEF1FF;
}
.reviewCard::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-bottom-right-radius: 50%;
    background: #F8FCFF;
    box-shadow: 4px 5px 0 #fff;
    border-bottom: 2px soild #fff;
    right: 58px;
    transform: rotate(0deg);
    bottom: -1px;
    z-index: 1;
    border: 1px solid #DEF1FF;
        border-top: none;
    border-left: none;
}
.reviewCard::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-bottom-right-radius: 50%;
    background: #F8FCFF;
    box-shadow: 4px 5px 0 #fff;
    right: -1px;
    transform: rotate(0deg);
    bottom: 58px;
    z-index: 1;
    border: 1px solid #DEF1FF;
    border-top: none;
    border-left: none;
}
.reviewCard:hover::before {
    border: 1px solid #8CA9B1;
    border-top: none;
    border-left: none;
    right: 57px;
    bottom: -1px;
}
.reviewCard:hover::after {
    border: 1px solid #8CA9B1;
    border-top: none;
    border-left: none;
    right: -1px;
    bottom: 57px;
}
.reviewCard:hover {
    border: 1px solid #8CA9B1;
}
.reviewCard .stars{
padding-bottom: 16px;
}
.reviewCard .title{
    font-family: Lato;
    font-weight: 700;
    font-size: 17px;
    line-height: 180%;
    padding-bottom: 9px;
    color: #1C3D5A;
}
.reviewCard .quote{
font-family: Lato;
font-weight: 500;
font-size: 16px;
line-height: 180%;
color: #6B6E98;
}
.reviewCard .author{
    display: flex;
    gap: 11.53px;
    align-items: center;
}
.reviewCard .author img{
    width: 45px;
    height: 45px;
}
.author-info .name{
font-family: Lato;
font-weight: 500;
font-size: 18px;
line-height: 150%;
color: #1C3D5A;
}
.author-info .location{
    font-family: Lato;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #6B6E98;
}
.quoteIcon{
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 61px;
    height: 62px;
    background: white;
    border-top-left-radius: 35px;
     border: 1px solid #DEF1FF;
    border-bottom: none;
    border-left: none;
    border-right: none;
}
.card-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    width: 47px;
    height: 47px;
    background: #F2F9FF;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.quoteIcon img{
    position: relative;
    top: 3px;
    left: 1px;
    width: 39px;
    height: 39px;
}
.reviewCard:hover .quoteIcon {
    border: 1px solid #8CA9B1;
  
    border-bottom: none;
    border-left: none;
    border-right: none;
}
@media (max-width:1024px){
    .reviewcardWrap {
        max-width: 800px;
        justify-content: center;
    }
}
@media (max-width:575px){
.reviewBannersec h1{
       font-size: 28px; 
}
.reviewBannersec p{
        font-size: 16px;
}
.reviewCard{
    padding: 18px 20px;
    min-height: unset;
}
.reviewDetail{
margin-bottom: 40px;
}
.reviewCard .quote{
    font-size: 15px;
}
.reviewCard .title{
    padding-bottom: 5px;
}
.reviewCard .stars {
    padding-bottom: 10px;
}
.reviewcardWrap{
    gap: 40px 0;
}
}