.gr-carousel-wrap{
    position:relative;
    width:100%;
    max-width:100%;
    margin:0 auto;
    padding:0 70px;
    box-sizing:border-box;	
}

.gr-swiper{
	width:100%;
    overflow:hidden;    
}

.swiper-wrapper{
    align-items:stretch;
}


/*  SLIDES  */

.swiper-slide{
    height:auto;
    display:flex;
}

/* CARD */

.gr-review{
    width:100%;
	height: 100%;
	background:#fff;
	border-radius:20px;
    padding:24px;
	box-sizing:border-box;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    transition:.3s ease;
}

.gr-review:hover{
    box-shadow:0 8px 24px rgba(0,0,0,.08);
}

/* HEADER */

.gr-review-header{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.gr-review-header img{
    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;
}

.gr-author{
    font-size:18px;
    font-weight:700;
    line-height:1.2;
}

.gr-stars{
    color:#FDBA12;
    font-size:24px;
    letter-spacing:2px;
    margin-top:18px 0 14px;
	line-height: 1;
}

/* REVIEW TEXT */

.gr-content{
    font-size:16px;
    line-height:1.7;
    color:#444;
}

/* ARROWS */

.gr-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#8d8d8d;
    cursor:pointer;
    z-index:50;
    transition:.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gr-arrow-prev{
    left:0;
}

.gr-arrow-next{
    right:0;
}

/* CHEVRONS */

.gr-arrow-prev::before,
.gr-arrow-next::before{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    width:12px;
    height:12px;
    border-top:3px solid #2273AA;
    border-right:3px solid #2273AA;
}

.gr-arrow-prev::before{
    transform:translate(-30%,-50%) rotate(-135deg);
}

.gr-arrow-next::before{
    transform:translate(-70%,-50%) rotate(45deg);
}

/* PAGINATION */

.swiper-pagination{
    position:relative;
    margin-top:30px;
}

.swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#2273AA;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#8CBCDB;
}

.gr-review-meta{
    display:flex;
    flex-direction:column;
}

.gr-review-date{
    display:flex;
    align-items:center;
    gap:6px;    
    line-height:1;
}

.gr-google-text{
    color:#888;
}

.gr-google-logo{
    width:48px;
    height:auto;
    display:block;
	position: relative;	
}

.gr-carousel-wrap .gr-arrow{
    border:none;
    outline:none;
    background:transparent;        
}

.gr-carousel-wrap .gr-arrow:hover{
    background:transparent;
    border:none;    
}

.gr-carousel-wrap .gr-arrow:focus,
.gr-carousel-wrap .gr-arrow:active{
    border:none;
    outline:none;
    background:transparent;        
}



/* MOBILE */

@media(max-width:767px){

    .gr-carousel-wrap{
        padding:0 20px;
    }

    .gr-arrow{
        display:none;
    }

    .gr-review{
        min-height:auto;
    }

}