

/* Start:/css/grid-reviews.css?17372869781705*/
@charset "UTF-8";
.grid-reviews, .grid-reviews .el {
		list-style: none;
		margin: 0;
		padding: 0;
}
.grid-reviews {
		display: grid;
		gap: 20px;
}
@media only screen and (max-width: 767px) {
		.grid-reviews {
				grid-template-columns: repeat(1, 1fr);
		}
		@media only screen and (min-width: 670px) {
				.grid-reviews {
						grid-template-columns: repeat(2, 1fr);
				}
		}
}
@media only screen and (min-width: 768px) and (max-width: 999px) {
		.grid-reviews {
				grid-template-columns: repeat(2, 1fr);
		}
}
@media only screen and (min-width: 1000px) {
		.grid-reviews {
				grid-template-columns: repeat(3, 1fr);
		}
}
.grid-reviews .el:before {
		display: none;
}
.grid-reviews .el {
		display: flex;
		flex-direction: column;
}
.grid-reviews .el > * {
		flex: 1 0 auto;
		width: 100%;
}
.grid-reviews-photos, .grid-reviews-photos li {
		list-style: none;
		margin: 0;
		padding: 0;
}
.grid-reviews-photos {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(167px, 1fr));
		gap: 20px;
}
.grid-reviews-photos li {
		margin: 0 auto;
		width: 100%;
		max-width: 225px;
}
.grid-reviews-photos a {
		display: block;
		position: relative;
		aspect-ratio: 167/230;
}
.grid-reviews-photos a:after {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		border-radius: var(--radius);
		border: 3px solid var(--lightblue);
		pointer-events: none;
		opacity: 0;
		transition: opacity 0.4s ease;
}
@media (pointer:fine) {
		.grid-reviews-photos a:hover:after {
				opacity: 1;
		}
}
.grid-reviews-photos img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		border-radius: var(--radius);
		border: 1px solid var(--darkblue);
}
/* End */


/* Start:/css/review-card.css?17372869781377*/
@charset "UTF-8";
.review-card {
		display: flex;
		flex-direction: column;
		position: relative;
		border: 1px solid var(--darkblue);
		background: var(--white);
		border-radius: var(--radius);
		padding: 47px 19px 19px 19px;
		transition: border 0.4s ease;
		margin: 0;
		gap: 10px;
}
@media only screen and (max-width: 767px) {
		.review-card {
				padding: 43px 15px 15px 15px;
		}
}
.review-card:after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		border: 3px solid var(--lightblue);
		pointer-events: none;
		transition: opacity 0.4s ease;
		margin: -1px;
		border-radius: var(--radius);
		opacity: 0;
}
@media (pointer:fine) {
		.review-card:hover:after {
				opacity: 1;
		}
}
.review-card .place, .review-card .date {
		position: absolute;
		top: 0;
		margin: 19px;
}
@media only screen and (max-width: 767px) {
		.review-card .place, .review-card .date {
				margin: 15px;
		}
}
.review-card .place {
		left: 0;
		right: 100px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
}
.review-card .date {
		right: 0;
}
.review-card .name {
		order: 1;
		font: 600 var(--bold-text)/1.5 var(--font1);
		color: var(--darkblue);
}
.review-card .text {
		order: 2;
		margin: 0;
		padding: 0;
		font: 500 var(--small-text)/1.5 var(--font2);
		color: var(--grey);
		border: 0;
		background: none;
		text-wrap: auto;
}
/* End */


/* Start:/css/pagination.css?17373773881489*/
@charset "UTF-8";
.pagination {
		display: flex;
		align-items: center;
		gap: 20px;
		margin-top: 40px;
		overflow: hidden;
		display: inline-flex;
}
@media only screen and (max-width: 767px) {
		.pagination {
				gap: 16px;
				margin-top: 20px;
		}
}
@media only screen and (min-width: 768px) and (max-width: 999px) {
		.pagination {
				margin-top: 20px;
		}
}
.pagination .dots {
		pointer-events: none;
}
.pagination .btn {
		padding: 0;
		width: 30px;
		height: 30px;
		font-size: 14px;
		justify-content: center;
		font-family: var(--font2);
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
		.pagination .btn {
				font-size: 16px;
				width: 36px;
				height: 36px;
		}
}
@media only screen and (min-width: 1500px) {
		.pagination .btn {
				font-size: 16px;
				width: 40px;
				height: 40px;
		}
}
.pagination .btn svg {
		width: 16px;
		height: 16px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
		.pagination .btn svg {
				width: 20px;
				height: 20px;
		}
}
@media only screen and (min-width: 1500px) {
		.pagination .btn svg {
				width: 24px;
				height: 24px;
		}
}
.pagination .btn.active {
		border-color: var(--lightblue);
		background-color: var(--lightblue);
		color: var(--darkblue);
}
@media only screen and (max-width: 521px) {
		.pagination .prev-prev, .pagination .next-next {
				display: none;
		}
}
@media only screen and (max-width: 429px) {
		.pagination .prev, .pagination .next {
				display: none;
		}
}
/* End */


