<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}
html { height: 101%; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }

blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
strong { font-weight: bold; } 

input { outline: none; }

table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; }


body {
	width: 100%;
	min-height: 100%;
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  min-width: 310px;
  overflow-x: hidden;
}

body * {
	box-sizing: border-box;
	-webkit-touch-callout:none;               
 	-webkit-text-size-adjust:none;          
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  font-family: var(--main-font-reg);
  color: var(--grey2);
}

div, section, form {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 400;
	margin: 0;
}

a {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	text-decoration: none;
	transition: .2s;
}

.a:hover {
	text-decoration: underline;
}

p {
	color: inherit;
	font-size: inherit;
	font-family: inherit;
	margin: 0;
}

ul {
	list-style-type: none;
	box-sizing: border-box;
}

.reverse {
	flex-wrap: wrap-reverse;
}

.btn {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
	cursor: pointer;
	font-size: 20px;
	align-items: center;
	border-radius: 15px;
	transition: .2s;
	height: 73px;
	border-radius: 15px;
	text-align: center;
}

.btn-blue {
	background: var(--bg-blue);
	box-shadow: none;
	color: var(--white);
	border: none;
}

.btn-blue:hover {
	background: var(--bg-blue-hover);
}

.btn-blue:active {
	background: var(--bg-blue-active);
}

.btn-white {
	box-shadow: none;
	color: var(--white);
	border: solid 1px var(--white);
	background: transparent;
}

.btn-white:hover {
	background: var(--bg-white);
	color: var(--blue);
}

.btn-white:active {
	background: var(--bg-white);
	color: var(--blue-active);
}

.btn-blue-tr {
	border: solid 1px var(--blue);
	color: var(--blue);
	background: transparent;
}

.btn-blue-tr:hover {
	color: var(--white);
	background: var(--bg-blue);
}

.mobile {
	display: none;
}

body .scrollbar-thumb {
	background: var(--bg-grey);
}

body .scrollbar-track {
	background: transparent;
}

.img {
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header {
	z-index: 20;
	height: 145px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	align-items: center;
}

.header[data-active="true"] {
	background: var(--bg-white);
	box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
}

.header .container {
	width: 100%;
	padding: 0px 15px;
	justify-content: space-between;
	align-items: center;
	max-width: 1530px;
	flex-wrap: nowrap;
}

.header .block {
	flex-grow: 1;
	margin: 0px 20px;
}

.header .logo {
	height: 46px;
}

.header .btn.laptop {
	width: 290px;
	height: 73px;
}

.header .btn.mobile .hamburger {
	width: 30px;
	height: 30px;
}

.hamburger div,
.hamburger div::before,
.hamburger div::after {
  background-color: var(--blue);
  height: 2px;
  width: 30px;
  transition: .2s;
}

.hamburger div::before {
  content: '';
  margin-top: -8px;
}

.hamburger div::after {
  content: '';
  margin-top: 8px;
}

.hamburger[data-active="true"] div {
	margin-top: 0px;
	transform: rotate(45deg);
}

.hamburger[data-active="true"] div::before {
	opacity: 0;
}

.hamburger[data-active="true"] div::after {
	margin-top: 0px;
	transform: rotate(90deg);
}

.header .menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 260px;
	background: var(--bg-white);
	flex-direction: column;
	padding: 30px;
	box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
	flex-wrap: nowrap;
}

.header .menu a {
	font-size: 20px;
	margin-bottom: 20px;
	justify-content: flex-start;
}

.header .menu .btn {
	margin: 30px 0px;
	height: 51px;
	min-height: 51px;
	border-radius: 10px;
}

.navigation {
	margin-top: 160px;
	justify-content: flex-start;
}

.navigation .btn {
	align-self: flex-start;
	padding: 22px 30px;
	font-size: 24px;
	border-width: 2px;
}

.navigation .btn .arrow {
	margin-right: 11px;
	height: 17px;
	transition: .2s;
}

