@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/**/

body {
	margin: 0;
	padding: 0;
}

header.new {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background: linear-gradient(180deg, #FFF -14%, rgba(255, 255, 255, 0.00) 100%);
	backdrop-filter: blur(10px);
	z-index: 1005;
}

header.new::after {
	width: 100%;
	height: 1px;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.75);
}

header.new .box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 53px;
}

header.new .box .logo {
	display: flex;
	height: 100px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
}

header.new .box .logo img {
	max-width: 149px;
}

header.new .box .phone {
	display: flex;
	height: 100px;
	align-items: center;
	position: relative;
	padding-right: 38px;
}

header.new .box .phone a {
	height: 55px;
	padding: 0px 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	border-radius: 50px;
	border: 3px solid #3DDCA3;
	backdrop-filter: blur(5px);

	color: #001882;
	font-family: Montserrat;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
}

header.new .box .phone::before {
	border-radius: 0px 0px 40px 0px;
	background: #FFF;
	box-shadow: 2px 8px 16px 0px rgba(96, 96, 115, 0.20);
	height: 100%;
	content: "";
	position: absolute;
  	right: 0;
  	top: 0;
  	width: 50vw;
}

header.new .box .menu {
	margin-left: auto;
}

header.new .box .menu ul#primary-menu {
	list-style: none;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
}

header.new .box .menu ul#primary-menu > li.menu-item-has-children {
	position: relative;
}

header.new .box .menu ul#primary-menu > li.menu-item-has-children > a {
	line-height: 100px;
}

header.new .box .menu ul#primary-menu a {
	color: #001882;
	font-family: Montserrat;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	display: flex;
	align-items: center;
	gap: 5px;
}

header.new .box .menu ul#primary-menu li.menu-item-has-children > a::after {
	width: 9px;
	height: 7px;
	content: "";
	display: flex;
	background: url('../images/menu-arrow.svg') center center no-repeat;
}

header.new .box .menu ul#primary-menu li ul.sub-menu {
	max-height: 0px;
	transition: all 0.25s;
	opacity: 0;
	display: flex;
	position: absolute;
	left: 0;
	top: 100%;
  	width: 300px;
  	flex-direction: column;
  	/*background: linear-gradient(180deg, #FFF -14%, rgba(255, 255, 255, 0.00) 100%);*/
  	/*backdrop-filter: blur(10px);*/
	background: rgba(255, 255, 255, 0.5);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
  	transform: translateY(-10px);
	padding: 0 24px;
	list-style: none;
	border-radius: 0 0 24px 24px;
	gap: 12px;
	overflow: hidden;
}

header.new .box .menu ul#primary-menu li ul.sub-menu::before {
	display: none !important;
}

/*header.new .box .menu ul#primary-menu li ul.sub-menu::after {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	backdrop-filter: blur(10px);
	background: none !important;
	z-index: -1;
}*/

@media (min-width: 1110px) {
	header.new .box .menu ul#primary-menu li:hover ul.sub-menu {
		max-height: 500px;
		opacity: 1;
		transform: translateY(0px);
		padding: 24px;
		visibility: visible;
	}
}

header.new .box .menu ul#primary-menu li .sub-menu a {
	align-items: flex-start;
	text-align: left;
	padding: 0px 0 !important;
}

header.new .menu-but {
	display: none;
}

/*--------*/

/**/

footer.new {
	padding-top: 55px;
	margin-top: 70px;
	overflow: hidden;
	position: relative;
}

footer.new > img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	object-position: center;
	z-index: 1;
}

footer.new::after {
	background: rgba(47, 104, 156, 0.85);
	backdrop-filter: blur(5px);
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
}

footer.new .container {
	z-index: 3;
	position: relative;
	display: flex;
	flex-direction: column;
}

footer.new .container .top {
	display: flex;
	justify-content: space-between;
	gap: 50px;
}

