/* background-color: #ffffffba;
    backdrop-filter: blur(30px); */

@font-face {
	font-family: 'Stolzl';
	src: url('./fonts/stolzl_thin.otf') format('opentype');
	font-weight: 100;
	font-style: normal;
}


@font-face {
	font-family: 'Stolzl';
	src: url('./fonts/stolzl_light.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Stolzl';
	src: url('./fonts/stolzl_regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Stolzl';
	src: url('./fonts/stolzl_medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Stolzl';
	src: url('./fonts/stolzl_book.otf') format('opentype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Stolzl';
	src: url('./fonts/stolzl_bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
}

body,
html {
	margin: 0;
	box-sizing: border-box;
	font-family: Stolzl, sans-serif;
}

section {
	width: fit-content;
	margin: 7.931vw auto;
}

button {
	cursor: pointer;
}

a {
	text-decoration: none;
}

:root {
	--blue: #0A7FEC;
	--white-blue: #EDF4FB;
	--white: #FFFFFF;
	--black: #080808;
	--big-border: 2.083vw;
	--middle-border: 1.389vw;
	--low-border: 0.694vw;
	--font-size-h2: 3.333vw;
	--font-size-h3: 2.222vw;
	--font-size-h4: 1.389vw;
	--font-size-p: 1.25vw;
	--font-size-nav: 0.972vw;
	--transition: all .3s ease;
}

::selection {
	background-color: var(--black);
	color: var(--white);
}

.blue-select::selection {
	background-color: var(--white);
	color: var(--black);
}

h2 {
	font-size: var(--font-size-h2);
	font-weight: 500;
	line-height: 1.2;
}

h3 {
	font-size: var(--font-size-h3);
	line-height: 1.2;
}

h4 {
	font-size: var(--font-size-h4);
	line-height: 1.2;
}

p {
	font-family: 'Gilroy';
	font-weight: 400;
	font-size: var(--font-size-p);
	line-height: 1.2;
}

.title {
	margin-bottom: 3.333vw !important;
}

.btn {
	font-size: var(--font-size-p);
	padding: 1.111vw 1.667vw;
	text-decoration: none;
	border-radius: 100vw;
	border: none;
	transition: var(--transition);
	text-wrap-mode: nowrap;
}

.btn.cta {
	background-color: var(--black);
	color: var(--white);
}

.btn.secondary {
	background-color: var(--white-blue);
	color: var(--blue);
}

.btn.secondary:hover {
	background-color: var(--blue);
	color: var(--white);
}

.btn.cta:hover {
	background-color: var(--blue);
}

.btn.icon {
	display: flex;
	align-items: center;
}

.btn.icon svg {
	width: 1.2vw;
	margin-right: .5vw;
}

img,
.btn,
.unselect,
.tab-btn {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Загальні стилі */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 5vw;

	transition: var(--transition);
	background-color: var(--white-blue);
	border-bottom-right-radius: 1.389vw;
	border-bottom-left-radius: 1.389vw;
	display: flex;
	align-items: center;
	justify-content: center;

	z-index: 1000;
}

.header__inner {
	width: 90%;

	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo {
	display: flex;
	align-items: center;
	transition: var(--transition);
	text-decoration: none;
}

.header__logo svg {
	transition: var(--transition);
	width: 10.486vw;
	fill: var(--black);
	margin: 0;
}

.header__logo:hover svg,
.header__logo:hover p {
	color: var(--blue);
	fill: var(--blue)
}

.header__logo:hover svg {
	animation-name: logo;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@keyframes logo {
	0% {
		rotate: 0deg;
		transform: translateX(0);
	}

	30% {
		rotate: 1deg;
		transform: translateX(5px);
	}

	60% {
		rotate: -1deg;
		transform: translateX(-5px);
	}

	100% {
		rotate: 0deg;
		transform: translateX(0);
	}
}

.header__logo p {
	transition: var(--transition);
	font-size: var(--font-size-nav);
	text-decoration: none;
	color: var(--black);
	opacity: .6;
	margin-left: 1.111vw;
}

.header__nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0.833vw;
}

.header__nav ul li a {
	opacity: .6;
	text-decoration: none;
	color: var(--black);
	font-size: var(--font-size-nav);
	transition: color 0.3s ease;
	font-weight: 400;
}

.header__nav ul li a:hover {
	color: var(--blue);
}

.header__socials {
	display: flex;
	gap: 10px;
}

.social-icon {
	width: 1.667vw;
	height: 1.667vw;
	padding: 0.833vw;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 0.1vw solid var(--blue);
	border-radius: 50%;
	text-decoration: none;
	color: var(--blue);
	font-size: 1.2rem;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
	background-color: var(--blue);
	color: #fff;
}

/* Адаптація для мобільних */
@media (max-width: 768px) {
	.header__nav ul {
		flex-direction: column;
		gap: 10px;
	}
}

.hero {
	margin-top: 6vw;
	position: relative;
}

.hero__content {
	position: absolute;
	left: 2.778vw;
	bottom: 2.778vw;
	padding: 2.5vw;
	border-radius: var(--middle-border);
	max-width: 35vw;
	z-index: 1;
	background-color: var(--white);
}

.hero__content h1 {
	font-size: 2.222vw;
	font-weight: 500;
	margin-bottom: 1.111vw;
	color: var(--black);
	line-height: 1.2;
}

#hero .hero__content p {
	margin-bottom: 2.222vw;
	color: var(--black);
}

.hero__buttons {
	display: flex;
	gap: 2vw;
}

.hero__video {
	position: relative;
	border-radius: 15px;
}

.hero__video video {
	width: 97.222vw;
	height: 85vh;
	object-fit: cover;
	border-radius: var(--big-border);
}

/* Адаптація для мобільних */
@media (max-width: 768px) {
	.hero {
		grid-template-columns: 1fr;
	}

	.hero__content {
		text-align: center;
	}

	.hero__buttons {
		flex-direction: column;
	}
}


/* Загальні стилі */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 127, 236, 0.6);
	backdrop-filter: blur(20px);
	z-index: 999;
	justify-content: center;
	align-items: center;
}

.modal__flex,
.modal.active {
	display: flex;
	flex-direction: column;
}

.modal.service .modal__content {
	width: 60.556vw;
}

.modal.service .modal__content form {
	max-width: 100%;
}

.modal__content form .btn {
	text-align: start;
}

.hero__content__footer h3,
.modal__content h3 {
	font-weight: 500;
}

.modal.service .modal__content h3 {
	margin-top: 2.222vw;
	font-weight: 500;
}

.modal__content {
	background: #fff;
	padding: 5.556vw 2.292vw 2.917vw 2.292vw;
	border-radius: 15px;
	position: relative;
}

.modal__close {
	position: absolute;
	top: 2.917vw;
	right: 2.222vw;
	background: none;
	border: none;
	font-size: 0.972vw;
	font-weight: 100;
	cursor: pointer;
}

.modal__close img {
	width: 0.972vw;
	height: 0.972vw;
	pointer-events: none;
}

.modal__content h2 {
	margin: 0 0 1rem;
}

form {
	max-width: 24.444vw;
	display: flex;
	flex-direction: column;
	gap: 0.556vw;
	width: 100%;
	margin: 2.222vw 0;
}

input {
	padding: 1.389vw 2.222vw;
	border: .1vw solid var(--black);
	border-radius: 100vw;
	font-size: 0.972vw;
}

.modal__footer {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	gap: 2.222vw;
}

.modal__footer p {
	margin-bottom: 0.694vw;
	font-size: var(--font-size-p);
}

.modal__footer a {
	text-decoration: none;
	color: var(--black);
	font-size: 1.389vw;
	font-weight: 500;
	transition: var(--transition);
}

.modal__footer a:hover {
	color: var(--blue);
}

.modal__socials {
	display: flex;
	gap: 10px;
}

#consultationModal input {
	width: 86%;
}

#consultationModal .modal__content form .btn {
	width: 105%;
}

/*  */

.properties {
	max-width: 90%;
	background-color: var(--white);
}

.properties h2 {
	font-size: var(--font-size-h2);
	color: var(--black);
	text-align: center;
	max-width: 65%;
	margin: auto;
}

.properties__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
	gap: 1.667vw;
}

