@import url("_base.css");
@import url("_editor-site.css");
@import url("_horizontal-menu.css");
@import url("_mobile-menu.css");
@import url("_ajax-form.css");
/* Page */
html {
	background: #fff;
	color: #000;
	font: 16px / 1.3 var(--base-fonts);
}
body {
	min-width: 320px;
	max-width: 1920px;
	margin: 0 auto;
}
/* Vector icons */
.icon {
	width: 1em;
	height: 1em;
}
/* Form popup */
.fullscreen-layout {
	position: fixed;
	z-index: 50;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	overflow: auto;
	overscroll-behavior: contain;
}
.hidden-form-layout {
	width: 100%;
	max-width: 600px;
	height: 100%;
	table-layout: fixed;
	border-spacing: 0;
	margin: 0 auto;
}
.hidden-form-layout > tbody > tr > td {
	vertical-align: middle;
}
.hidden-form-layout > tbody > tr > td > div {
	background: #fff;
	background: linear-gradient(to bottom, #eef2f5, #fff, #fafafa);
	color: #000;
	padding: 16px;
	border-radius: 3px;
}
.fullscreen-layout-close {
	position: absolute;
	z-index: 1;
	right: 0;
	top: 0;
}
.fullscreen-layout-close-button {
	background: transparent;
	color: inherit;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	font-size: 1.3em;
	text-align: center;
	width: 1.5em;
	height: 1.5em;
	transition: background-color 300ms ease-out, color 300ms ease-out;
}
.fullscreen-layout-close-button:hover,
.fullscreen-layout-close-button:focus {
	background-color: #b24539;
	color: #fff;
}
/* Main content: all */
.main-body {
	display: flex;
	max-width: var(--content-max-width);
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
	gap: 16px;
	padding-top: 16px;
	padding-bottom: 16px;
}
.main-body > .content {
	flex-grow: 1;
}
.sidebar {
	flex-shrink: 0;
	flex-grow: 0;
}
.sidebar > section:not(:first-child) {
	margin-top: 1rem;
}
/* Main content: wide */
@media all and (min-width: 1295px) {
	.content {
		order: 1;
	}
	.sidebar-1 {
		width: 250px;
		order: 0;
	}
	.sidebar-2 {
		width: 250px;
		order: 2;
	}
	.main-body {
		padding-bottom: 32px;
	}
}
/* Main content: narrow */
@media not all and (min-width: 1295px) {
	.main-body {
		flex-direction: column;
	}
	.content {
		order: 0;
	}
	.sidebar-1 {
		width: 100%;
		order: 1;
	}
	.sidebar-2 {
		width: 100%;
		order: 2;
	}
}
/* A wrapper for normal content, which needs padding on narrow screens */
.limit-content {
	display: flow-root;
	max-width: var(--content-max-width);
	padding-left: 1rem;
	padding-right: 1rem;
	margin-left: auto;
	margin-right: auto;
}
@media print {
	.limit-content { padding-left: 0; padding-right: 0; }
}
/* A wrapper for content with no padding (image slideshow, etc.) */
.sheet {
	display: flow-root;
	max-width: var(--content-max-width);
	margin-left: auto;
	margin-right: auto;
}
/* Hide on print. */
@media print {
	.hide-on-print { display: none !important; }
}
/* Show only on print. */
@media not print {
	.show-on-print { display: none !important; }
}
/* Template */
/* header */
.top {
	padding-top: 10px;
	padding-bottom: 11px;
}
.l-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.top-logo {
	font-family: var(--heading-fonts);
	color: #424959;
	font-size: 33px;
}
.main-menu {
	font-size: 14px;
	font-weight: 500;
}
.main-menu > li > :first-child:not([class]) {
	color: #414858;
	text-transform: uppercase;
}
.main-menu > li > :first-child:hover,
.main-menu > li > :first-child:focus {
	text-decoration: underline;
}
.main-menu > li:not(:first-child) {
	margin-left: 39px;
}
.main-menu > .menu-item-g1:not(:first-child) {
	margin-left: 16px;
}
.main-menu > .menu-item-g1._sep::after {
	content: "·";
	margin-left: 16px;
}
.main-menu > li > a[aria-current="page"] {
	text-decoration: underline;
}
/* info 1 */
.info-1 {
	background: #f3f6fa url("../images/info-1.webp") center / cover no-repeat;
	color: #2c303a;
	padding-top: 32px;
	padding-bottom: 32px;
	font-size: 18px;
	line-height: 1.5;
}
.info-1-heading {
	color: #414858;
	font-family: var(--heading-fonts);
	line-height: 1.13;
	font-size: 52px;
}
.info-1-limit {
	max-width: 600px;
}
.info-1 p:not(:first-child) {
	margin-top: 41px;
}
.info-1 .info-1-heading + p {
	margin-top: 14px;
}
@media all and (min-width: 1295px) {
	.info-1 {
		padding-top: 169px;
		padding-bottom: 199px;
	}
	.info-1-heading {
		font-size: 74px;
	}
	.info-1-heading:lang(ka) {
		font-size: 58px;
	}
}
/* footer */
.bottom {
	background: #414858;
	color: #fff;
	padding-top: 32px;
	padding-bottom: 32px;
}
.bottom p:not(:first-child) {
	margin-top: 1em;
}
.bottom-sep:not(:first-child) {
	margin-top: 2em;
}
.l-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
@media all and (max-width: 900px) {
	.l-bottom {
		flex-wrap: wrap;
	}
}
@media not all and (max-width: 900px) {
	.bottom-1 {
		max-width: 50%;
	}
}
.bottom-heading {
	font-family: var(--heading-fonts);
	font-size: 33px;
}
.bottom-subheading:not(:first-child) {
	margin-top: 1em;
}
.bottom a:hover,
.bottom a:focus {
	color: #cdd4e4;
}
.bottom a:focus-visible {
	text-decoration: underline;
}
.bottom-copyright {
	color: #878e9e;
}
@media all and (min-width: 1295px) {
	.bottom {
		padding-top: 80px;
		padding-bottom: 92px;
	}
}
/* info 2 - prices */
.info-2 {
	color: #444b5b;
	padding-top: 32px;
	padding-bottom: 32px;
}
@media all and (min-width: 1295px) {
	.info-2 {
		padding-top: 119px;
		padding-bottom: 160px;
		background-image:
			radial-gradient(rgba(138,219,253,.4), rgba(138,219,253,.2), rgba(138,219,253,0), rgba(138,219,253,0)),
			radial-gradient(rgba(138,219,253,.4), rgba(138,219,253,.2), rgba(138,219,253,0), rgba(138,219,253,0))
		;
		background-size: 600px 840px, 600px 840px;
		background-repeat: no-repeat, no-repeat;
		background-position: top -420px right -340px, bottom -420px left -340px;
	}
}
.info-2-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 25px;
}
.info-2-list:not(:first-child) {
	margin-top: 32px;
}
@media all and (min-width: 1295px) {
	.info-2-list:not(:first-child) {
		margin-top: 44px;
	}
}
.info-2-list > li {
	width: 414px;
	max-width: 100%;
	flex-shrink: 0;
	flex-grow: 0;
}
.info-2-list-heading {
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	background: #414858;
	color: #fff;
	border-radius: 14px 14px 0 0;
	padding: 1em .5em;
	position: relative;
}
.info-2-list-heading-note {
	position: absolute;
	z-index: 1;
	bottom: -18px;
	right: 29px;
	background: #f3a32b;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	padding: 8px 14px;
	border-radius: 5px;
	transform: rotate(-10deg);
}
.info-2-list-content {
	background: #f2f6fe;
	color: #414858;
	padding: 0 16px 16px 16px;
	border-radius: 0 0 14px 14px;
}
@media all and (min-width: 1295px) {
	.info-2-list-content {
		padding-left: 37px;
		padding-right: 37px;
		padding-bottom: 37px;
	}
}
.info-2-price {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding-top: 25px;
	padding-bottom: 13px;
}
.info-2-price-item._value {
	font-size: 72px;
	font-weight: 600;
}
.info-2-list-adv {
	background: transparent url("../images/check.svg") right center / 22px 22px no-repeat;
	padding-right: 32px;
	padding-top: 18px;
	padding-bottom: 18px;
}
.info-2-list-adv:not(:first-child) {
	padding-top: 18px;
}
.info-2-list-adv._sep {
	border-bottom: 1px dashed #b7c0d7;
}
.info-2-list-reg {
	text-align: center;
}
.info-2-list-reg:not(:first-child) {
	margin-top: 16px;
}
.top-2-list-decor {
	margin: 0 26px;
	border-bottom: 11px solid #e2e9f6;
	border-radius: 0 0 11px 11px;
}
/* info 3 - services */
.info-3 {
	background: #414f70 url("../images/info-3.webp") center / cover no-repeat;
	color: #fff;
	padding-top: 32px;
	padding-bottom: 32px;
}
@media all and (min-width: 1295px) {
	.info-3 {
		padding-top: 97px;
		padding-bottom: 134px;
	}
}
.info-3-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 25px;
	line-height: 1.45;
}
.info-3-list:not(:first-child) {
	margin-top: 16px;
}
.info-3-list > li {
	box-sizing: border-box;
	border: 1px dashed rgba(255,255,255,.5);
	padding: 16px;
	width: 415px;
	max-width: 100%;
	border-radius: 16px;
}
.info-3-list p:not(:first-child) {
	margin-top: 1em;
}
@media all and (min-width: 1295px) {
	.info-3-list:not(:first-child) {
		margin-top: 50px;
	}
	.info-3-list > li {
		padding: 57px 40px 43px 40px;
		border-radius: 22px;
	}
}
.info-3-list-decor {
	min-height: 58px;
	margin-bottom: 16px;
}
@media all and (min-width: 1295px) {
	.info-3-list-decor {
		margin-bottom: 30px;
	}
}
/* info 4 - how it works */
.info-4 {
	color: #444b5b;
	padding-top: 32px;
	padding-bottom: 32px;
}
@media all and (min-width: 1295px) {
	.info-4 {
		padding-top: 124px;
		padding-bottom: 143px;
		background-image:
			radial-gradient(rgba(138,219,253,.4), rgba(138,219,253,.2), rgba(138,219,253,0), rgba(138,219,253,0)),
			radial-gradient(rgba(138,219,253,.4), rgba(138,219,253,.2), rgba(138,219,253,0), rgba(138,219,253,0))
		;
		background-size: 600px 840px, 600px 840px;
		background-repeat: no-repeat, no-repeat;
		background-position: top -420px right -340px, bottom -420px left -340px;
	}
}
.info-4-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 25px;
	font-size: 15px;
	line-height: 1.7;
}
.info-4-list:not(:first-child) {
	margin-top: 16px;
}
.info-4-list > li {
	box-sizing: border-box;
	width: 415px;
	max-width: 100%;
	color: #585858;
}
.info-4-list > li:first-child {
	width: 438px;
}
.info-4-list p:not(:first-child) {
	margin-top: .82em;
}
@media all and (min-width: 1295px) {
	.info-4-list:not(:first-child) {
		margin-top: 50px;
	}
}
.info-4-limit {
	display: flow-root;
	max-width: calc(var(--content-max-width) + 23px);
	padding-left: 1rem;
	padding-right: 1rem;
	margin-left: auto;
	margin-right: auto;
}
@media print {
	.info-4-limit { padding-left: 0; padding-right: 0; }
}
.info-4-title {
	color: #4f6494;
	font-size: 22px;
}
.info-4-title:not(:first-child) {
	margin-top: 16px;
}
@media all and (min-width: 1295px) {
	.info-4-title:not(:first-child) {
		margin-top: 38px;
	}
}
/* info 5 - about */
.info-5 {
	background: #f5f8fe url("../images/info-5-bg.webp") center / cover no-repeat;
	color: #2c303a;
	padding-top: 16px;
	padding-bottom: 16px;
	font-size: 18px;
	line-height: 1.5;
	position: relative;
	overflow: hidden;
}
@media all and (min-width: 1295px) {
	.info-5 {
		padding-top: 130px;
		padding-bottom: 139px;
	}
}
.info-5-limit {
	max-width: 640px;
}
.info-5-heading {
	color: #414858;
	font-family: var(--heading-fonts);
	line-height: 1.13;
	font-size: 52px;
}
.info-5 p:not(:first-child) {
	margin-top: 41px;
}
.info-5 .info-5-heading + p {
	margin-top: 14px;
}
@media all and (min-width: 1295px) {
	.info-5-heading {
		font-size: 74px;
	}
	.info-5-image {
		position: absolute;
		z-index: 1;
		left: calc(50% + 46px);
		top: 148px;
	}
}
@media not all and (min-width: 1295px) {
	.info-5-image {
		margin-top: 2em;
	}
}
/* form */
.form-unit:not(:first-child) {
	margin-top: 1em;
}
.form-input {
	width: 100%;
	padding: .25em;
	background: #fff;
	color: #000;
	border: 1px solid #333;
	border-radius: 3px;
	transition: border-color 300ms ease-out;
}
textarea.form-input {
	resize: none;
	height: 7em;
}
.form-input:hover,
.form-input:focus {
	border-color: #1e69fe;
	outline: none;
}
.small-box {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.contact-form-w:not(:first-child),
.contact-form:not(:first-child) {
	margin-top: 1em;
}
.map:not(:first-child) {
	margin-top: 1em;
}
.textslider {
	margin-top: 1em;
	color: #878e9e;
	position: relative;
	overflow: hidden;
}
.textslider::after {
	content: "";
	display: table;
	clear: both;
}
.textslider > ul > li {
	list-style: none;
	position: absolute;
	left: 100%;
	top: 0;
	width: 100%;
	line-height: 1.2em;
	transition: left .5s;
}
.textslider > ul > .active {
	left: 0;
}
.textslider > ul > li > * {
	font: inherit;
	color: inherit;
	text-transform: none;
	padding: 0;
	margin: 0;
	border: none;
}
.site-contacts {
	position: fixed;
	z-index: 8;
	right: 16px;
	bottom: 64px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1em;
	font-size: 20px;
}
.site-contacts > a {
	display: inline-block;
	box-sizing: border-box;
	background: #c13443;
	color: #fff;
	padding: .5em;
	border: 2px solid #fff;
	border-radius: 2em;
	box-shadow: 2px 2px 2px 0 rgba(0,0,0,.2);
	transition: background-color 300ms ease-out;
}
.site-contacts > a:hover,
.site-contacts > a:focus {
	background: #242424;
}
.site-contacts > a:focus-visible {
	text-decoration: underline;
	outline: none;
}
@media all and (max-width: 400px) {
	body {
		padding-bottom: 60px;
	}
	.site-contacts {
		width: 100%;
		right: 0;
		bottom: 0;
	}
	.site-contacts > a {
		width: 100%;
		flex-shrink: 0;
		text-align: center;
		border-radius: 0;
		box-shadow: 0 -2px 2px 0 rgba(0,0,0,.2);
		border-left: none;
		border-right: none;
		border-bottom: none;
	}
}