footer.new .container .top .addr-info {
	width: 100%;
	max-width: 530px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

footer.new .container .top .addr-info .contacts {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

footer.new .container .top .addr-info .contacts .phone a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;	
	border-radius: 30px;
	border: 2px solid #ffffff;
	padding: 0 32px 0 78px;
	position: relative;
	color: #FFF;
	text-align: center;
	font-family: 'Montserrat';
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	text-decoration: none;
	transition: all 0.25s;
}

footer.new .container .top .addr-info .contacts .phone a:hover {
	color: #3DDCA3;
	border-color: #3DDCA3;
}

footer.new .container .top .addr-info .contacts .phone a::before {
	width: 54px;
	height: 54px;
	background: url('../images/call-icon.svg') center center no-repeat, #fff;
	border-radius: 50%;
	content: "";
	position: absolute;
	left: -2px;
	top: -4px;
}

footer.new .container .top .addr-info .contacts .addr p {
	margin: 0;
	color: #FFF;
	text-align: right;
	font-family: 'Montserrat';
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}

footer.new .container .top .addr-info .map iframe {
	border-radius: 50px;
	width: 100% !important;
	height: 345px !important;
}

footer.new .container .top .links {
	display: flex;
	gap: 16px;
}

footer.new .container .top .links .column {
	width: 100%;
}

footer.new .container .top .links .menu ul {
	list-style: none;
	padding: 0;
}

footer.new .container .top .links .menu ul a {
	color: #FFF;
	font-family: 'Montserrat';
	font-size: 24px;
	font-weight: 400;
	line-height: normal;
}

footer.new .container .top .links .menu ul.sub-menu {
	margin-top: 27px;
}

footer.new .container .top .links .menu ul.sub-menu li {
	padding-left: 24px;
	position: relative;
}

footer.new .container .top .links .menu ul.sub-menu li::before {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	content: "";
	position: absolute;
	left: 10px;
	top: 12px;
	background: #fff;
}

footer.new .container .top .links .menu ul.sub-menu li a {
	color: #FFF;
	font-family: 'Montserrat';
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}

footer.new .container .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	margin-top: 24px;
}

footer.new .container .bottom .social {
	position: relative;
	height: 120px;
	border-radius: 40px 0 0 0;
	background: #FFF;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-left: 64px;
	justify-content: center;;
}

footer.new .container .bottom .social::after {
	content: "";
	height: 100%;
	width: 50vw;
	position: absolute;
	top: 0;
	left: 100%;
	background: #fff;
}

footer.new .container .bottom .social .links {
	display: flex;
	gap: 28px;
	justify-content: center;
	align-items: center;
}

footer.new .container .bottom .social .links a {
	display: flex;
	width: 32px;
	height: 32px;
	justify-content: center;
	align-items: center;
}

footer.new .container .bottom .social .links a img {
	max-width: 32px;
	height: auto;
}

footer.new .container .bottom .social .email a {
	color: #2F689C;
	font-family: 'Montserrat';
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}

footer.new .container .bottom .policy {
	display: flex;
  	gap: 24px;
  	align-items: center;
}

footer.new .container .bottom .policy p {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	color: #fff;
}

footer.new .container .bottom .policy a {
	color: #FFF;
	font-family: 'Montserrat';
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	text-decoration: underline;
	transition: all 0.25s;
}

footer.new .container .bottom .policy a:hover {
	color: #3DDCA3;
}

/*--------*/

/**/

.title-block {
	height: 564px;
	overflow: hidden;
	position: relative;
	border-radius: 0 0 30px 30px;
	padding-top: 100px;
}

.title-block > img {
	position: absolute;
	left: 0%;
	top: 0%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -1;
}

.title-block .container {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: center;
}

.title-block .container .title {
	width: 100%;
	max-width: 475px;
	border-radius: 40px;
	background: rgba(255, 255, 255, 0.90);
	box-shadow: 2px 4px 10px 0px rgba(46, 46, 46, 0.15);
	backdrop-filter: blur(4px);
	padding: 16px 44px;
	min-height: 200px;
	position: relative;
	display: flex;
	align-items: center;
}