.search-options .btn {
	width: fit-content;
	margin: auto;
	margin-top: 3vw;
}

.property-card {
	background: var(--white-blue);
	border-radius: var(--low-border);
	overflow: hidden;
	transition: var(--transition);
	/* height: fit-content; */
}

.property-card__image {
	position: relative;
}

.property-card__image img {
	border-radius: var(--low-border);
	margin: 0.417vw;
	width: 20.3vw;
	height: auto;
}

.badge {
	position: absolute;
	top: 0.972vw;
	left: 0.972vw;
	padding: 0.694vw 1.111vw;
	font-size: var(--font-size-nav);
	border-radius: var(--big-border);
	color: var(--white);
}

.badge--rent,
.badge--sale {
	background-color: var(--black);
}

.property-card__info {
	padding: 1.111vw;
	padding-bottom: 2.222vw;
}

.property-card__info h4 {
	margin-bottom: 0.833vw;
	font-weight: 500;
}

.property-card__details {
	font-size: 0.972vw;
	margin-bottom: 0.833vw;
}

.property-card:hover {
	background-color: var(--blue);
	color: var(--white);
}

.property-card__price,
.property-card__details,
.property-card__info h4 {
	transition: var(--transition);
	color: var(--black);
}

.property-card__price {
	font-size: var(--font-size-h4);
	font-weight: bold;
	color: var(--blue);
}

