.f-carousel.carousel-reviews {
	--f-carousel-slide-width: calc((100% - 10px) / 3);
}

.f-carousel.carousel-reviews .f-carousel__card {
	height: 100%;
	max-height: 295px;
	overflow: hidden;
}

/* === modal === */
.eit-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);

    display: none;
    justify-content: center;
    align-items: center;
}

.eit-modal.eit-modal--active {
    display: flex;
}

.eit-modal-dialog {
    width: 100%;
    max-width: 856px;
    max-height: 95%;

    background-color: #f8f8f8;
    border-radius: 30px;
    padding: 24px;
}

.eit-modal-content {
    max-height: 100%;
    overflow-y: auto;
}

.eit-modal-header {
    display: flex;
    align-items: center;
    width: 100%;
}

.eit-modal-close {
    display: block;
    margin-left: auto;
}

.modal-review-title {
	margin: 24px 0;
	font-family: 'HeuristicaRegular';
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    font-style: italic;

	background: -webkit-linear-gradient(267.7deg, #1c4236 0.8%, #4d7564 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-review-city {
	font-size: 15px;
	line-height: 21px;
	color: #797979;
	text-align: center;
	margin-bottom: 40px;
}

.modal-review-text {
	text-align: center;
	color: #797979;
	max-width: 606px;
	margin: 0 auto 60px;
}

@media (max-width: 992px) {
    .f-carousel.carousel-reviews {
        --f-carousel-slide-width: calc((100% - 10px) / 2);
    }
}

@media (max-width: 575px) {
    .f-carousel.carousel-reviews {
        --f-carousel-slide-width: calc((100% - 10px) / 1);
    }
}