.title-block .container .title::after {
	content: "";
	position: absolute;
	top: -20px;
	right: -20px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: url('../images/arrow-up.svg') center center no-repeat, #3DDCA3;
	box-shadow: 2px 4px 10px rgba(46, 46, 46, 0.15);
	backdrop-filter: blur(4px);
}

.title-block .container .title h1 {
	color: #3DDCA3;
	font-family: Montserrat;
	font-size: 40px;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.title-block .container .buts {
	width: 100%;
	max-width: 475px;
	height: 60px;
	border-radius: 50px;
	border: 2px solid #FFF;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(3px);
	display: flex;
	padding: 3px;
	align-items: center;
	justify-content: space-between;
}

.title-block .container .buts a {
	color: #FFF;
	font-family: Montserrat;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	text-decoration: none;
}

.title-block .container .buts a:first-child {
	width: 100%;
	max-width: 238px;
	height: 50px;
	flex-shrink: 0;
	border-radius: 50px;
	background: #3DDCA3;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 3px solid #3DDCA3;
	backdrop-filter: blur(5px);
	transition: all 0.25s ease-out;
}

.title-block .container .buts a:first-child:hover {
	background: transparent;
	transition: all 0.25s ease-in;
}

.title-block .container .buts a:last-child {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.title-block .container .buts a:last-child:hover {
	text-decoration: underline;
}

.prices-title-block {
	height: 373px;
}

.prices-title-block > img {
	z-index: 1;
}

.prices-title-block::before {
	z-index: 2;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(47, 104, 156, 0.60);
	backdrop-filter: blur(5px);
}

.prices-title-block .container {
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
	position: relative;
}

.prices-title-block .container h1 {
	color: #FFF;
	text-align: center;
	font-family: 'Montserrat';
	font-size: 48px;
	font-weight: 700;
	line-height: normal;
}

.prices-title-block .container .buts button {
	color: #FFF;
	font-family: 'Montserrat';
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	text-decoration: none;
	height: 50px;
	padding: 0 50px;
	background: transparent;
	border: 3px solid transparent;
}

.prices-title-block .container .buts button.active {
	flex-shrink: 0;
	border-radius: 50px;
	background: #3DDCA3;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 3px solid #3DDCA3;
	backdrop-filter: blur(5px);
	transition: all 0.25s ease-out;
}

.title-block .container .buts button:not(.active):hover {
	color: #3DDCA3;
	transition: all 0.25s ease-in;
}

/*--------*/

/**/

.service-text {
	padding: 70px 0 10px;
}

.service-text .box {
	display: flex;
	gap: 40px;
}

.service-text .box .image {
	width: 100%;
	max-width: calc(50% - 20px);
	flex-shrink: 0;
	border-radius: 50px;
	overflow: hidden;
	height: 380px;
}

.service-text .box .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.text-content > .inner > *:not(:first-child), .text-content > *:not(:first-child) {
	margin-top: 24px;
	margin-bottom: 0;
}

.text-content .inner {
	overflow: hidden;
	transition: all 0.25s;
}

.text-content .inner h2 {
	color: #3DDCA3;
	font-family: Montserrat;
	font-size: 24px;
	font-weight: 600;
	line-height: 150%;
	text-transform: uppercase;
}

.text-content .inner p, .text-content .inner ol, .text-content .inner ul {
	color: #4C4A4A;
	font-family: Montserrat;
	font-size: 18px;
	font-weight: 400;
	line-height: 150%;
}

.text-content .but {
	margin-top: 32px;
	display: flex;
	justify-content: flex-start;
}

.text-content .but a {
	display: flex;
	height: 55px;
	padding: 0 60px;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	border: 3px solid #3DDCA3;
	backdrop-filter: blur(5px);
	background: transparent;
	color: #3DDCA3;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.25s;
}

.text-content .but a:hover {
	background: #3DDCA3;
	color: white;
}

.service-text.service-text2 .box .image {
	order: 1;
}

.service-text.service-text2 .box .text {
	order: 2;
}

.service-text.service-text3 .box:nth-child(2n) .image {
	order: 1;
}

.service-text.service-text3 .box:nth-child(2n) .text {
	order: 2;
}

.service-text .box .image.few {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr;
	height: auto;
	max-height: 500px;
	height: 500px;
}

.service-text .box .image.few > div:first-child {
	grid-row-start: 1;
	grid-row-end: 3;
	height: 100%;
}

.service-text .box .image.few > div {
	overflow: hidden;
	border-radius: 24px !important;
}

.service-text .box .image.few > div img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.service-text .box:not(:first-child) {
	margin-top: 69px;
}


/*--------*/

/**/

.service-results {
	padding: 70px 0 10px;
}

.special-title .container > h2 {
	color: #FFF;
	font-family: Montserrat;
	font-size: 40px;
	font-weight: 600;
	line-height: 150%;
	text-transform: uppercase;
	height: 60px;
	border-radius: 50px;
	background: #2F689C;
	padding: 0 144px 0 80px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: fit-content;
	position: relative;
	margin-bottom: 45px;
}

.special-title .container > h2::after {
	width: 64px;
	height: 64px;
	position: absolute;
	top: -2px;
	right: -2px;
	box-shadow: 2px 4px 10px rgba(46, 46, 46, 0.15);
	backdrop-filter: blur(4px);
	border-radius: 50%;
	background: url('../images/arrow-up.svg') center center no-repeat, #3DDCA3;
	content: "";
}

.service-results .box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.service-results .box .item {
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 24px;
	background: #FFF;
	box-shadow: 1px 2px 1px 0px rgba(241, 241, 241, 0.01), 2px 8px 12px 0px rgba(96, 96, 115, 0.08);
	backdrop-filter: blur(12.5px);
	gap: 24px;
}

.service-results .box .item .imgs {
	display: flex;
	flex-direction: column;
	gap: 5px;
	position: relative;
}

.service-results .box .item .imgs::after {
	width: 54px;
	height: 54px;
	position: absolute;
	bottom: 14px;
	right: 14px;
	box-shadow: 2px 4px 10px rgba(46, 46, 46, 0.15);
	backdrop-filter: blur(4px);
	border-radius: 50%;
	background: url('../images/arrow-up.svg') center center / 52px auto no-repeat, #3DDCA3;
	content: "";
}

.service-results .box .item .imgs > div {
	width: 100%;
	height: 180px;
	overflow: hidden;
}

.service-results .box .item .imgs > div:first-child {
	border-radius: 24px 24px 0 0;
}

.service-results .box .item .imgs > div:last-child {
	border-radius: 0 0 24px 24px;
}

.service-results .box .item .info {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0 20px;
}

.service-results .box .item .info > div {
	color: #4C4A4A;
	font-family: Montserrat;
	font-size: 24px;
	font-weight: 600;
	line-height: 150%;
	text-transform: uppercase;
}

.service-results .box .item .info p {
	color: #4C4A4A;
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
}


/*--------*/

/**/

.service-prices {
	padding: 70px 0 10px;
}

.prices-list {
	display: flex;
	flex-direction: column;
}

.prices-list .item {
	padding: 40px 0;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: flex-start;
}

.prices-list .item:first-child {
	padding-top: 0;
}

.prices-list .item:last-child {
	padding-bottom: 0;
}

.service-prices-widget .prices-list .item:last-child {
	padding-bottom: 40px;
}

.prices-list .item:not(:last-child) {
	border-bottom: 1px solid #3DDCA3;
}
      
.prices-list .item .name, .prices-list .item .price {
	color: #030303;
	font-family: Montserrat;
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
}

/*--------*/

/**/

.form-block {
	margin-top: 70px;
	margin-bottom: 10px;
}

.form-block .box {
	border-radius: 40px;
	background: #2F689C;
	padding: 50px 59px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.form-block .box .text {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.form-block .box .text .h2 {
	color: #DBDBDB;
	font-family: Montserrat;
	font-size: 24px;
	font-weight: 300;
	line-height: 150%;
	letter-spacing: 2.4px;
	text-transform: uppercase;
}

.form-block .box .text .h2 b, .form-block .box .text .h2 strong {
	font-weight: 700;
}

.form-block .box .text p {
	color: #DBDBDB;
	font-family: Montserrat;
	font-size: 18px;
	font-weight: 500;
	line-height: 180%;
}

.form-block .box .form {
	flex-shrink: 0;
	width: 100%;
	max-width: 413px;
}

.form-block .box .form form {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-block .box .form form .form-group.but {
	margin-top: 16px;
}

.form-group {
	position: relative;
}

.form-block .box .form form .form-group input[type="text"], .form-block .box .form form .form-group input[type="tel"] {
	width: 100%;
	height: 44px;
	padding: 0 32px;
	border-radius: 40px;
	color: #030303;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	background: #fff;
	border: 1px solid #ffffff;
	transition: all 0.25s;
}

.form-block .box .form form .form-group input[type="text"].wpcf7-not-valid, .form-block .box .form form .form-group input[type="tel"].wpcf7-not-valid {
	border: 1px solid #f00;
}

.form-block .wpcf7-not-valid-tip {
	display: none !important;
}

.form-block .wpcf7-response-output {
	margin-top: 0 !important;
	color: #ffffff;
}

.form-block .box .form form .form-group {
	margin-bottom: 0;
}

.form-block .box .form form .form-group input::placeholder {
	color: rgba(3, 3, 3, 0.5);
}

.form-block .box .form form .form-group input[type="submit"] {
	border-radius: 50px;
	background: #3DDCA3;
	box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.10);
	border: 3px solid #3DDCA3;
	transition: all 0.25s;
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	text-align: center;
	font-family: Montserrat;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.form-block .box .form form .form-group input[type="submit"]:hover {
  	background: transparent;
  	color: #ffffff;
}

/*--------*/

/**/

.panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.panel.non-collapse {
	max-height: initial !important;
}

.tabcontent {
	animation: fadeEffect 1s;
	display: none;
}
  
@keyframes fadeEffect {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.service-prices-list {
	padding: 70px 0 10px;
}

.service-prices-list .accordion {
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-radius: 20px;
	background: #F6F6F9;
	transition: all 0.25s;
	border: 0;
	width: 100%;
	color: #0E4068;
	font-family: 'Montserrat';
	font-size: 24px;
	font-weight: 700;
	line-height: normal;
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}

.service-prices-list .accordion span.name {
	display: flex;
	width: 100%;
}

.service-prices-list .accordion span.from {
	font-size: 15px;
	font-weight: 400;
	flex-shrink: 0;
}

.service-prices-list .accordion span.from > span {
	color: #3DDCA3;
	font-size: 20px;
	font-weight: 700;
	margin-left: 4px;
	margin-right: 4px;
	transition: all 0.25s;
}

.service-prices-list .accordion:hover span.from > span, .service-prices-list .accordion.active span.from > span {
	color: var(--white);
}

.service-prices-list .accordion:not(:first-child) {
	margin-top: 40px;
}

.service-prices-list .accordion::after {
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 34px;
	border: 1px solid #3DDCA3;
	background: url('../images/arrow-up3.svg') center center no-repeat, #3DDCA3;
	box-shadow: 2px 4px 10px rgba(46, 46, 46, 0.15);
	transition: all 0.25s;
	content: "";
	flex-shrink: 0;
}

.service-prices-list .accordion:hover::after, .service-prices-list .accordion.active::after {
	background: url('../images/arrow-up2.svg') center center no-repeat, #fff;
}

.service-prices-list .accordion:hover, .service-prices-list .accordion.active {
	background: #3DDCA3;
	color: #fff;
}

.service-prices-list .prices-list .item:first-child {
	padding-top: 30px;
}



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/