.navigation .btn:hover .arrow {
	filter: brightness(0) invert(1);
}

.top {
	flex-direction: column;
	margin-top: 40px;
}

.top .block {
  flex-wrap: nowrap;
}

.top .title {
	justify-content: flex-start;
	font-size: 64px;
	font-family: var(--main-font-bold);
	flex-grow: 1;
}

.top .btn {
	padding: 22px 30px;
}

.top .description {
	margin-top: 40px;
	opacity: 0.5;
	font-size: 24px;
    display: block;
}

.top .description p {
	margin: 0;
}

section {
	margin: 100px 0px 0px 0px;
	padding: 0px 15px;
	max-width: 1530px;
	width: 100%;
}

.footer {
	margin: 100px 0px 0px 0px;
	width: 100%;
	border-top: solid 1px rgba(81, 81, 81, 0.5);
	min-height: 75px;
}

.footer .container {
	padding: 0px 15px;
	width: 100%;
	max-width: 1530px;
	justify-content: space-between;
	align-items: center;
}

.footer .container &gt; * {
	margin: 15px;
}

.footer .text {
	font-family: var(--main-font-medium);
	opacity: 0.6;
}

.footer .block {
	margin: 15px 0px;
}

.footer .block a {
	margin: 0px 15px;
	flex-wrap: nowrap;
}

.footer .block a img {
	height: 100%;
}

.footer .ipos .text {
	font-size: 13px;
	line-height: 12px;
	margin-left: 5px;
}

.footer .ipos img {
	height: 100%;
}

.popup {
	z-index: 50;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden wrap;
	display: none;
	justify-content: center;
	align-items: center;
}

.popup .bg {
	z-index: 40;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	backdrop-filter: blur(2px);
	background: rgba(0,0,0,0.3);
}

.popup .sendresume {
	display: none;
	z-index: 41;
	background: var(--bg-white);
	border-radius: 50px;
	width: 1240px;
	max-height: 100%;
	margin-bottom: 25px;
	padding: 35px;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
}

.popup .sendresume  .text {
	justify-content: flex-start;
	color: var(--blue);
	font-size: 48px;
	font-family: var(--main-font-medium);
	width: 70%;
	margin: 30px 25px 50px 25px;
}

.popup .sended {
	z-index: 41;
	background: var(--bg-white);
	border-radius: 50px;
	width: 680px;
	padding: 70px;
	flex-direction: column;
	display: none;
}

.popup .sended .title {
	font-family: var(--main-font-medium);
	color: var(--blue);
	font-size: 48px;
	margin-bottom: 40px;
}

.popup .sended .subtitle {
	width: 100%;
	font-size: 24px;
	text-align: center;
	margin-bottom: 60px;
}

.popup .sended .btn {
	width: 100%;
	align-items: center;
}

.close {cursor: pointer; position: absolute; top: 50px; right: 50px; padding: 20px;}
.close:before, .close:after {content: ""; position: absolute; width: 24px; height: 2px; background: var(--blue);}
.close:before {transform: rotate(45deg);}
.close:after {transform: rotate(-45deg);}

.resumeform {
	flex-wrap: wrap;
}

.resumeform .items {
	flex-grow: 1;
	width: calc(50% - 60px);
	margin: 0 25px;
	flex-direction: column;
	justify-content: space-between;
	min-width: 250px;
}

.resumeform .field &gt; label {
	font-size: 20px;
	opacity: 0.7;
	width: 100%;
	justify-content: flex-start;
	margin-bottom: 10px;
	height: 20px;
	position: relative;
}

.resumeform  label .invalid {
	position: absolute;
	top: -15px;
	left: 0;
	font-size: 12px;
	color: inherit;
	display: none;
}

.resumeform  .field[data-invalid="true"] label {
	color: var(--red);
}

.resumeform  .field[data-invalid="true"] input {
	border-color: var(--red);
}

.resumeform .field[data-invalid="true"] label .invalid {
	display: flex;
}

.resumeform .field {
	margin-bottom: 20px;
	position: relative;
}