.property-card:hover .property-card__price,
.property-card:hover .property-card__details,
.property-card:hover .property-card__info h4 {
	color: var(--white);
}


/*  */

.search-options {
	width: 90%;
	padding: 20px;
	background-color: var(--white);
}

.search-options h2 {
	color: var(--black);
	margin-bottom: 1.667vw;
}

.search-options__buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	justify-content: space-between;
	margin-bottom: 3.333vw;
}

.search-options__buttons .btn {
	border-radius: 1.389vw;
	margin-right: 0.694vw;
	transition: var(--transition);
}

.search-options__buttons .btn:hover {
	color: var(--blue);
}

.search-options__buttons .btn:last-child {
	margin-right: 0;
}

/* .btn {
		padding: 10px 20px;
		font-size: var(--font-size-p);
		color: var(--black);
		background-color: var(--white-blue);
		border: none;
		border-radius: var(--middle-border);
		cursor: pointer;
		transition: var(--transition);
	}
	
	.btn:hover {
		background-color: var(--blue);
		color: var(--white);
	} */

.btn--active {
	background-color: var(--blue);
	color: var(--white);
}

.btn.btn--active:hover {
	color: var(--white);
}

/*  */

.legal-services {
	padding: 20px;
	width: 90%;
	background-color: var(--white);
	color: var(--black);
}

.legal-services h2 {
	text-align: center;
}

.legal-services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
	gap: 1.667vw;
}

.service-card {
	position: relative;

	background-color: var(--white-blue);
	border-radius: var(--low-border);
	padding: 3.333vw 2.222vw;
	padding-bottom: 6.319vw;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.service-card__icon {
	font-size: 2rem;
	color: var(--blue);
	margin-bottom: 15px;
}

.service-card h3 {
	font-size: var(--font-size-h4);
	transition: var(--transition);
	font-weight: 500;
	color: var(--black);
	margin: 0 0 15px;
}

.service-card__link {
	position: absolute;
	bottom: 3.333vw;

	font-size: 1.05vw;
	transition: var(--transition);
	font-weight: 400;
	text-decoration: none;
	color: var(--black);
	display: flex;
	align-items: center;
	gap: 5px;
}

.service-card__link span {
	transition: var(--transition);
}

.service-card__link:hover {
	color: var(--black);
}

.service-card:hover {
	background-color: var(--blue);
}

.service-card:hover .service-card__link,
.service-card:hover h3 {
	color: var(--white);
}

.service-card:hover span {
	rotate: -45deg;
}

/*  */

.help-section {
	position: relative;
	width: 90%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--blue);
	border-radius: var(--middle-border);
	color: var(--white);
	margin: 20px auto;
}

.help-section .bg {
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	/* rotate: -90deg; */
}

.help-section .bg img {
	height: 22.083vw
}

.help-section__content {
	padding: 5vw 7.778vw;
	padding-right: 0;
	width: 52.778vw;
	max-width: 70%;
}

.help-section__content h2 {
	font-size: var(--font-size-h2);
	margin-bottom: 1.111vw;
}

.help-section__content p {
	font-size: var(--font-size-p);
	margin: 0;
}

.help-section__action {
	flex-shrink: 0;
}

.help-section .btn {
	background-color: var(--white-blue);
	margin-right: 7.778vw;
}

.help-section .btn:hover {
	color: var(--blue);
	background-color: var(--white);
}

/* .btn--secondary {
		padding: 10px 20px;
		font-size: var(--font-size-p);
		background-color: var(--white-blue);
		color: var(--blue);
		border-radius: var(--middle-border);
		text-decoration: none;
		transition: var(--transition);
	}
	
	.btn--secondary:hover {
		background-color: var(--white);
		color: var(--blue);
		transform: scale(1.05);
	} */


/*  */


.advantages {
	width: 90%;
	padding: 20px;
	text-align: center;
	background-color: var(--white);
}

/* .advantages h2 {
		font-size: var(--font-size-h3);
		color: var(--black);
		margin-bottom: 30px;
	} */

