:root {
	--brand: #f5a900;
	--brand-dark: #d88d00;
	--ink: #0c1725;
	--ink-soft: #162638;
	--text: #1d2a39;
	--muted: #667588;
	--surface: #f4f6f8;
	--surface-warm: #f7f3ec;
	--line: #dfe5eb;
	--white: #ffffff;
	--shadow-sm: 0 12px 30px rgba(12, 23, 37, 0.08);
	--shadow-lg: 0 28px 70px rgba(12, 23, 37, 0.18);
	--radius-sm: 12px;
	--radius-md: 20px;
	--radius-lg: 30px;
}

html {
	scroll-behavior: smooth;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	background: var(--white);
	color: var(--text);
	font-family: 'proxima_nova_rgregular', Arial, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
	font-family: 'proxima_nova_rgregular', Arial, sans-serif;
}

img {
	max-width: 100%;
	height: auto;
}

a,
button,
input,
select,
textarea {
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(245, 169, 0, 0.38);
	outline-offset: 3px;
}

.container {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.visuallyHidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.siteHeader {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	background: rgba(9, 19, 31, 0.94);
	background-image: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(18px);
	box-shadow: 0 8px 28px rgba(4, 12, 21, 0.12);
}

.siteHeader::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--brand), #ffc84a 48%, var(--brand));
}

.siteHeader .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 112px;
}

header #logoClick,
header #logoClick.small {
	float: none;
	flex: 0 0 auto;
	width: auto;
	line-height: normal;
}

header #logoClick a,
header #logoClick a.small {
	display: flex;
	align-items: center;
	height: auto;
	padding: 12px 0 !important;
}

header #logoClick img,
header #logoClick a.small img {
	width: auto;
	height: 72px;
	object-fit: contain;
}

header .headRight {
	display: flex;
	flex: 1 1 auto;
	align-items: flex-end;
	justify-content: center;
	flex-direction: column;
	float: none;
	width: auto;
	padding-left: 36px;
	text-align: right;
}

.headerUtility {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 8px;
}

#langChange {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0;
}

#langChange a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 31px;
	height: 31px;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-family: 'proxima_nova_rgbold';
	font-size: 12px;
	line-height: 1;
	background: transparent;
	background-image: none;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
}

#langChange a.active,
#langChange a:hover {
	color: var(--ink);
	background: var(--brand);
	border-color: var(--brand);
}

.headerContact {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	color: var(--white);
	font-family: 'proxima_nova_rgbold';
	font-size: 13px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
}

.headerContact span:last-child {
	color: var(--brand);
	font-size: 16px;
}

.headerContact:hover {
	color: var(--ink);
	background: var(--brand);
	border-color: var(--brand);
	transform: translateY(-1px);
}

.headerContact:hover span:last-child {
	color: var(--ink);
}

.mainNav {
	position: relative;
}

.menuToggle {
	display: none;
}

#topmenu,
#topmenu.small {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
}

#topmenu li,
#topmenu li.active,
#topmenu li:hover {
	position: relative;
	display: block;
	background: none;
}

#topmenu li:last-child {
	margin-right: 0;
}

#topmenu li > a,
#topmenu.small li > a {
	position: relative;
	display: block;
	padding: 9px 11px 11px;
	color: rgba(255, 255, 255, 0.78);
	font-family: 'proxima_nova_rgbold';
	font-size: 13px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.065em;
}

#topmenu li > a::after {
	content: '';
	position: absolute;
	left: 11px;
	right: 11px;
	bottom: 2px;
	height: 2px;
	background: var(--brand);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

#topmenu li.active > a,
#topmenu li:hover > a,
#topmenu.small li.active > a {
	color: var(--white);
}

#topmenu li.active > a::after,
#topmenu li:hover > a::after {
	transform: scaleX(1);
}

#topmenu ul {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	z-index: 20;
	display: none;
	width: 230px;
	margin: 0 !important;
	padding: 10px;
	text-align: left;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
}

#topmenu ul::before {
	content: '';
	position: absolute;
	left: 0;
	top: -14px;
	width: 100%;
	height: 14px;
}

