/* GVR home — advantages (PSD: container 1057px incl. 15px side padding → 1027px content) */
html {
	overflow-x: hidden;
	scroll-behavior: smooth;
	font-family: "Rubik", sans-serif;
}

body {
	position: relative;
	background-color: #050b0d;
	background-image: url("../images/background_image.webp");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% 100%;
	color: #ffffff;
	font-family: "Rubik", sans-serif;
	padding-bottom:45px;
}

:root {
	--gvr-header-height: 72px;
}

#header {
	position: fixed;
	top: 55px;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent;
	backdrop-filter: blur(4px);
	border-bottom: 0;
	box-shadow:none;
	transition: top 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

#header.is-scrolled {
	top: 0;
	background: rgba(2, 8, 12, 0.92);
	box-shadow: 0 0 14px rgba(78, 202, 233, 0.14);
}

.gvr-header__inner {
	height: var(--gvr-header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	direction: ltr;
	position: relative;
}

.gvr-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 18px;
}

.gvr-header__brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

/*.gvr-header__brand .custom-logo {
	max-height: 38px;
	width: auto;
}*/
.gvr-header__brand .custom-logo {
	max-height: 124px;
    position: absolute;
    top: 30px;
    left: 130px;
	width:auto;
	max-width:100%;
	object-fit:cover;
	transition: max-height 0.28s ease, position 0.28s ease, top 0.28s ease, left 0.28s ease;
}
header.is-scrolled .gvr-header__brand .custom-logo{
	max-height: 45px;
    position: relative;
    top: inherit;
    left: 50px;
}

.gvr-header__logo-fallback {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #8de2db;
	text-decoration: none;
}

.gvr-header__brand-text {
	font-size: 24.13px;
	font-weight: 300;
	line-height: 19.91px;
	letter-spacing: -0.005em;
	color: #ffffff;
	text-decoration: none;
	white-space: nowrap;
}

.gvr-menu-toggle {
	display: none;
	width: 43px;
	height: 29px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	position: relative;
	z-index: 1201;
	flex-direction: column;
	justify-content: space-between;
}

.gvr-menu-toggle__line {
	display: block;
	width: 100%;
	height: 4px;
	border-radius: 4px;
	background: #8de2db;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

#header.is-menu-open .gvr-menu-toggle__line:nth-child(1) {
	transform: translateY(12.5px) rotate(45deg);
}

#header.is-menu-open .gvr-menu-toggle__line:nth-child(2) {
	opacity: 0;
}

#header.is-menu-open .gvr-menu-toggle__line:nth-child(3) {
	transform: translateY(-12.5px) rotate(-45deg);
}

#menu {
	display: flex;
	align-items: center;
}

#menu .menu {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	direction: rtl;
}

#menu .menu > li {
	display: inline-flex;
	align-items: center;
	position: relative;
	padding: 8px 0;
}

#menu .menu > li + li::before {
	content: "|";
	color: rgba(255, 255, 255, 0.72);
	font-size: 20px;
	line-height: 1;
}

#menu .menu > li > a {
	display: inline-flex;
	align-items: center;
	padding: 0 22px;
	font-size: 19.3px;
	font-weight: 300;
	line-height: 19.84px;
	letter-spacing: 0.12em;
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s ease;
}

#menu .menu > li > a:hover {
	color: #9deee4;
}

#menu .menu > li > .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 220px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: rgba(2, 10, 14, 0.95);
	border: 1px solid #1f6f64;
	box-shadow: 0 0 0 1px rgba(83, 184, 166, 0.22) inset, 0 0 26px rgba(112, 230, 212, 0.45);
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease;
	z-index: 1100;
}

#menu .menu > li.menu-item-has-children::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 12px;
}

#menu .menu > li:hover > .sub-menu,
#menu .menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

#menu .menu .sub-menu li {
	display: block;
}

#menu .menu .sub-menu a {
	display: block;
	padding: 10px 16px;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 0.04em;
	color: #ffffff;
	text-decoration: none;
	white-space: nowrap;
}

#menu .menu .sub-menu a:hover {
	color: #9deee4;
	
}

.gvr-submenu-toggle {
	display: none;
}

#content {
	padding-top: var(--gvr-header-height);
}

.gvr-fade-section {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.72s ease, transform 0.72s ease;
}

.gvr-fade-section.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.gvr-page {
	margin: 50px 0 60px;
}

.gvr-page__article {
	max-width: 1027px;
	margin: 0 auto;
}

.gvr-page__header {
	margin: 0 0 26px;
}