.resumeform .input {
	width: 100%;
	height: 64px;
	border-radius: 15px;
	outline: none;
	border:  solid 1px var(--grey2);
	padding: 20px 30px;
	font-size: 20px;
	opacity: 0.5;
	z-index: 4;
}

.resumeform .input:focus {
	opacity: 1;
}

.resumeform .input.withli {
	z-index: 6;
}

.resumeform .input.withli:focus {
	border-bottom: solid 1px var(--bg-grey);
}

.resumeform ul {
	/* display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% - 32px); */
	max-height: 250px;
	background: var(--white);
	z-index: 4;
	padding: 32px 0px 10px 0px;
	overflow: auto;
	border-radius: 0px 0px 15px 15px;
	z-index: 5;
    scrollbar-color: var(--orange) #E6E6E6;
}

.resumeform .vacancy_container {
    display: none;
    position: absolute;
    left: 0;
	right: 0;
    top: calc(100% - 32px);
    background: #FFF;
    width: 100%;
    padding: 10px 5px;
    max-height: 250px;
}

.resumeform ul::-webkit-scrollbar {
    width: 5px;
}

.resumeform ul::-webkit-scrollbar-thumb {
	background-color: var(--orange);
    border-radius: 3px;
}

.resumeform ul .scroll {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: nowrap;
  overflow: hidden;
  height: 100%;
  padding: 0px 25px;
}

.resumeform ul .scrollbar-track {
	margin-right: 7.5px;
	background: var(--bg-grey);
	border-radius: 5px;
}

.resumeform ul .scrollbar-thumb {
	background: var(--orange)
}

.resumeform ul li {
	font-size: 18px;
	justify-content: flex-start;
	padding: 15px 10px;
	width: 100%;
	cursor: pointer;
}

.resumeform ul li:not(:last-child) {
	border-bottom: solid 1px var(--bg-grey);
}

.resumeform ul li:hover {
	background: var(--bg-grey);
}

.resumeform .file {
    position: relative;
	margin-top: 30px;
	border-radius: 15px;
	border: dashed 1px var(--blue);
	align-items: center;
	align-content: center;
	padding: 40px;
	flex-direction: column;
	cursor: pointer;
}

.response .file.error_field * {
    color: #CA1A1A !important;
}
.response .file.error_field .arrow {
    border-color: #CA1A1A !important;
}

.resumeform .file[data-invalid='true'] {
	border-color: var(--red);
}

.resumeform .file .arrow {
	width: 20px;
	height: 40px;
	border-bottom: solid 1px var(--blue);
	color: var(--blue);
	font-size: 30px;
}

.resumeform .file[data-invalid='false'] .arrow {
	display: none;
}

.resumeform .file .title {
	font-family: var(--main-font-medium);
	color: var(--blue);
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
}

.resumeform .file .subtitle {
	color: var(--blue);
	font-size: 18px;
	text-align: center;
}

.resumeform .fileinput {
	display: none;
}

.resumeform .checkbox {
	margin-top: 30px;
  margin-bottom: 10px;
	align-items: center;
	flex-wrap: nowrap;
  justify-content: flex-start;
}