#topmenu li:hover > ul,
#topmenu li:focus-within > ul {
	display: block;
}

#topmenu ul li a,
#topmenu.small ul li a {
	padding: 11px 12px;
	color: var(--text) !important;
	font-family: 'proxima_nova_rgregular';
	font-size: 15px;
	line-height: 1.25;
	text-transform: none;
	letter-spacing: 0;
	border-radius: 8px;
}

#topmenu ul li a::after {
	display: none;
}

#topmenu ul li a:hover {
	color: var(--ink) !important;
	text-decoration: none;
	background: rgba(245, 169, 0, 0.16);
}

.siteHeader.isScrolled {
	background: rgba(9, 19, 31, 0.98);
	box-shadow: 0 12px 38px rgba(4, 12, 21, 0.24);
}

#slidebar {
	height: min(820px, 88vh);
	min-height: 680px;
	background: var(--ink);
}

#slidebar::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(5, 14, 24, 0.86) 0%, rgba(5, 14, 24, 0.66) 43%, rgba(5, 14, 24, 0.24) 100%);
	pointer-events: none;
}

#slidebar::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	height: 7px;
	background: linear-gradient(90deg, var(--brand) 0 32%, rgba(245, 169, 0, 0.18) 32% 100%);
}

#slidebar .sbig {
	background-position: center;
	transform: scale(1.015);
}

#slidebar .slideContainer {
	z-index: 3;
	bottom: auto;
	top: 0;
	display: flex;
	align-items: center;
	height: 100%;
	padding-top: 112px;
}

#slidebar .slideContent {
	width: min(1180px, calc(100% - 48px));
	height: auto;
}

#slidebar .slideCont {
	width: min(780px, 76%);
	min-height: 0;
	margin: 0;
	padding: 24px 0 54px;
	text-align: left;
}

.heroEyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	color: var(--brand);
	font-family: 'proxima_nova_rgbold';
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.19em;
}

.heroEyebrow::before {
	content: '';
	display: block;
	width: 46px;
	height: 2px;
	background: var(--brand);
}

#slidebar .slideContent h2 {
	width: auto;
	margin: 0 0 24px;
	color: var(--white);
	font-family: 'proxima_nova_rgbold';
	font-size: clamp(48px, 5.3vw, 78px);
	font-weight: normal;
	line-height: 0.98;
	text-align: left;
	text-transform: none;
	letter-spacing: -0.035em;
	text-wrap: balance;
}

#slidebar .slideContent h2 small,
#slidebar .slideContent h2 strong,
#slidebar .slideContent h2 p {
	font: inherit;
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}

#slidebar .slideContent .descript {
	width: min(610px, 100%);
	margin: 0 0 34px;
	padding: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 21px;
	line-height: 1.5;
	text-align: left;
	border: 0;
}

.heroActions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.heroActions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	min-height: 50px;
	padding: 0 21px;
	font-family: 'proxima_nova_rgbold';
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-radius: 999px;
}

.heroActions .primary {
	color: var(--ink);
	background: var(--brand);
	border: 1px solid var(--brand);
}

.heroActions .secondary {
	color: var(--white);
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.34);
	backdrop-filter: blur(8px);
}

.heroActions a:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

#slidebar .slideContent .nav {
	position: absolute;
	left: 0;
	bottom: 2px;
	text-align: left;
}

#slidebar .slideContent .nav a {
	width: 28px;
	height: 4px;
	margin: 0 6px 0 0;
	background: rgba(255, 255, 255, 0.34);
	border-radius: 999px;
}

#slidebar .slideContent .nav a.active {
	width: 52px;
	background: var(--brand);
}

#slidebar .navArrow a {
	top: 50%;
	width: 48px;
	height: 48px;
	margin-top: -24px;
	background: rgba(255, 255, 255, 0.08);
	background-image: none;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 50%;
	backdrop-filter: blur(8px);
}

#slidebar .navArrow a::before {
	content: '';
	position: absolute;
	top: 16px;
	width: 13px;
	height: 13px;
	border-top: 2px solid var(--white);
	border-left: 2px solid var(--white);
}

#slidebar .navArrow a.left {
	left: -72px;
	background-image: none;
}

