.btn-partners{
    outline: none!important;
    border: none;
    padding: 15px 25px;
    color: #130d41;
    cursor: pointer;
    opacity: .4;
    background:transparent;
    min-width: fit-content;

}
.rounded-full{
    border-radius: 9999px;
}
.btn-partners.active{
    border-radius: 9999px;
    opacity: 1;
    box-shadow: 0 6px 30px rgb(14 30 62 / 8%);
}
.Stars {
	--percent: calc(var(--rating) / 5 * 100%);
	display: inline-block;
	font-size: var(--star-size);
	font-family: Times;
	line-height: 1;
}
.carousel-wrapper {
    overflow: hidden;
    width: 90%;
}
@media screen and (max-width: 500px) {
    .carousel-wrapper {
        width: 100%;        
    }
}
.carousel-wrapper * {
    box-sizing: border-box;
}

/* We'll be using the 'transform' property to move the carousel's items, so setting the 'transform-style' to 'preserve-3d' will make sure our nested elements are rendered properly in the 3D space. */
.carousel {
    -webkit-transform-style: preserve-3d!important;
    -moz-transform-style: preserve-3d!important;
    transform-style: preserve-3d!important;
    width: 100%;
}
.carousel__photo {
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: transform .5s, opacity .5s, z-index .5s;
}

.carousel__photo.initial,
.carousel__photo.active
{
    opacity: 1;
    position: relative;
    z-index: 900;
}
/* Set 'z-index' to sit behind our '.active' item. */
.carousel__photo.prev,
.carousel__photo.next {
    z-index: 800;
}
/* Translate previous item to the left */
.carousel__photo.prev {
    transform: translateX(-100%);
}
/* Translate next item to the right */
.carousel__photo.next {
    transform: translateX(100%);
}
.box-review{
    min-height: 600px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.carousel__button--prev {
    left: 0;
    transform: translateY(-50%) rotate(180deg);
}
.carousel-mobile__button--prev {
    transform: rotate(180deg);
}
.carousel__button--next {
    right: 0;
    transform: translateY(-50%);
}
.carousel-mobile__button--next, .carousel-mobile__button--prev {
    opacity: .6;
}
.max-w-xl {
    max-width: 36rem;
}
.carousel__button--next, .carousel__button--prev {
    position: absolute;
    display: flex;
    opacity: 0.4;
    top: 50%;
    background-color: transparent;
    
    cursor: pointer;
    z-index: 1001;
}
.carousel-mobile__button--prev.active,
.carousel-mobile__button--next.active,
.carousel__button--next.active,
.carousel__button--prev.active
{
    opacity: 1;
}
.rounded-icon {
    height: 140px;
    width: 140px;
    background-color: gray;
    border-radius: 9999px;
}
#navbar-partners{
    overflow-x: scroll;
    flex-wrap: nowrap;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
}
@media screen and (min-width: 600px) {
    #navbar-partners{
        overflow-x: visible;
        flex-wrap: wrap; 
        padding-bottom: 0px;   
    }
}

.Stars::before {
	content: '★★★★★';
	letter-spacing: 3px;
	background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