.gvr-page__title {
	margin: 0;
	font-family: "Rubik", sans-serif;
	font-size: 46px;
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: 0;
	color: #ffffff;
}

.gvr-page__content {
	font-family: "Rubik", sans-serif;
	color: #ffffff;
}

.gvr-page__content h1,
.gvr-page__content h2,
.gvr-page__content h3,
.gvr-page__content h4,
.gvr-page__content h5,
.gvr-page__content h6 {
	margin: 0 0 0.6em;
	font-family: "Rubik", sans-serif;
	font-weight: 700;
	line-height: 1.28;
	color: #ffffff;
}

.gvr-page__content h1 { font-size: 42px; }
.gvr-page__content h2 { font-size: 34px; }
.gvr-page__content h3 { font-size: 28px; }
.gvr-page__content h4 { font-size: 24px; }
.gvr-page__content h5 { font-size: 20px; }
.gvr-page__content h6 { font-size: 18px; }

.gvr-page__content p {
	margin: 0 0 1em;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.75;
	letter-spacing: 0;
	color: #ffffff;
}

.gvr-page__content strong,
.gvr-page__content b {
	font-weight: 700 !important;
}

.gvr-page__content ul,
.gvr-page__content ol {
	margin: 0 0 1.1em;
	padding-right: 1.25em;
}

.gvr-page__content ul { list-style: disc; }
.gvr-page__content ol { list-style: decimal; }

.gvr-page__content li {
	margin-bottom: 0.45em;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.7;
}

.gvr-page__content a {
	color: #9deee4;
	text-decoration: underline;
}

.gvr-notfound {
	min-height: calc(100vh - var(--gvr-header-height));
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0 40px;
}

.gvr-notfound .container {
	width: 100%;
}

.gvr-notfound__inner {
	max-width: 1027px;
	margin: 0 auto;
	text-align: center;
}

.gvr-notfound__title {
	margin: 0 0 16px;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
}

.gvr-notfound__link {
	display: inline-block;
	font-size: 22px;
	font-weight: 300;
	line-height: 1.4;
	color: #9deee4;
	text-decoration: none;
}

strong,
b {
	font-weight: bold !important;
}

em {
	font-style: italic !important;
}

.skip-link {
	left: 1px;
}
.wpcf7-form{position:relative;}
.wpcf7-spinner{position:absolute; margin:0; bottom:0;}
.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"]{direction:rtl; font-family: "Rubik", sans-serif;}
.wpcf7-not-valid-tip{font-size: 14px;}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{margin:10px 0 0;
    padding: 0;
    border: none;}
.wpcf7 form.sent .wpcf7-response-output{margin:10px 0 0;
    padding: 0;
    border: none; color:#46b450;}
#content{width:100%; padding-top:120px;}
.footer_form {
	padding: 50px 0 16px;
}

.footer_form .fcontainer {
	max-width: 955px;
	margin: 0 auto;
	padding: 0 15px;
}

.footer_form .wpcf7 {
	width: 100%;
}

.footer_form .wpcf7 form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: right;
	gap: 13px;
	max-width: 925px;
	margin: 0 auto;
	direction: rtl;
}

.footer_form .wpcf7 form > p {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: right;
	gap: 13px;
	width: 100%;
	margin: 0;
}

.footer_form .wpcf7-form-control-wrap {
	display: block;
	flex: 1 1 0;
	min-width: 165px;
}

.footer_form .wpcf7 input[type="text"],
.footer_form .wpcf7 input[type="email"],
.footer_form .wpcf7 input[type="tel"],
.footer_form .wpcf7 input[type="url"] {
	width: 100%;
	height: 39px;
	padding: 0 18px;
	border-radius: 999px;
	border: 1px solid #1f6f64;
	background: #020d12;
	box-shadow:
		0 0 0 1px rgba(83, 184, 166, 0.18) inset,
		0 0 22px rgba(95, 226, 207, 0.5);
	font-family: "Rubik", sans-serif;
	font-size: 13.15px;
	font-weight: 400;
	line-height: 12.13px;
	letter-spacing: 0.01em;
	color: #b3b3b3;
	text-align: right;
}

.footer_form .wpcf7 input::placeholder {
	color: #b3b3b3;
	opacity: 1;
}

.footer_form .wpcf7 .wpcf7-form-control-wrap .required {
	color: #f9b090;
}