#slidebar .navArrow a.left::before {
	left: 19px;
	transform: rotate(-45deg);
}

#slidebar .navArrow a.right {
	right: -72px;
	background-image: none;
}

#slidebar .navArrow a.right::before {
	right: 19px;
	transform: rotate(135deg);
}

#slidebar .navArrow a:hover {
	background: var(--brand);
	border-color: var(--brand);
}

#request {
	padding: 92px 0 82px;
	text-align: center;
	background: var(--surface);
	border: 0;
}

#request .title {
	max-width: 820px;
	margin: 0 auto 36px;
}

#request .title h1 {
	margin-bottom: 14px;
	color: var(--ink);
	font-family: 'proxima_nova_rgbold';
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.05;
	text-transform: none;
	letter-spacing: -0.025em;
}

#request .title .descript {
	color: var(--muted);
	font-size: 20px;
	line-height: 1.55;
}

#request .icons {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	width: calc(33.333% - 30px);
	min-height: 310px;
	margin: 15px 12px;
	padding: 38px 28px 32px;
	cursor: pointer;
	vertical-align: top;
	background: var(--white);
	border: 1px solid transparent;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

#request .icons:hover {
	border-color: rgba(245, 169, 0, 0.5);
	box-shadow: var(--shadow-lg);
	transform: translateY(-8px);
}

#request .icons .img {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 118px;
	height: 118px;
	margin-bottom: 28px;
	line-height: normal;
	background: rgba(245, 169, 0, 0.11);
	border: 1px solid rgba(245, 169, 0, 0.22);
	border-radius: 28px;
	transform: rotate(3deg);
}

#request .icons:hover .img {
	background: var(--brand);
	transform: rotate(0deg) scale(1.03);
}

#request .icons .img .maska {
	display: none;
}

#request .icons .img img {
	max-width: 78px;
	max-height: 78px;
	object-fit: contain;
}

#request .icons .descript {
	color: var(--text);
	font-size: 18px;
	line-height: 1.5;
}

#request .icons .descript strong,
#request .icons .descript b {
	display: block;
	margin-bottom: 9px;
	color: var(--ink);
	font-family: 'proxima_nova_rgbold';
	font-size: 23px;
	line-height: 1.15;
}

#benefits {
	padding: 100px 0;
	background: var(--white);
	background-image: none;
}

#benefits .bgFirst,
#benefits .bgSec {
	display: none;
}

#benefits .container {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
	gap: 32px;
}

#benefits h2 {
	grid-column: 1 / -1;
	margin: 0 0 24px;
	color: var(--ink);
	font-family: 'proxima_nova_rgbold';
	font-size: clamp(36px, 4vw, 56px);
	line-height: 1.08;
	text-align: left;
	text-transform: none;
	letter-spacing: -0.03em;
}

#benefits h2::after {
	content: '';
	display: block;
	width: 76px;
	height: 4px;
	margin-top: 22px;
	background: var(--brand);
	border-radius: 99px;
}

#benefits .list,
#benefits .rightBox {
	float: none;
	width: auto;
	padding: 36px;
	border-radius: var(--radius-md);
}

#benefits .list {
	background: var(--surface);
	border: 1px solid var(--line);
}

#benefits .list h3 {
	margin-bottom: 25px;
	color: var(--ink);
	font-family: 'proxima_nova_rgbold';
	font-size: 25px;
}

#benefits .list li,
.rightBox .descript li,
#content.contact .container li {
	position: relative;
	margin-bottom: 16px;
	padding-left: 30px;
	color: var(--text);
	font-size: 17px;
	line-height: 1.45;
	background: none;
}

#benefits .list li::before,
.rightBox .descript li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--brand-dark);
	font-family: 'proxima_nova_rgbold';
}

#benefits .rightBox {
	display: flex;
	justify-content: center;
	flex-direction: column;
	background: var(--ink);
	box-shadow: var(--shadow-lg);
}

#benefits .rightBox .descript,
#benefits .rightBox .descript li {
	color: rgba(255, 255, 255, 0.75);
	font-size: 17px;
	line-height: 1.55;
}