.advantages__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
	gap: 1.667vw;
}

.advantage-card {
	background-color: var(--white-blue);
	border-radius: var(--low-border);
	padding: 3.333vw 2.222vw 4.792vw 2.222vw;
	text-align: left;
	transition: var(--transition);
}

.advantage-card:hover {
	transform: translateY(-5px);
}

.advantage-card__icon {
	font-size: 2rem;
	color: var(--blue);
	margin-bottom: 15px;
}

.advantage-card h4 {
	font-weight: 500;
	color: var(--black);
	margin: 1.528vw 0;
}

.advantage-card p {
	font-size: var(--font-size-p);
	color: var(--black);
}

/*  */

.reviews {
	width: 90%;
	padding: 20px;
	text-align: center;
	background-color: var(--white);
}

.reviews__grid {
	column-count: 4;
	column-gap: 1.667vw;
}

.review-card {
	background-color: var(--white-blue);
	border-radius: var(--low-border);
	padding: 3.333vw 2.222vw;
	transition: var(--transition);
	text-align: left;

	display: inline-block;
	column-break-inside: avoid;
	margin-bottom: 1.667vw;
}

.review-card:hover {
	transform: translateY(-5px);
}

.review-card h3 {
	font-size: var(--font-size-h4);
	color: var(--black);
	margin-bottom: 10px;
}

.review-card p {
	font-size: var(--font-size-p);
	color: var(--black);
}

.review-card span {
	font-size: var(--font-size-p);
	color: var(--blue);
}

.review-card {
	height: fit-content;
}

.review-card:nth-child(1) {
	grid-row: span 2;
}

.stars {
	display: flex;
	align-items: center;
	margin-bottom: 0.833vw;
}

.stars img {
	height: 1.111vw;
}

.stars p {
	font-size: 0.972vw;
	margin-left: 0.556vw;
}



/*  */


.specialization {
	width: 90%;
	padding: 20px;
}

.specialization h3 {
	font-weight: 500;
}

.tabs {
	display: flex;
	gap: 0.694vw;
	margin-bottom: 0.833vw;
}

.tab-btn {
	padding: 1.389vw 2.5vw;
	background: var(--white-blue);
	border: none;
	border-radius: var(--middle-border);
	cursor: pointer;
	font-size: var(--font-size-p);
	transition: var(--transition);
}

.tab-btn:hover {
	color: var(--blue);
}

.tab-btn.active {
	background: var(--blue);
	color: var(--white);
}