/* Start:/css/reviews-page.css?1737286978981*/
@charset "UTF-8";
.reviews-page {
		position: relative;
}
.reviews-head {
		display: grid;
		gap: 20px;
		margin: 0 0 40px 0;
}
@media only screen and (min-width: 768px) {
		.reviews-head {
				grid-template-columns: 1fr 180px;
		}
}
@media only screen and (min-width: 768px) and (max-width: 999px) {
		.reviews-head {
				margin-bottom: 20px;
		}
}
.reviews-head > * {
		margin: 0 !important;
}
@media only screen and (max-width: 767px) {
		.reviews-head .logo {
				display: none;
		}
}
@media only screen and (min-width: 768px) {
		.reviews-head .logo {
				grid-area: 1/2/3/3;
		}
}
.reviews-head .logo img {
		width: 100%;
		height: auto;
		max-width: 180px;
}
.reviews-head h1, .reviews-head .h1 {
		margin-bottom: auto !important;
}
.reviews-head .tabs-slider {
		margin-top: auto !important;
}
.reviews-page .text-about {
		margin: 0 0 40px 0;
}
@media only screen and (min-width: 768px) and (max-width: 999px) {
		.reviews-page .text-about {
				margin-bottom: 20px;
		}
}
/* End */


/* Start:/css/lightbox.min.css?17365642643102*/
.lb-loader, .lightbox {
		text-align: center;
		line-height: 0;
		position: absolute;
		left: 0
}
body.lb-disable-scrolling {
		overflow: hidden
}
.lightboxOverlay {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 9999;
		background: rgba(51, 51, 51, 0.5);
		backdrop-filter: blur(10px);
		display: none
}
.lightbox {
		width: 100%;
		z-index: 10000;
		font-weight: 400;
		outline: 0
}
.lightbox .lb-image {
		display: block;
		height: auto;
		max-width: inherit;
		max-height: none;
		border-radius: 3px;
		border: 4px solid #fff
}
.lightbox a img {
		border: none
}
.lb-outerContainer {
		position: relative;
		width: 250px;
		height: 250px;
		margin: 0 auto;
		border-radius: 4px;
		background-color: #fff
}
.lb-outerContainer:after {
		content: "";
		display: table;
		clear: both
}
.lb-loader {
		top: 43%;
		height: 25%;
		width: 100%
}
.lb-cancel {
		display: block;
		width: 32px;
		height: 32px;
		margin: 0 auto;
		background: url(/css/../img/lightbox/loading.gif) no-repeat
}
.lb-nav {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		z-index: 10
}
.lb-container > .nav {
		left: 0
}
.lb-nav a {
		outline: 0;
		background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)
}
.lb-next, .lb-prev {
		height: 100%;
		cursor: pointer;
		display: block
}
.lb-nav a.lb-prev {
		width: 34%;
		left: 0;
		float: left;
		background: url(/css/../img/lightbox/prev.png) left 48% no-repeat;
		filter: alpha(Opacity=0);
		opacity: 0;
		-webkit-transition: opacity .6s;
		-moz-transition: opacity .6s;
		-o-transition: opacity .6s;
		transition: opacity .6s
}
.lb-nav a.lb-prev:hover {
		filter: alpha(Opacity=100);
		opacity: 1
}
.lb-nav a.lb-next {
		width: 64%;
		right: 0;
		float: right;
		background: url(/css/../img/lightbox/next.png) right 48% no-repeat;
		filter: alpha(Opacity=0);
		opacity: 0;
		-webkit-transition: opacity .6s;
		-moz-transition: opacity .6s;
		-o-transition: opacity .6s;
		transition: opacity .6s
}
.lb-nav a.lb-next:hover {
		filter: alpha(Opacity=100);
		opacity: 1
}
.lb-dataContainer {
		margin: 0 auto;
		padding-top: 5px;
		width: 100%;
		border-bottom-left-radius: 4px;
		border-bottom-right-radius: 4px
}
.lb-dataContainer:after {
		content: "";
		display: table;
		clear: both
}
.lb-data {
		padding: 0 4px;
		color: #ccc
}
.lb-data .lb-details {
		width: 85%;
		float: left;
		text-align: left;
		line-height: 1.1em
}
.lb-data .lb-caption {
		font-size: 13px;
		font-weight: 700;
		line-height: 1em
}
.lb-data .lb-caption a {
		color: #4ae
}
.lb-data .lb-number {
		display: block;
		clear: left;
		padding-bottom: 1em;
		font-size: 12px;
		color: #999
}
.lb-data .lb-close {
		display: block;
		float: right;
		width: 30px;
		height: 30px;
		background: url(/css/../img/lightbox/close.png) top right no-repeat;
		text-align: right;
		outline: 0;
		filter: alpha(Opacity=70);
		opacity: .7;
		-webkit-transition: opacity .2s;
		-moz-transition: opacity .2s;
		-o-transition: opacity .2s;
		transition: opacity .2s
}
.lb-data .lb-close:hover {
		cursor: pointer;
		filter: alpha(Opacity=100);
		opacity: 1
}
/* End */
/* /css/grid-reviews.css?17372869781705 */
/* /css/review-card.css?17372869781377 */
/* /css/pagination.css?17373773881489 */
/* /css/reviews-page.css?1737286978981 */
/* /css/lightbox.min.css?17365642643102 */