#benefits .rightBox .benefitsBtn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-top: 16px;
	padding: 18px 20px;
	color: var(--ink);
	font-family: 'proxima_nova_rgbold';
	font-size: 16px;
	background: var(--brand);
	border: 0;
	border-radius: var(--radius-sm);
}

#benefits .rightBox .benefitsBtn:hover {
	background: #ffc23d;
	transform: translateY(-2px);
}

#benefits .rightBox .benefitsBtn span {
	float: none;
	width: auto;
	padding: 0 20px 0 0;
}

#benefits .rightBox .benefitsBtn .imgIco {
	float: none;
	width: 44px;
	text-align: right;
}

#benefits .rightBox .benefitsBtn .imgIco img {
	max-height: 42px;
}

#partners {
	height: 132px;
	background: var(--surface-warm);
	border-top: 1px solid #ece4d8;
	border-bottom: 1px solid #ece4d8;
}

#partners .slideContent,
#partners .slideCont {
	height: 132px;
	min-height: 132px;
}

#partners a {
	margin: 0 14px;
}

#partners img {
	max-height: 96px;
	filter: grayscale(1);
	opacity: 0.65;
}

#partners a:hover img {
	filter: grayscale(0);
	opacity: 1;
}

#paralax {
	background: var(--ink);
	background-image: none;
}

footer {
	position: relative;
	padding: 76px 0 28px;
	color: rgba(255, 255, 255, 0.72);
	background: linear-gradient(145deg, #111f30 0%, #09131f 72%);
	background-image: none;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--brand);
}

footer .container {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
	gap: 36px 70px;
}

footer .footerBox,
footer .footerBox.contact,
footer .footerBox.newsletter {
	float: none;
	width: auto;
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
}

footer .footerBox .nadpis {
	margin-bottom: 24px;
	color: var(--white);
	font-family: 'proxima_nova_rgbold';
	font-size: 25px;
	line-height: 1.2;
	text-transform: none;
}

footer .footerBox.contact ul {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
}

footer .footerBox.contact li {
	float: none;
	margin: 0;
	padding: 7px 0 7px 36px;
	color: rgba(255, 255, 255, 0.72) !important;
	font-size: 15px;
	background-size: auto 21px;
}

footer .footerBox.contact li a {
	color: rgba(255, 255, 255, 0.84);
}

footer .footerBox.contact li a:hover {
	color: var(--brand);
}

footer .footerBox .newsletterCont .left {
	display: block;
	width: 100%;
	min-height: 0;
}

footer .footerBox .inputHide,
footer .footerBox.newsletter .inputHide {
	display: block !important;
	margin-top: 16px;
}

footer .footerBox.newsletter .newsletterCont form {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 12px;
}

footer .footerBox.newsletter .inputHide input[type='text'] {
	width: 100%;
	height: 48px;
	padding: 0 16px;
	color: var(--white);
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 10px;
}

footer .footerBox.newsletter .inputHide input[type='text']::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

footer .footerBox.newsletter .inputHide input[type='checkbox'] {
	accent-color: var(--brand);
}

footer .footerBox.newsletter .inputHide label a {
	color: rgba(255, 255, 255, 0.66) !important;
	text-decoration: underline;
	text-underline-offset: 3px;
}

footer .footerBox .newsletterCont .btn,
footer .footerBox.newsletter .newsletterCont .btn {
	width: auto;
	height: 48px;
	margin: 0;
	padding: 0 19px;
	color: var(--ink);
	font-family: 'proxima_nova_rgbold';
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	background: var(--brand);
	background-image: none;
	border: 0;
	border-radius: 10px;
}

footer .footerBox .newsletterCont .btn:hover {
	background: #ffc23d;
	background-position: initial;
	transform: translateY(-2px);
}

footer .social {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
	margin: 18px 0 0;
	line-height: normal;
}

footer .social .leftSep,
footer .social .rightSep {
	flex: 1 1 auto;
	width: auto;
	height: 1px;
	background: rgba(255, 255, 255, 0.14);
}

footer .social .center {
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	padding: 0 28px;
}

footer .social a {
	border-radius: 50%;
}