.tab-panel {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tab-panel .wrapper__panel {
	max-width: 46.667vw;
	padding: 7.083vw 0 7.083vw 6.111vw;
}

.tab-panel .bg {
	pointer-events: none;
	position: absolute;
	height: 100%;
	right: 0;
	top: 0;
}

.tab-panel .bg img {
	height: 100%;
}

.wrapper__panel p {
	margin-top: 0.833vw;
	margin-bottom: 2.5vw;
}

.tab-content .tab-panel {
	display: none;
}

.tab-content .tab-panel.active {
	display: flex;
	background: var(--blue);
	color: var(--white);
	padding: 20px;
	border-radius: var(--middle-border);
}

.actions {
	display: flex;
}

.actions li {
	margin: 5px;
	padding: 0.694vw 1.111vw;
	background: var(--black);
	color: var(--white);
	border: none;
	border-radius: var(--big-border);
}

.tab-panel .btn {
	background-color: var(--white-blue);
	margin-right: 6.111vw;
}

.tab-panel .btn:hover {
	color: var(--blue);
	background-color: var(--white);
}

.hero.footer {
	margin-bottom: 0;
}

.hero.footer video {
	height: 44.375vw;
}

.hero.footer .hero__content {
	max-width: 32.222vw;
}

.hero__contacts p {
	display: flex;
	flex-direction: column;
	font-weight: 500;
	font-size: 1.389vw;
	padding: 1.111vw 0;
}

.hero__contacts strong {
	font-size: var(--font-size-p);
	font-weight: 400;
}

.hero__contacts .modal__flex p {
	font-weight: 400;
	padding: 0;
	margin-bottom: 0.694vw;
}

.hero__content__footer {
	position: absolute;
	right: 2.778vw;
	bottom: 2.778vw;
	padding: 2.5vw;
	border-radius: var(--middle-border);
	max-width: 34.889vw;
	z-index: 1;
	background-color: var(--white);
}

.hero__content__footer h3 {
	margin-bottom: 2.222vw;
}

.hero__content__footer .btn {
	text-align: start;
	padding: 1.389vw 2.222vw;
}

.map {
	margin: 1.389vw auto;
	width: 97.222vw;
	border-radius: var(--big-border);
	overflow: hidden;
}

.map iframe {
	width: 100%;
	height: 41.667vw;
}

.single .hero {
	margin-top: 0;
	margin-bottom: 1.389vw;
}

/* Базові стилі */
.product {
	width: 90%;
	padding: 20px;
	display: flex;
	gap: 1.667vw;
	flex-wrap: wrap;
}

.product__gallery {
	flex: 1;
	max-width: 50%;
}

.product__gallery .btn {
	background-color: var(--white-blue);
	border-radius: var(--low-border);
	color: var(--blue);

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.thumbnail {
	border: 0.139vw solid var(--white);
	transition: transform 0.3s, border 0.3s;
}

.thumbnail.active {
	border: 0.139vw solid var(--blue);
}

.product__image {
	width: 100%;
	height: auto;
	border-radius: var(--middle-border);
}

.product__thumbnails {
	display: flex;
	gap: 0.764vw;
	margin-top: 10px;
}

.product__thumbnails img {
	/* width: 6.806vw;
		height: 4.444vw; */
	width: 100%;
	height: 4.444vw;
	border-radius: var(--low-border);
	cursor: pointer;
	object-fit: cover;
	transition: var(--transition);
}

.product__info {
	flex: 1;
	max-width: 45%;
	background-color: var(--white-blue);
	border-radius: var(--middle-border);
	padding: 2.5vw;

	display: flex;
	flex-direction: column;
	gap: 2.222vw;
}

.product__info h1 {
	font-size: var(--font-size-h3);
	margin-bottom: 10px;
	font-weight: 500;
}

.product__info h4 {
	font-weight: 500;
}

.product__info p {
	line-height: 1;
	margin-bottom: 10px;
	font-size: var(--font-size-p);
}

p.price {
	color: var(--blue);
	font-weight: 500;
	font-size: var(--font-size-h4);
}

.shorts_info {
	display: flex;
	gap: 1.667vw;
}

/* .product__info .btn {
		display: inline-block;
		margin-top: 10px;
	} */

/* Модальне вікно */
/* .modal {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		background: rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		transition: var(--transition);
	}
	
	.modal.active {
		opacity: 1;
		visibility: visible;
	}
	
	.modal__content {
		background: var(--white);
		padding: 20px;
		border-radius: var(--middle-border);
		position: relative;
		max-width: 80%;
		width: 600px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	
	.modal__close {
		position: absolute;
		top: 10px;
		right: 10px;
		background: none;
		border: none;
		font-size: 24px;
		cursor: pointer;
	} */
#galleryModal .modal__content {
	max-width: 42vw;
	max-height: 38vw;
}

/* #galleryModal.modal.active {
		justify-content: flex-end;
	} */

.modal__gallery {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-left: 1.25vw;
	/* margin-bottom: 1.25vw;
	margin-top: 2.222vw; */
	height: 20vw;
	width: 100%;
}

.modal__gallery-wrapper {
	display: flex;
	margin-bottom: 2.222vw;
}

.modal__gallery {
	order: 1;
}

.modal__thumbnails {
	flex-direction: column;
}

.modal__gallery img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: var(--middle-border);
}

.modal__gallery .prev,
.modal__gallery .next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--white-blue);
	color: var(--blue);
	border: none;
	padding: 1.111vw 1.875vw;
	cursor: pointer;
	border-radius: var(--big-border);
}

.modal__gallery .prev {
	transform: rotate(180deg);
	left: 1.667vw;
}

.modal__gallery .next {
	right: 1.667vw;
}

.modal__thumbnails {
	display: flex;
	gap: 0.833vw;
}

.modal__thumbnails img {
	margin: 0 0.417vw;
	width: 100%;
	height: 4.444vw;
	border-radius: var(--low-border);
	cursor: pointer;
	object-fit: cover;
	transition: var(--transition);
}

.modal__content h3 {
	margin-bottom: 2.222vw;
}

.modal__thumbnails {
	height: 20vw;
	display: flex;
	gap: 0.833vw;
	padding: 0 5px;
	overflow-y: auto;
	/* Додаємо горизонтальну прокрутку */
	scrollbar-width: none;
	/* Вузька смуга прокрутки (для Firefox) */
}

.modal__thumbnails::-webkit-scrollbar {
	height: 6px;
}

.modal__thumbnails::-webkit-scrollbar-thumb {
	background: var(--blue);
	border-radius: var(--low-border);
}

.modal__thumbnails::-webkit-scrollbar-track {
	background: var(--white-blue);
}