.resumeform .checkbox label {
  color: var(--blue);
  font-size: 16px;
  min-height: 24px;
  display: flex;
  align-items: center;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label:before {
  content: "\2714";
  color: transparent;
  display: inline-block;
  border: 1px solid var(--blue);
  font-size: 18px;
  line-height: 22px;
  margin-right: 5px;
  height: 24px;
  width: 24px;
  text-align: center;
  vertical-align: middle;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

input[type=checkbox]:checked + label:before {
  color: var(--white);
  background: var(--blue)
}

.resumeform .btn {
	width: 100%;
	height: 73px;
	margin-bottom: 20px;
	align-items: center;
}

.resumeform .btn[data-disabled='true'] {
	opacity: 0.5;
}

.cookies {
  display: none;
  background: var(--bg-white);
  min-height: 111px;
  max-width: 1100px;
  margin: 0px 15px 50px 15px;
  padding: 15px 25px;
  position: fixed;
  bottom: 0;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.16);
  justify-content: space-between;
  z-index: 20;
}

.cookies .text {
  flex-direction: column;
  align-items: flex-start;
  margin: 15px 25px;
}

.cookies .title {
  color: var(--blue);
  font-size: 20px;
  font-family: var(--main-font-medium);
  margin-bottom: 5px;
}

.cookies .subtitle {
  font-size: 18px;
}

.cookies .btn {
  margin: 15px 25px;
  width: 243px;
  height: 51px;
  font-size: 18px;
}

.error_note {
    display: block;
    text-align: center;
    max-height: 50px;
    transition: .3s;
}

.not_active_error {
    max-height: 0 !important;
}

.error_field {
    border: 1px dashed red !important;
    background: #FFF !important;
}

.sendresume .error_field * {
    color: red !important;
}

.response .error_field .arrow {
    border-color: red !important;
}

.sendresume .error_note {
    color: red;
}

.response .error_field * {
    color: red !important;
}

/* .response .error_note {
    color: white;
} */

.sendresume .error_field .arrow {
    border-bottom: solid 1px red !important;
}
.vacancy .block2 .items2.manager .refs{
	flex:1;
}
a.all-vacancies{
	border: 1px solid var(--bg-blue);
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--bg-blue);
    font-size: 22px;
    padding: 10px;
}

@media(max-width: 800px) {
	.laptop {
		display: none;
	}
	.mobile {
		display: flex;
	}
	.header {
		height: 100px;
	}
	.navigation {
		margin-top: 120px;
	}
	.navigation .btn {
		padding: 10px 15px;
		border-radius: 7px;
		font-size: 12px;
		border-width: 1px;
	}
  .navigation .btn .arrow {
    height: 12px;
  }
	.top .title {
		font-size: 36px;
	}
	.top .description {
		font-size: 16px;
        margin-top: 20px;
	}
	.top .btn {
		padding: 16px;
		font-size: 16px;
		margin-top: 40px;
	}
	.btn {
		height: 51px;
		font-size: 16px;
		border-radius: 10px;
	}
	section {
		margin: 80px 0px 0px 0px;
		padding: 0px 15px;
	}
	.footer .container {
		margin: 0px 15px;
	}
	.footer .container &gt; * {
		width: 100%;
		justify-content: flex-start;
	}
	.footer .block {
		flex-direction: column;
		align-items: flex-start;
		margin: 0px;
	}
	.footer .container &gt; .text {
		margin: 20px 0px 30px 0px;
	}
	.footer .block a {
		margin: 0px 0px 15px 0px;
	}
	.footer .ipos {
		margin: 35px 0px 30px 0px;
	}

	.popup .close {
		top: 10px;
		right: 10px;
	}
	.popup .sendresume {
		padding: 40px 0px;
		border-radius: 30px;
	}
	.popup .sendresume .text {
		font-size: 28px;
		margin: 0px 15px 25px 15px;
	}

	.popup .sended {
		padding: 40px 15px;
		border-radius: 30px;
	}

	.popup .sended .title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.popup .sended .subtitle {
		font-size: 16px;
		margin-bottom: 40px;
	}

	.resumeform {
		margin: 0px;
	}
	.resumeform .items {
		margin: 0px 15px;
	}
	.resumeform label {
		font-size: 14px;
	}
	.resumeform .input {
		font-size: 16px;
		height: 51px;
		border-radius: 10px;
	}
	.resumeform .file .title {
		font-size: 18px;
		text-align: center;
	}
	.resumeform .file .subtitle {
		font-size: 14px;
		text-align: center;
	}
	.resumeform .checkbox label {
		font-size: 12px;
	}
	.resumeform .btn {
		height: 51px;
		font-size: 16px;
	}
 .cookies {
    margin: 0px 15px 15px 15px;
 }
}</pre></body></html>