footer .social a.logo {
	border-radius: 0;
}

footer .dev {
	grid-column: 1 / -1;
	margin: -8px 0 0;
	text-align: center;
}

footer .dev,
footer .dev a {
	color: rgba(255, 255, 255, 0.48);
	font-size: 12px;
	letter-spacing: 0.08em;
}

footer .dev a:hover {
	color: var(--brand);
	text-decoration: none;
}

footer #arrowTop {
	grid-column: 1 / -1;
	position: relative;
	width: 42px;
	height: 42px;
	margin: -10px auto 0;
	background: rgba(255, 255, 255, 0.07);
	background-image: none;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
}

footer #arrowTop::before {
	content: '';
	position: absolute;
	left: 14px;
	top: 16px;
	width: 12px;
	height: 12px;
	border-top: 2px solid var(--brand);
	border-left: 2px solid var(--brand);
	transform: rotate(45deg);
}

footer #arrowTop:hover {
	background: rgba(245, 169, 0, 0.12);
}

#contactSlide {
	height: 520px;
	background-position: center;
}

#contactSlide::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(6, 16, 27, 0.82), rgba(6, 16, 27, 0.26));
}

#contactSlide .cSlideContent,
#contactSlide .cSlideContent.location,
#contactSlide .cSlideContent.location2 {
	z-index: 1;
	bottom: 68px;
	text-align: left;
	background: none;
}

#contactSlide .cSlideContent.location {
	bottom: 132px;
}

#contactSlide .cSlideContent.location2 {
	bottom: 48px;
}

#contactSlide .cSlideContent h1 {
	max-width: 880px;
	color: var(--white);
	font-family: 'proxima_nova_rgbold';
	font-size: clamp(48px, 6vw, 76px);
	line-height: 1;
	text-transform: none;
	letter-spacing: -0.035em;
}

#contactSlide .cSlideContent h2,
#contactSlide .cSlideContent.location2 h2 {
	width: auto;
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 22px;
	line-height: 1.45;
	text-transform: none;
}

#content,
#content.contact {
	padding: 86px 0 100px;
	background: var(--white);
	border: 0;
}

#content.contact .container {
	color: var(--text);
	font-size: 18px;
	line-height: 1.75;
}

#content.contact .container > p {
	margin-bottom: 28px;
}

#content.contact h2,
#content.contact h3,
#content.contact h4 {
	margin: 1.3em 0 0.55em;
	color: var(--ink);
	font-family: 'proxima_nova_rgbold';
	line-height: 1.2;
}

#content.contact h2 {
	font-size: 36px;
}

#content.contact h3 {
	font-size: 27px;
}

#content.contact a {
	color: var(--brand-dark);
}

#content.contact a:hover {
	color: var(--ink);
}

#content.contact .container table {
	width: 100% !important;
	max-width: 100%;
	margin: 30px 0;
	border-collapse: collapse;
}

#content.contact .container table th,
#content.contact .container table td {
	padding: 15px;
	border-bottom: 1px solid var(--line);
}

#content.contact .container table th {
	color: var(--ink);
	font-family: 'proxima_nova_rgbold';
	text-align: left;
	background: var(--surface);
}

#content.contact .container ul.gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 40px;
}

#content.contact .container ul.gallery li {
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-sm);
}

#content.contact .container ul.gallery li a {
	display: block;
}

#content.contact .container ul.gallery li a img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

#content.contact .container ul.gallery li a .image_desc {
	padding: 14px 16px 16px;
	color: var(--text);
	font-size: 16px;
}

.contactForm,
.contactRight {
	float: none;
	width: auto;
}

#content.contact .container:has(.contactForm) {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
	gap: 32px;
}

.contactForm,
.contactRight {
	margin: 0;
	padding: 34px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
}

.contactRight {
	background: var(--ink);
}

.contactRight .phone {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}

.contactRight .phone .num {
	color: var(--white);
	font-family: 'proxima_nova_rgbold';
	font-size: clamp(22px, 2.6vw, 31px);
}

.contactRight .phone .icon {
	flex: 0 0 auto;
	color: var(--ink);
	background: var(--brand);
	border-color: var(--brand);
}