.footer_form .wpcf7 input[type="submit"] {
	flex: 0 0 218px;
	width: 218px;
	height: 39px;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	font-family: "Rubik", sans-serif;
	font-size: 19.23px;
	font-weight: 400;
	line-height: 20.59px;
	letter-spacing: 0.01em;
	color: #050c0f;
	background: linear-gradient(90deg, #1e8f90 0%, #68d3cb 50%, #a2ece1 100%);
	background-size: 150% 100%;
	background-position: 0% 50%;
	box-shadow:
		0 0 54px rgba(95, 226, 207, 0.45),
		-6px 11px 24px rgba(0, 0, 0, 0.25);
	transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background-position 0.25s ease;
}

.footer_form .wpcf7 form > p > input[type="submit"],
.footer_form .wpcf7 form > p > button[type="submit"] {
	flex: 0 0 218px;
}

.footer_form .wpcf7 input[type="submit"]:hover {
	filter: brightness(1.08);
	transform: translateY(-2px);
	background-position: 100% 50%;
	box-shadow:
		0 0 62px rgba(95, 226, 207, 0.6),
		-8px 14px 28px rgba(0, 0, 0, 0.3);
}

.footer_form .wpcf7 input[type="submit"]:active {
	transform: translateY(0);
	filter: brightness(0.98);
}
.fbox{display: flex; gap: 13px; width:100%;}
.fleft{width:100%;}
.fleft p{display: flex; gap: 13px;}
.wpcf7-list-item{margin:10px 0 0;}
.wpcf7-list-item a{color:white; text-decoration:none;}
.gvr-hero {
	position: relative;
    margin: 0 0 40px;
    background: linear-gradient(90deg, rgba(2, 9, 13, 0.78) 0%, rgba(2, 9, 13, 0.38) 38%, rgba(2, 9, 13, 0.1) 60%, rgba(2, 9, 13, 0) 100%), var(--gvr-hero-bg, none) center center / cover no-repeat, #050c0f;
    overflow: hidden;
    background-size: auto;
    background-size: contain;
    background-position: top right;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.gvr-hero__inner {
	min-height: 436px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	direction: ltr;
	padding: 0 0 0 60px;
}

.gvr-hero__title {
	margin: 0;
	max-width: 430px;
	font-family: "Rubik", sans-serif;
	font-size: 55.64px;
	font-weight: 700;
	font-style: italic;
	line-height: 59.96px;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	text-align: left;
	direction: ltr;
	white-space: pre-line;
	background: linear-gradient(3deg, #138387 0%, #bcffed 100%);
	background-size: 150% 150%;
	background-position: 50% 50%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	text-align:center;
}

.gvr-hero__corner {
	position: absolute;
	right: 0;
    bottom: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, rgba(5, 12, 15, 0.95) 0%, #138387 42%, #47a9a6 100%);
}


.gvr-about {
	margin: 0;
	font-family: "Rubik", sans-serif;
	color: #ffffff;
}

.gvr-about__box {
	position: relative;
	padding-top: 0px;
	background:
	var(--gvr-about-bg, none) left top / 360px auto no-repeat;
	background-position: bottom left;
    background-size: 100%;
    border-radius: 80px 0 0 80px;
    padding-bottom: 10px;
}

.gvr-about__content {
	width: 700px;
    max-width: calc(100% - 360px);
    margin-left: auto;
    padding: 8px 0 0;
}

.gvr-about__title {
	margin: 0 0 6px;
	font-family: "Rubik", sans-serif;
	font-size: 40.1px;
	font-weight: 300;
	font-style: normal;
	line-height: 51.8px;
	letter-spacing: 0;
	background: linear-gradient(3deg, #138387 0%, #bcffed 100%);
	background-size: 150% 150%;
	background-position: 50% 50%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	text-align: right;
	width: fit-content;
	margin-left: 0;
}

.gvr-about__info,
.gvr-about__info p {
	margin: 0;
	font-family: "Rubik", sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 20.67px;
	letter-spacing: 0;
	color: #ffffff;
	text-align: right;
	max-width: 702px;
}

.gvr-about__info p + p {
	margin-top: 0.48em;
}


.gvr-advantages {
	margin: 0 0 50px;
	margin:0;
	padding: 0;
	color: #ffffff;
	font-family: "Rubik", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	box-sizing: border-box;
	max-width: 1057px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.gvr-advantages__header {
	position: relative;
	text-align: center;
	padding: 50px 0 30px;
}

.gvr-advantages__bg-word {
	position: relative;
	z-index: 0;
	margin: 0;
	font-size: 94.13px;
	font-weight: 700;
	font-style: italic;
	line-height: 1.05;
	letter-spacing: 0.175em;
	text-transform: uppercase;
	color: transparent;
	-webkit-text-stroke: 1px rgba(0, 255, 255, 0.35);
	pointer-events: none;
	user-select: none;
}

.gvr-advantages__title {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 0 auto;
	max-width: 1027px;
	font-family: "Rubik", sans-serif;
	font-size: 48.55px;
	font-weight: 300;
	font-style: normal;
	line-height: 62.71px;
	letter-spacing: 0;
	background: linear-gradient(3deg, #138387 0%, #bcffed 100%);
	background-size: 150% 150%;
	background-position: 50% 50%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	margin-top: -48px;
}

.gvr-advantages__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 134px;
	max-width: 1027px;
	margin: 0 auto;
	padding-bottom: 3rem;
	text-align: right;
}

.gvr-advantages__item {
	margin-bottom: 0;
}

.gvr-advantages__item:last-child {
	margin-bottom: 0;
}

.gvr-advantages__item h3,
.gvr-advantages__item p {
	font-family: "Rubik", sans-serif;
	font-size: 15.8px;
	font-weight: 300;
	font-style: normal;
	line-height: 20.41px;
	letter-spacing: 0;
	color: #ffffff;
	text-align:center;
}

.gvr-advantages__item h3 {
	margin: 0 0 7px;
}

.gvr-advantages__item > hr {
	display: block;
	height: 1px;
	border: 0;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(19, 131, 135, 0.2) 14%,
		#138387 32%,
		#bcffed 50%,
		#138387 68%,
		rgba(19, 131, 135, 0.2) 86%,
		transparent 100%
	);
	box-shadow: 0 0 10px rgba(188, 255, 237, 0.35);
	width: 300px;
    margin: 0 auto 7px;
}

.gvr-advantages__col .gvr-advantages__item:last-child:has(> p) > hr {
	display: none;
}

.gvr-advantages__col .gvr-advantages__item:last-child > h3 + hr {
	display: block;
}

.gvr-advantages__item p {
	margin: 0 0 7px;
}


.gvr-advantages__item ul,
.gvr-advantages__item ol {
	font-size: 15.8px;
	font-weight: 300;
	line-height: 20.41px;
	color: #ffffff;
	margin: 0 0 0.75em;
	padding-right: 1.25em;
}

.gvr-advantages__item li {
	margin-bottom: 0.35em;
}


.gvr-services {
	position: relative;
	margin: 70px 0 50px;
	font-family: "Rubik", sans-serif;
}

.gvr-services__title {
	margin: 0px;
	text-align: center;
	font-size: clamp(3rem, 11vw, 112px);
	font-weight: 400;
	font-style: italic;
	line-height: 1;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: transparent;
	-webkit-text-stroke: 1px rgba(78, 217, 197, 0.45);
}

.gvr-services__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 67px 50px;
	position: relative;
    margin-top: -32px;
}

.gvr-services__item {
	flex: 0 1 215px;
	width: 215px;
	min-height: 245px;
	background: #050c0f;
	border: 1px solid #1f6f64;
	border-radius: 45px;
	padding: 16px 19px 22px;
	text-align: center;
	box-shadow:
		0 0 0 1px rgba(83, 184, 166, 0.22) inset,
		0 0 26px rgba(112, 230, 212, 0.45);
}

.gvr-services__image-wrap {
	position: relative;
	border-radius: 34px 34px 0 0;
	overflow: visible;
	border: 1px solid #1f6f64;
	box-shadow: 0 0 20px rgba(102, 236, 214, 0.42);
	margin-bottom: 13px;
}

.gvr-services__image-wrap::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translateX(-50%);
	width: 78%;
	height: 20px;
	background: radial-gradient(ellipse at center, rgba(80, 238, 221, 0.95) 0%, rgba(80, 238, 221, 0.4) 44%, rgba(80, 238, 221, 0) 78%);
	filter: blur(3px);
	pointer-events: none;
}

.gvr-services__image {
	display: block;
	width: 100%;
	height: 114px;
	height:auto;
	max-height:116px;
	object-fit: cover;
	border-radius: 34px 34px 0 0;
	position: relative;
    z-index: 1;
}

.gvr-services__subtitle {
	margin: 0 0 0px;
	font-size: 21.61px;
	font-weight: 300;
	line-height: 27.92px;
	letter-spacing: 0;
	color: #ffffff;
	text-align:right;
}

.gvr-services__info,
.gvr-services__info p {
	margin: 0;
	font-size: 14.42px;
	font-weight: 300;
	line-height: 18.63px;
	letter-spacing: 0;
	color: #ffffff;
	text-align:right;
}