.contactForm input,
.contactForm select,
.contactForm textarea {
	border-color: var(--line);
	border-radius: 10px;
}

.contactForm input:focus,
.contactForm select:focus,
.contactForm textarea:focus {
	background: var(--white);
	border-color: var(--brand);
	box-shadow: 0 0 0 4px rgba(245, 169, 0, 0.12);
}

.contactForm .rightSend input[type='submit'] {
	color: var(--ink);
	font-family: 'proxima_nova_rgbold';
	background: var(--brand);
	border: 0;
	border-radius: 999px;
}

#mapContent {
	background: var(--surface);
}

#map_canvas,
#map_canvas.location {
	filter: saturate(0.72) contrast(1.04);
}

#mapContent .mapL .location,
#mapContent .mapL .location2 {
	color: var(--white);
	background: rgba(12, 23, 37, 0.94);
	background-image: none;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
	backdrop-filter: blur(12px);
}

#mapContent .mapL .location {
	top: 28px;
	padding: 15px 24px;
	font-family: 'proxima_nova_rgbold';
	font-size: 22px;
}

#mapContent .mapL .location2 {
	top: 42px;
	left: max(24px, calc((100% - 1180px) / 2));
	width: 310px;
	padding: 28px;
	color: rgba(255, 255, 255, 0.76);
}

#mapContent .mapL .location2 b {
	color: var(--white);
	font-family: 'proxima_nova_rgbold';
}

.fgdpr-holder {
	width: min(980px, calc(100% - 32px));
	left: 50%;
	bottom: 18px;
	padding: 18px;
	color: var(--text);
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
	transform: translateX(-50%);
	backdrop-filter: blur(16px);
}

.fgdpr-holder .fgdpr-allow,
.fgdpr-holder .fgdpr-disallow {
	padding: 9px 14px;
	border-radius: 999px;
}

.fgdpr-holder .fgdpr-allow {
	color: var(--ink);
	background: var(--brand);
}

@media (max-width: 1240px) {
	#slidebar .navArrow a.left {
		left: 0;
	}

	#slidebar .navArrow a.right {
		right: 0;
	}
}

@media (max-width: 1080px) {
	#topmenu li > a,
	#topmenu.small li > a {
		padding-inline: 8px;
		font-size: 12px;
	}

	header .headRight {
		padding-left: 20px;
	}
}

@media (max-width: 980px) {
	.container,
	#slidebar .slideContent,
	#slidebar .slideContent h2 {
		width: min(100% - 36px, 760px);
	}

	.siteHeader .container {
		min-height: 78px;
	}

	header #logoClick img,
	header #logoClick a.small img {
		height: 50px;
	}

	header .headRight {
		justify-content: flex-end;
		flex-direction: row;
		align-items: center;
		width: auto;
		padding: 0;
	}

	.headerUtility {
		margin: 0 12px 0 0;
	}

	.headerContact {
		display: none;
	}

	.menuToggle {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 5px;
		width: 44px;
		height: 44px;
		padding: 0;
		cursor: pointer;
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 10px;
	}

	.menuToggle > span:not(.visuallyHidden) {
		display: block;
		width: 20px;
		height: 2px;
		background: var(--white);
		border-radius: 99px;
	}

	.mainNav.active .menuToggle {
		background: var(--brand);
		border-color: var(--brand);
	}

	.mainNav.active .menuToggle > span:not(.visuallyHidden) {
		background: var(--ink);
	}

	#topmenu,
	#topmenu.small {
		position: absolute;
		top: 56px;
		right: 0;
		display: none;
		width: min(340px, calc(100vw - 36px));
		max-height: calc(100vh - 96px);
		margin: 0;
		padding: 14px;
		overflow-y: auto;
		text-align: left;
		background: rgba(9, 19, 31, 0.99);
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: var(--radius-sm);
		box-shadow: var(--shadow-lg);
	}

	#topmenu li,
	#topmenu ul li {
		display: block;
		height: auto;
	}

	#topmenu li > a,
	#topmenu.small li > a {
		padding: 12px;
		font-size: 14px;
		border-radius: 8px;
	}

	#topmenu li > a::after {
		display: none;
	}

	#topmenu li.active > a,
	#topmenu li:hover > a {
		color: var(--ink);
		background: var(--brand);
	}

	#topmenu ul {
		position: static;
		display: block;
		width: auto;
		margin: 3px 0 8px 12px !important;
		padding: 0 0 0 10px;
		background: transparent;
		border: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.16);
		border-radius: 0;
		box-shadow: none;
	}

	#topmenu ul li a,
	#topmenu.small ul li a {
		padding: 9px 10px;
		color: rgba(255, 255, 255, 0.7) !important;
		background: transparent;
	}

	#topmenu ul li a:hover {
		color: var(--brand) !important;
		background: transparent;
	}

	#slidebar .slideContainer {
		padding-top: 78px;
	}

	#slidebar .slideCont {
		width: min(720px, 88%);
	}

	#slidebar .navArrow {
		display: none;
	}

	#benefits .container,
	footer .container,
	#content.contact .container:has(.contactForm) {
		grid-template-columns: 1fr;
	}

	#content.contact .container ul.gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	footer .social,
	footer .dev,
	footer #arrowTop {
		grid-column: 1;
	}
}

@media (max-width: 720px) {
	.container,
	#slidebar .slideContent,
	#slidebar .slideContent h2 {
		width: calc(100% - 32px);
	}

	#langChange a {
		width: 29px;
		height: 29px;
	}

	#slidebar {
		height: 720px;
		min-height: 0;
	}

	#slidebar::before {
		background: linear-gradient(180deg, rgba(5, 14, 24, 0.72), rgba(5, 14, 24, 0.86));
	}

	#slidebar .slideCont {
		width: 100%;
		padding-bottom: 42px;
	}

	#slidebar .slideContent h2 {
		font-size: clamp(40px, 12vw, 60px);
	}

	#slidebar .slideContent .descript {
		font-size: 18px;
	}

	.heroActions {
		align-items: stretch;
		flex-direction: column;
		width: min(330px, 100%);
	}

	#request,
	#benefits,
	#content,
	#content.contact {
		padding: 72px 0;
	}

	#request .icons {
		width: 100%;
		min-height: 0;
		margin: 10px 0;
	}

	#benefits .container {
		gap: 20px;
	}

	#benefits .list,
	#benefits .rightBox,
	.contactForm,
	.contactRight {
		padding: 26px;
	}

	#contactSlide {
		height: 430px;
	}

	#contactSlide .cSlideContent h1 {
		font-size: 46px;
	}

	#contactSlide .cSlideContent.location {
		bottom: 150px;
	}

	#content.contact .container ul.gallery {
		grid-template-columns: 1fr;
	}

	#content.contact .container ul.gallery li a img {
		height: 250px;
	}

	#content.contact .container table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}

	footer {
		padding-top: 62px;
	}

	footer .footerBox.newsletter .newsletterCont form {
		grid-template-columns: 1fr;
	}

	footer .social .leftSep,
	footer .social .rightSep {
		display: none;
	}

	footer .social .center {
		width: 100%;
		padding: 0;
	}

	#mapContent .mapL .location2 {
		left: 16px;
		width: calc(100% - 32px);
	}

	.fgdpr-holder {
		bottom: 10px;
	}

	.fgdpr-left,
	.fgdpr-right {
		float: none;
		width: 100%;
	}
}

@media (max-width: 440px) {
	header #logoClick img,
	header #logoClick a.small img {
		height: 43px;
	}

	.headerUtility {
		margin-right: 8px;
	}

	#slidebar {
		height: 680px;
	}

	#slidebar .slideContent h2 {
		font-size: 38px;
	}

	.heroEyebrow {
		font-size: 12px;
	}

	#request .title h1,
	#benefits h2 {
		font-size: 34px;
	}

	#contactSlide .cSlideContent h1 {
		font-size: 38px;
	}

	#contactSlide .cSlideContent h2,
	#contactSlide .cSlideContent.location2 h2 {
		font-size: 18px;
	}

	.contactRight .phone .num {
		font-size: 21px;
	}

	#benefits .rightBox .benefitsBtn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
