:root {
	--black: #121212;
	--white: #FFFFFF;
	--light: #D9D9D9;
	--gray: #9C9C9C;
	--bg: #EBF5FF;
	--green: #42A258;
	--red: #FF4949;
	--ultramarine: #533FD7;
	--font-family: NunitoSans-TL, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	--font-size: 18px;
	--line-height: 1.4em;
	--font-weight: 400;
	--default-transition: .3s ease-in-out;
	--bounce-transition: .45s cubic-bezier(.17, .67, .3, 1.33);
	--border-radius: 12px;
	--box-shadow: 0px 2px 30px rgba(115, 134, 152, 0.2);
	--xxl: 60px;
	--xl: 48px;
	--l: 36px;
	--m: 24px;
	--s: 12px;

	--teamlead-marquee-width: 100%;
	--teamlead-marquee-height: 175px;
	--teamlead-marquee-elements-displayed: 4;
	--teamlead-marquee-element-width: calc(var(--teamlead-marquee-width)/var(--teamlead-marquee-elements-displayed));
	--teamlead-marquee-animation-duration: calc(var(--teamlead-marquee-elements)*4s);

	--photo-marquee-width: 100%;
	--photo-marquee-height: 450px;
	--photo-marquee-elements-displayed: 2.5;
	--photo-marquee-element-width: calc(var(--photo-marquee-width)/var(--photo-marquee-elements-displayed));
	--photo-marquee-animation-duration: calc(var(--photo-marquee-elements)*10s);

	--people-marquee-width: 32%;
	--people-marquee-height: 100%;
	--people-marquee-elements-displayed: 2;
	--people-marquee-element-width: calc(var(--people-marquee-width)/var(--people-marquee-elements-displayed));
	--people-marquee-element-height: calc(var(--people-marquee-height)/var(--people-marquee-elements-displayed));
	--people-marquee-animation-duration-slow: calc(var(--people-marquee-elements-1)*10s);
	--people-marquee-animation-duration-regular: calc(var(--people-marquee-elements-2)*5s);
	--people-marquee-animation-duration-fast: calc(var(--people-marquee-elements-3)*3s);
}

@font-face {
	src: url("../fonts/nunitosans-bold.woff2") format("woff2");
	font-family: "NunitoSans-TL";
	font-weight: 700;
	font-style: normal;
}

@font-face {
	src: url("../fonts/nunitosans-semibold.woff2") format("woff2");
	font-family: "NunitoSans-TL";
	font-weight: 600;
	font-style: normal;
}

@font-face {
	src: url("../fonts/nunitosans-regular.woff2") format("woff2");
	font-family: "NunitoSans-TL";
	font-weight: 400;
	font-style: normal;
}

::selection {
	background-color: var(--ultramarine);
	color: var(--white);
}

html,
body {
	height: 100%;
}

body {
	font-family: var(--font-family);
	font-size: var(--font-size);
	line-height: var(--line-height);
	font-weight: var(--font-weight);
	color: var(--black);
	background-color: var(--white);
	position: relative;
	overflow-x: hidden;
	z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 0;
}

section {
	margin-bottom: 180px;
}

button {
	outline: none;
	border: none;
	background: none;
}

::placeholder {
	color: var(--light);
}

.checkbox {
	width: var(--m);
	height: var(--m);
	margin-right: var(--s);
}

.hide {
	display: none !important;
}

.body_hidden {
	overflow: hidden;
}

.wrapper {
	position: relative;
	z-index: 1;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

.main {
	flex: 1 1 auto;
}

.container {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 1400px;
}

.effect {
	transition: all .75s cubic-bezier(.2, .6, 0, 1);
}

.effect_scale {
	transform: scale(.94);
}

.acc-title {
	font-size: 24px;
	font-weight: 600;
}

.acc-text {
	font-size: 20px;
	font-weight: 700;
}

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ultramarine);
	text-decoration: none;
	font-weight: 600;
	line-height: 100%;
	padding: 10px 56px 10px 0px;
	border-radius: 30px;
	z-index: 2;
	transition: all var(--bounce-transition);
}

.btn::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 30px;
	background: var(--ultramarine);
	transition: all var(--bounce-transition);
	z-index: -1;
}

.btn::before {
	content: '';
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	right: 17px;
	transform: translate(0, -50%);
	background: url("../images/icons/btn-arrow-right-white.svg") no-repeat center / contain;
}

.btn:hover {
	color: var(--white);
	padding: 10px 46px 10px 17px;
}

.btn:hover::after {
	width: 100%;
	height: 60px;
}

.title {
	position: relative;
	display: inline-block;
	z-index: 1;
	font-size: 52px;
	line-height: 1em;
	font-weight: 700;
}

.text-ultramarine {
	color: var(--ultramarine);
}

.text-green {
	color: var(--green);
}

.tags {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: var(--s);
}

.tag {
	padding: 9px 16px;
	border-radius: var(--border-radius);
	color: var(--white);
	background-color: var(--light);
}

.tag_green {
	background-color: var(--green);
}

.tag_cb {
	color: var(--black);
}

.tag_black {
	background-color: var(--black);
}

.tag_ultramarine {
	background-color: var(--ultramarine);
}

.bloquote__title {
	text-align: center;
}

.decor {
	background-color: var(--bg);
	margin-bottom: -250px;
}

.decor__img {
	position: relative;
}

.decor__img img {
	position: absolute;
	top: -120px;
	left: -180px;
}

.rivals {
	margin-bottom: 0;
}

.rivals__wrapper {
	margin-top: var(--l);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--m);
}

.rivals__item {
	width: auto;
	height: 50px;
}

.rivals__item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.habr {
	display: flex;
	justify-content: space-between;
	gap: var(--m);
}

.habr__title {
	font-size: 36px;
	line-height: 1.2em;
	font-weight: 600;
}

.habr__link {
	font-size: 36px;
	font-weight: 600;
	color: var(--green);
	text-decoration: none;
	transition: var(--default-transition);
}

.habr__link:hover {
	text-decoration: underline;
	color: var(--green);
}

.habr__item {
	font-weight: 600;
	width: 230px;
	flex: none;
}

.habr__item_grade {
	color: var(--green);
}

.habr__item_grade .habr__item-icon {
	background: url("../images/icons/star-green.svg") no-repeat center / contain;
}

.habr__item_recom {
	color: var(--ultramarine);
}

.habr__item_recom .habr__item-icon {
	background: url("../images/icons/heart-ultramarine.svg") no-repeat center / contain;
}

.habr__item-header {
	display: flex;
	align-items: center;
	margin-bottom: var(--s);
}

.habr__item-icon {
	width: var(--m);
	height: var(--m);
	margin-right: var(--s);
}

.habr__item-number {
	line-height: 1em;
}

.stack__title {
	text-align: center;
	display: block;
}

.stack__text {
	max-width: 900px;
	margin: var(--l) auto var(--m) auto;
	text-align: center;
}

.stack__wrapper {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: 1fr;
	gap: var(--m);
}

.stack__item {
	width: 100%;
	height: 100%;
	border-radius: var(--border-radius);
	background-color: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: var(--l);
}

.stack__item-img {
	width: 100%;
	max-width: 160px;
	height: 130px;
	flex: none;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stack__item-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.stack__item-name {
	margin-top: var(--s);
	text-align: center;
}

.default-page {
	padding-top: 180px;
}

.defaul-page__wrapper {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.defaul-page__title {
	margin-bottom: var(--l);
}

.default-page table {
	border-bottom: 1px solid var(--light) !important;
}

.default-page td,
.default-page th {
	border: none !important;
}

.page404 {
	padding-top: 180px;
	padding-bottom: 90px;
}

.page404__content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.page404__picture {
	position: relative;
	margin-bottom: var(--l);
	display: flex;
	align-items: center;
	justify-content: center;
}

.page404__picture span {
	display: inline-block;
	color: var(--ultramarine);
	line-height: 100%;
	font-weight: 700;
	font-size: 180px;
}

.page404__animation {
	width: 300px;
	height: 300px;
}

.page404__title {
	margin-bottom: var(--s);
}

.page404__descr {
	margin-bottom: var(--l);
}

.accordions__wrapper {
	margin-top: var(--l);
}

.accordion {
	border-top: 1px solid var(--light);
	border-bottom: 1px solid var(--light);
	margin-top: -1px;
}

.accordion__header {
	padding-top: var(--m);
	padding-bottom: var(--m);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: var(--default-transition);
}

.accordion__header:hover .accordion__title {
	color: var(--green);
}

.accordion__header_active .accordion__icon {
	background: url("../images/icons/accordion-icon-top.svg") no-repeat center / contain;
	transform: rotate(180deg);
}

.accordion__header_active .accordion__title {
	color: var(--green);
}

.accordion__title {
	transition: var(--default-transition);
}

.accordion__icon {
	flex: none;
	margin-left: var(--m);
	width: var(--l);
	height: var(--l);
	background: url("../images/icons/accordion-icon-bottom.svg") no-repeat center / contain;
	transition: var(--default-transition);
}

.accordion__body {
	max-height: 0;
	overflow: hidden;
	transition: var(--default-transition);
}

.accordion__content {
	padding-bottom: var(--m);
}

.city {
	padding-top: 180px;
}

.city__content {
	position: relative;
	z-index: 2;
}

.city__title {
	max-width: 900px;
}

.city__title span {
	color: var(--ultramarine);
}

.city__text {
	max-width: 700px;
	margin-top: var(--l);
	margin-bottom: var(--l);
}

.city__animation {
	height: 450px;
	position: relative;
}

.city__animation-block {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 1800px;
	height: 800px;
}

.city__animation-block div {
	width: 100%;
	height: 100%;
}

.city__animation-block svg {
	width: 100%;
	height: 100%;
}

.competence__wrapper {
	margin-top: var(--l);
}

.competence__block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--m);
}

.competence__block:last-child {
	margin-bottom: 0;
}

.competence__block-column {
	width: 48%;
	flex: none;
}

.competence__block-title {
	margin-bottom: var(--m);
}

.competence__block-tags {
	margin-top: var(--m);
}

.competence__block-img {
	width: 100%;
	height: 500px;
}

.competence__block-img div {
	width: 100%;
	height: 100%;
}

.competence__block-img svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.competence__block-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.culture {
	padding-top: 180px;
}

.culture__wrapper {
	margin-top: var(--l);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 1fr;
	gap: var(--m);
}

.culture__item {
	padding: var(--l);
	background-color: var(--bg);
	border-radius: var(--border-radius);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.culture__item_1,
.culture__item_4 {
	grid-column: span 2;
}

.culture__item_1 .culture__item-img {
	background: url("../images/drawings/mountain.svg") no-repeat center / contain;
}

.culture__item_4 .culture__item-img {
	background: url("../images/drawings/molecule.svg") no-repeat center / contain;
}

.culture__item-content {
	display: flex;
	flex-direction: column;
	width: 60%;
}

.culture__item-title {
	margin-bottom: var(--s);
}

.culture__item-text {
	margin-right: var(--m);
}

.culture__item-img {
	flex: none;
	width: 300px;
	height: 300px;
}

.culture__item-bloquote {
	display: flex;
	flex-direction: column;
}

.culture__item-fw {
	font-weight: 600;
}

.culture__item-quotes {
	width: var(--m);
	height: var(--m);
	background: url("../images/icons/quotes-ultramarine.svg") no-repeat center / contain;
	margin-bottom: var(--s);
}

.footer {
	background-color: var(--black);
	color: var(--white);
	padding-top: var(--xxl);
	padding-bottom: var(--xxl);
}

.footer__wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer__column {
	width: 20%;
	flex: none;
}

.footer__column:nth-child(1) {
	margin-right: auto;
}

.footer__logo {
	display: inline-block;
	width: 200px;
	height: 40px;
	background: url("../images/drawings/white-logo.svg") no-repeat center / contain;
}

.footer__menu-name {
	margin-bottom: var(--m);
}

.footer__menu-list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.footer__menu-list>li {
	margin-bottom: var(--s);
}

.footer__menu-list>li:last-child {
	margin-bottom: 0;
}

.footer__menu-list>li>a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: var(--gray);
	transition: var(--default-transition);
	padding-top: 2px;
	padding-bottom: 2px;
}

.footer__menu-list>li>a:hover {
	color: var(--green);
}

.footer__menu-list>.current-menu-item>a {
	font-weight: 700;
	color: var(--green);
}

.footer__menu-list>.current-menu-item>a:hover {
	color: var(--green);
}

.footer__block {
	color: var(--gray);
	margin-top: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.footer__block-menu {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--m);
	width: 100%;
	margin-bottom: var(--l);
}

.footer__block-menu>li {
	flex: none;
}

.footer__block-menu>li>a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: var(--gray);
	transition: var(--default-transition);
	padding-top: 2px;
	padding-bottom: 2px;
}

.footer__block-menu>li>a:hover {
	color: var(--green);
}

.footer__block-menu>.current-menu-item>a {
	font-weight: 700;
	color: var(--green);
}

.footer__block-menu>.current-menu-item>a:hover {
	color: var(--green);
}

.mail,
.phone-i,
.telegram {
	padding-left: var(--l);
}

.mail::before,
.phone-i:before,
.telegram:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: var(--m);
	height: var(--m);
	transition: all var(--default-transition);
}

.mail::before {
	background: url("../images/icons/mail.svg") no-repeat center/contain;
}

.telegram:before {
	background: url("../images/icons/telegram.svg") no-repeat center/contain;
}
.phone-i:before {
	background: url("../images/icons/phone-i.svg") no-repeat center/contain;
}
.mail:hover::before {
	background: url("../images/icons/mail-green.svg") no-repeat center/contain;
}
.phone-i:hover:before {
	background: url("../images/icons/phone-i-green.svg") no-repeat center/contain;
}

.telegram:hover:before {
	background: url("../images/icons/telegram-green.svg") no-repeat center/contain;
}

.header {
	position: fixed;
	top: -2px;
	left: 50%;
	transform: translate(-50%, 0);
	width: 100%;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	background-color: rgba(255, 255, 255, 0);
	border-bottom: 1px solid rgba(217, 217, 217, 0);
	transition: all var(--default-transition);
}

.header_scroll {
	height: 70px;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: var(--box-shadow);
}

.header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__logo {
	display: inline-flex;
	text-decoration: none;
	transition: all var(--default-transition);
	width: 200px;
	height: 40px;
	background: url("../images/drawings/color-logo.svg") no-repeat center/contain;
	margin-right: var(--xxl);
}

.header__burger {
	position: relative;
	width: 30px;
	height: 18px;
	border: 0;
	background-color: rgba(255, 255, 255, 0);
}

.header__burger-strip {
	display: block;
	position: absolute;
	right: 0;
	width: 30px;
	height: 2px;
	background-color: var(--black);
	border-radius: var(--border-radius);
	transition: all var(--default-transition);
	opacity: 1;
}

.header__burger-strip:nth-child(1) {
	width: 20px;
	top: 0;
}

.header__burger-strip:nth-child(2) {
	top: 50%;
	transform: translate(0, -50%);
}

.header__burger-strip:nth-child(3) {
	top: 50%;
	transform: translate(0, -50%);
}

.header__burger-strip:nth-child(4) {
	width: 20px;
	bottom: 0;
}

.header__burger:hover .header__burger-strip {
	background-color: var(--green);
}

.header__burger_active .header__burger-strip:nth-child(1) {
	top: -4px;
	opacity: 0;
}

.header__burger_active .header__burger-strip:nth-child(2) {
	transform: translate(0, -50%) rotate(45deg);
}

.header__burger_active .header__burger-strip:nth-child(3) {
	transform: translate(0, -50%) rotate(-45deg);
}

.header__burger_active .header__burger-strip:nth-child(4) {
	bottom: -4px;
	opacity: 0;
}

.header__languages {
	line-height: 1em;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-right: auto;
}

.header__languages>li {
	position: relative;
}

.header__languages>li>a {
	text-decoration: none;
	transition: var(--default-transition);
	color: var(--gray);
	text-transform: uppercase;
}

.header__languages>li>a::after {
	content: "/";
	margin: 0 10px;
	color: var(--gray);
	font-weight: 400;
}

.header__languages>li:last-child>a::after {
	display: none;
}

.header__languages>li.current-lang>a {
	font-weight: 700;
	color: var(--black);
}

.hero {
	background-color: var(--bg);
	padding-top: 180px;
	padding-bottom: 90px;
	margin-bottom: 0;
}

.hero_bottom {
	padding-top: 60px;
	padding-bottom: 60px;
	margin-bottom: 0;
	background-color: var(--white);
}

.hero_bottom .title {
	display: block;
}

.hero_bg {
	background-color: var(--bg);
}

.hero_bottom .hero__title::before {
	display: none;
}

.hero__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hero__title::before {
	content: '';
	position: absolute;
	left: -15px;
	top: 0;
	height: 60px;
	width: 270px;
	border-radius: 130px / 30px;
	border: 3px solid var(--ultramarine);
	z-index: -1;
	transform: rotate(-5deg);
}

.hero__text {
	margin-top: var(--l);
	margin-bottom: var(--l);
}

.hero__img {
	overflow: hidden;
	flex: none;
	width: 600px;
	height: 500px;
}

.hero__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hero__img video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hero__group {
	margin-top: var(--xxl);
	margin-bottom: var(--xxl);
	display: flex;
}

.hero__item {
	margin-right: 180px;
}

.hero__item:last-child {
	margin-right: 0;
}

.hero__item-label {
	margin-bottom: var(--s);
}

.hero__item-link {
	color: var(--black);
	text-decoration: none;
	transition: var(--default-transition);
	font-size: 44px;
	font-weight: 600;
}

.hero__item-link:hover {
	color: var(--green);
}

.hero__offices {
	display: flex;
	justify-content: space-between;
	padding-top: var(--xxl);
	padding-bottom: var(--xxl);
	border-top: 1px solid var(--light);
}

.hero__office {
	width: 30%;
	flex: none;
}

.hero__office-town {
	margin-bottom: var(--s);
}

.hero__office-street {
	margin-bottom: var(--m);
}

.life {
	margin-bottom: 0;
}

.life__title_margin {
	margin-top: 180px;
}

.life__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.life__column {
	width: 48%;
	flex: none;
}

.life__text {
	margin-top: var(--m);
}

.life__block {
	width: 100%;
	margin-top: var(--m);
}

.life__img {
	position: relative;
	border-radius: var(--border-radius);
	box-shadow: 12px 12px 36px rgba(115, 134, 152, .9);
}

.life__img::after {
	content: "";
	position: absolute;
	background-color: var(--bg);
	border-radius: var(--border-radius);
	z-index: -1;
}

.life__img_1 {
	width: 90%;
	height: 550px;
	background: url("../images/people/people1.png") no-repeat center / cover;
}

.life__img_1::after {
	bottom: -10%;
	right: -10%;
	height: 130%;
	width: 50%;
}

.life__img_2 {
	width: 90%;
	height: 600px;
	background: url("../images/people/people2.png") no-repeat center / cover;
}

.life__img_2::after {
	bottom: -15%;
	right: -15%;
	height: 100%;
	width: 100%;
}

.life__img_3 {
	width: 130%;
	height: 410px;
	background: url("../images/people/people3.png") no-repeat center / cover;
	margin-left: -40%;
	margin-top: 120px;
}

.teamlead-marquee {
	position: relative;
	width: var(--teamlead-marquee-width);
	height: var(--teamlead-marquee-height);
	background: linear-gradient(90deg, #533FD7 0%, #02C473 100%);
	overflow: hidden;
}

.teamlead-marquee__content {
	list-style: none;
	height: 100%;
	display: flex;
	padding: 0;
	margin: 0;
	animation: scrolling var(--teamlead-marquee-animation-duration) linear infinite;
}

@keyframes scrolling {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-1*var(--teamlead-marquee-element-width)*var(--teamlead-marquee-elements)));
	}
}

.teamlead-marquee__content li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--teamlead-marquee-element-width);
	flex-shrink: 0;
	font-size: calc(var(--teamlead-marquee-height)*2/5);
	white-space: nowrap;
	-webkit-text-stroke: 2px var(--white);
	color: rgba(255, 255, 255, 0);
	font-weight: 700;
}

.nav {
	position: fixed;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--ultramarine);
	z-index: 5;
	opacity: .2;
	visibility: hidden;
	pointer-events: none;
	overflow: hidden;
}

.nav_open {
	top: 0;
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transition: all .75s cubic-bezier(.2, .6, 0, 1);
}

.menu {
	list-style-type: none;
	padding: 0;
	margin: 0;
	position: absolute;
	top: -100%;
	left: 0;
	display: flex;
	align-items: center;
	padding-top: 180px;
	flex-direction: column;
	width: 100%;
	height: 100%;
	background-color: var(--white);
	opacity: .2;
	visibility: hidden;
	pointer-events: none;
}

.menu_open {
	top: 0;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: all .75s cubic-bezier(.2, .6, 0, 1);
	transition-delay: .35s;
}

.menu>li {
	margin-bottom: var(--l);
	transform: translate3d(0, 36px, 0);
	z-index: 2;
}

.menu>li:last-child {
	margin-bottom: 0;
}

.menu>li>a {
	text-decoration: none;
	color: var(--black);
	transition: all var(--default-transition);
	font-size: 44px;
	font-weight: 600;
}

.menu>li>a::before {
	content: '';
	transition: all var(--default-transition);
	width: 200px;
	height: 30px;
	background: url("../images/drawings/menu-link-decor.svg") no-repeat center/contain;
	position: absolute;
	bottom: -24px;
	left: 50%;
	transform: translate(-50%, 0) rotate(-5deg);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.menu>.current-menu-item>a {
	font-weight: 700;
	color: var(--green);
}

.menu>.current-menu-item>a:hover {
	color: var(--green);
}

.menu>.current-menu-item>a:hover::before {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.menu>li>a:hover {
	color: var(--green);
}

.menu>li>a:hover:before {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.menu__bg {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 100%;
	height: 50%;
	background: url("../images/drawings/menu-bg.svg") no-repeat center/contain;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.menu__bg_show {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	transition: all var(--default-transition);
	transition-delay: 1s;
	width: 200%;
}

.numbers__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.numbers__item {
	width: 32%;
}

.numbers__item-header {
	display: flex;
	align-items: center;
}

.numbers__item-value {
	font-size: 120px;
	font-weight: 600;
	line-height: 1em;
	color: var(--ultramarine);
}

.numbers__item-img {
	flex: none;
	width: 200px;
	height: 200px;
}

.numbers__item-img_1 {
	background: url("../images/drawings/palm.svg") no-repeat center / contain;
}

.numbers__item-img_2 {
	background: url("../images/drawings/flowers.svg") no-repeat center / contain;
}

.numbers__item-img_3 {
	background: url("../images/drawings/newton.svg") no-repeat center / contain;
}

.numbers__item-text {
	margin-top: var(--m);
	max-width: 70%;
}

.photo-marquee {
	position: relative;
	width: var(--photo-marquee-width);
	height: var(--photo-marquee-height);
	overflow: hidden;
}

.photo-marquee__content {
	list-style: none;
	height: 100%;
	display: flex;
	padding: 0;
	margin: 0;
	animation: scrolling4 var(--photo-marquee-animation-duration) linear infinite;
}

@keyframes scrolling4 {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-1*var(--photo-marquee-element-width)*var(--photo-marquee-elements)));
	}
}

.photo-marquee__content li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--photo-marquee-element-width);
	flex-shrink: 0;
	overflow: hidden;
	margin-right: var(--m);
}

.photo-marquee__content li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.projects-cards__wrapper {
	margin-top: var(--l);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(4, 1fr); */
	gap: var(--m);
}

.project-card {
	position: relative;
	perspective: 800px;
	min-height: 350px;
}

/* .project-card:nth-child(1) {
	grid-row: 1 / 3;
	grid-column: 1 / 3;
}

.project-card:nth-child(2) {
	grid-row: 1 / 3;
	grid-column: 3 / 5;
}

.project-card:nth-child(3) {
	grid-row: 1 / 3;
	grid-column: 5 / 7;
}

.project-card:nth-child(4) {
	grid-row: 3 / 5;
	grid-column: 2 / 4;
}

.project-card:nth-child(5) {
	grid-row: 3 / 5;
	grid-column: 4 / 6;
} */

.project-card__front,
.project-card__back {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .5s cubic-bezier(.64, .09, .08, 1);
	backface-visibility: hidden;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	padding: var(--m);
}

.project-card__back {
	background-color: var(--ultramarine);
	transform: rotateY(180deg);
	color: var(--white);
}

.project-card:hover .project-card__front {
	transform: rotateY(180deg);
}

.project-card:hover .project-card__back {
	transform: rotateY(360deg);
}

.project-card__content {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.project-card__img {
	width: 100%;
	height: 100%;
}

.project-card__img_1 {
	background: url("../images/drawings/lemonad.svg") center center / 50% auto no-repeat;
}

.project-card__img_2 {
	background: url("../images/drawings/intersip.svg") center center / 60% auto no-repeat;
}

.project-card__img_3 {
	background: url("../images/drawings/leadzone.svg") center center / 50% auto no-repeat;
}

.project-card__img_4 {
	background: url("../images/drawings/flypost.svg") center center / 55% auto no-repeat;
}

.project-card__img_5 {
	background: url("../images/drawings/advad.svg") center center / 70% auto no-repeat;
}

.project-card__img_6 {
	background: url("../images/drawings/charla.svg") center center / 55% auto no-repeat;
}

.project-card__info {
	width: 100%;
	flex: none;
}

.project-card__name {
	margin-bottom: var(--s);
}

.project-card__turn {
	position: absolute;
	top: 0;
	right: 0;
	width: var(--l);
	height: var(--l);
	border-radius: 100%;
	border: 1px solid var(--light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.project-card__turn-icon {
	width: var(--m);
	height: var(--m);
	background: url("../images/icons/arrow-turn-black.svg") no-repeat center / contain;
}

.project-card__wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.project-card__logo {
	width: 32px;
	height: 40px;
	flex: none;
	margin-bottom: var(--m);
}

.project-card__logo_leadzone {
	background: url("../images/icons/leadzone-project-logo-white.svg") no-repeat center / contain;
}

.project-card__logo_lemonad {
	width: 50px;
	background: url("../images/icons/lemonad-project-logo-white.svg") no-repeat center / contain;
}

.project-card__logo_intersip {
	background: url("../images/icons/intersip-project-logo-white.svg") no-repeat center / contain;
}

.project-card__logo_advad {
	background: url("../images/icons/advad-project-logo-white.svg") no-repeat center / contain;
}

.project-card__logo_flypost {
	background: url("../images/icons/flypost-project-logo-white.svg") no-repeat center / contain;
}

.project-card__logo_charla {
	background: url("../images/icons/charla-project-logo-white.svg") no-repeat center / contain;
}

.project-card__btns {
	position: absolute;
	left: 0;
	bottom: 0;
}

.project-card__btn {
	color: var(--white);
	margin-right: var(--s);
}

.project-card__btn:last-child {
	margin-right: 0;
}

.project-card__btn::after {
	background: var(--white);
}

.project-card__btn::before {
	background: url("../images/icons/btn-arrow-right-ultamarine.svg") no-repeat center/contain;
}

.project-card__btn:hover {
	color: var(--ultramarine);
}

.response {
	padding-top: 180px;
}

.response__wrapper {
	margin-top: var(--l);
}

.full-form {
	display: flex;
	flex-wrap: wrap;
	gap: var(--m);
}

.full-form>.form__group {
	width: 48%;
}

.full-form>.form__group_w {
	width: 100%;
}

.full-form>.form__sent,
.full-form>.form__notsent {
	width: 100%;
	margin-bottom: var(--m);
}

#reviews-section {
	padding-top: 180px;
}

.review-card {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.review-card__header {
	margin-bottom: var(--s);
}

.review-card__icon {
	width: var(--m);
	height: var(--m);
	background: url("../images/icons/quotes-ultramarine.svg") no-repeat center / contain;
}

.review-card__content {
	flex: 1 1 auto;
}

.review-card__text {
	margin-bottom: var(--l);
}

.person {
	display: flex;
}

.person__avatar {
	flex: none;
	margin-right: var(--m);
	width: 80px;
	height: 80px;
	background: url("../images/drawings/lion-avatar.svg") no-repeat center / contain;
}

.person__avatar_male {
	background: url("../images/drawings/male-avatar.svg") no-repeat center / contain;
}

.person__avatar_female {
	background: url("../images/drawings/female-avatar.svg") no-repeat center / contain;
}


.person__name {
	margin-bottom: var(--s);
}

.person__info {
	text-transform: uppercase;
	color: var(--gray);
	font-size: var(--s);
	line-height: 1.2em;
	height: 3.6em;
	overflow: hidden;
	margin-bottom: var(--m);
}

.person__numbers {
	display: flex;
}

.person__number {
	font-weight: 700;
	position: relative;
	padding-left: 30px;
	line-height: 1em;
}

.person__number:first-child {
	margin-right: var(--l);
}

.person__number::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	width: var(--m);
	height: var(--m);
}

.person__rating {
	color: var(--green);
}

.person__rating::before {
	background: url("../images/icons/star-green.svg") no-repeat center / contain;
}

.person__recom {
	color: var(--ultramarine);
}

.person__recom::before {
	background: url("../images/icons/heart-ultramarine.svg") no-repeat center / contain;
}

.showreel__container {
	height: 760px;
	overflow: hidden;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
}

.showreel__video {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--border-radius);
	z-index: 1;
}

.showreel__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: var(--border-radius);
	background-color: rgba(18, 18, 18, 0);
	z-index: 2;
	pointer-events: none;
	transition: all var(--default-transition);
}

.showreel__play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 150px;
	border-radius: 100%;
	background-color: var(--white);
	margin-bottom: 32px;
	transform: translate3d(0, 32px, 0);
	transition: all var(--bounce-transition);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.showreel__play-icon {
	width: 32px;
	height: 32px;
	background: url("../images/icons/showreel-play-black.svg") no-repeat center/contain;
	margin-right: -10px;
}

.showreel__title {
	color: var(--white);
	transform: translate3d(0, 12px, 0);
	transition: all var(--bounce-transition);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.showreel__video:hover+.showreel__overlay {
	background-color: rgba(18, 18, 18, .4);
}

.showreel__video:hover+.showreel__overlay .showreel__title {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}

.showreel__video:hover+.showreel__overlay .showreel__play {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}

.slider-section__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.slider-section__descr {
	max-width: 750px;
	margin-top: var(--s);
}

.slider-section__control {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider-section__bottom {
	margin-top: var(--l);
}

.swiper-button-prev,
.swiper-button-next {
	position: static;
	margin: 0;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-color: var(--black);
	color: var(--white);
	z-index: 3;
}

.swiper-button-prev {
	margin-right: var(--s);
}

.swiper-button-prev::after {
	content: '';
	width: 18px;
	height: 18px;
	background: url("../images/icons/slider-arrow-left-white.svg") no-repeat center / contain;
}

.swiper-button-next::after {
	content: '';
	width: 18px;
	height: 18px;
	background: url("../images/icons/slider-arrow-right-white.svg") no-repeat center / contain;
}

.swiper-pagination {
	position: static;
	margin-top: var(--l);
	background-color: var(--light);
	height: 2px !important;
}

.swiper-pagination-progressbar-fill {
	background-color: var(--green) !important;
}

.slider {
	margin-top: var(--l);
	overflow: visible;
}

.slider__wrapper {
	display: grid;
	grid-auto-flow: column;
}

.slider__item {
	width: 100%;
	height: 100%;
	background-color: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	padding: var(--l);
	display: flex;
	align-items: center;
	flex-direction: column;
	user-select: none;
}

.slider__item-img {
	width: 100px;
	height: 100px;
	margin-bottom: var(--m);
}

.slider__item-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.slider__item-title {
	margin-bottom: var(--s);
	text-align: center;
}

#career-slider .slider__item-descr,
#trifles-slider .slider__item-descr {
	text-align: center;
}

#career-slider .slider__item-img {
	width: 300px;
	height: 350px;
}

#trifles-slider .slider__item-img {
	width: 400px;
	height: 350px;
}

#history-slider .slider__item-img {
	width: 500px;
	height: 250px;
}

.start {
	padding-top: 180px;
}

.start__wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 650px;
	margin: 0 auto;
}

.start__title {
	text-align: center;
}

.start__text {
	text-align: center;
	margin-top: var(--l);
	margin-bottom: var(--l);
}

.form {
	width: 100%;
}

.form__group {
	display: flex;
	flex-direction: column;
	margin-bottom: var(--s);
}

.form__input {
	width: 100%;
	padding-left: var(--s);
	padding-right: var(--s);
	padding-top: var(--m);
	padding-bottom: var(--m);
	outline: none;
	border: none;
	border-bottom: 1px solid var(--light);
}

.form__input:focus {
	outline: 0;
}

.form__input:focus:required:invalid,
.form__textarea:focus:required:invalid {
	border-color: var(--red);
}

.form__input:required:valid,
.form__textarea:required:valid {
	border-color: var(--green);
}

.form__textarea {
	width: 100%;
	resize: none;
	padding-left: var(--s);
	padding-right: var(--s);
	padding-top: var(--m);
	padding-bottom: var(--m);
	outline: none;
	border: none;
	border-bottom: 1px solid var(--light);
}

.form__group.success .form__input {
	border-color: var(--green);
}

.form__group.error .form__input {
	border-color: var(--red);
}

.form__accept {
	display: flex;
	align-items: center;
	margin-top: var(--m);
	margin-bottom: var(--m);
}

.form__accept a {
	transition: var(--default-transition);
	color: var(--black);
}

.form__accept a:hover {
	color: var(--green);
}

.form__checkbox {
	width: var(--s);
	height: var(--s);
	margin-right: var(--s);
}

.form__sent,
.form__notsent {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	border-radius: var(--border-radius);
	padding: var(--s) var(--m);
	margin-bottom: var(--m);
}

.form__sent {
	background-color: #DDFFE5;
	color: var(--green);
}

.form__notsent {
	background-color: #EDB6B6;
	color: var(--red);
}

.form__sent-icon,
.form__notsent-icon {
	width: var(--l);
	height: var(--l);
	margin-right: var(--s);
}

.form__sent-icon {
	background: url("../images/icons/green-check.svg") no-repeat center / contain;
}

.form__notsent-icon {
	background: url("../images/icons/red-cross.svg") no-repeat center / contain;
}

.vacancies-cards__categories {
	list-style-type: none;
	padding: 0;
	margin: 0;
	margin-top: var(--l);
	display: flex;
}

.vacancies-cards__categories li {
	margin-right: var(--m);
	padding: 4px 0;
}

.vacancies-cards__categories li:last-child {
	margin-right: 0;
}

.vacancies-cards__categories li a {
	text-decoration: none;
	font-weight: 700;
	color: var(--black);
	padding: 4px 0;
	transition: var(--default-transition);
}

.vacancies-cards__categories li a:hover {
	color: var(--green);
}

.vacancies-cards__categories li a.current {
	color: var(--green);
	border-bottom: 1px solid var(--green);
}

.vacancies-cards__wrapper {
	margin-top: var(--l);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 1fr;
	gap: var(--m);
}

.vacancy-card {
	display: inline-flex;
	flex-direction: column;
	padding: var(--l);
	box-shadow: var(--box-shadow);
	border-radius: var(--border-radius);
	background-color: var(--white);
	color: var(--black);
	text-decoration: none;
	transition: var(--default-transition);
}

.vacancy-card:hover {
	color: var(--black);
}

.vacancy-card:hover .vacancy-card__title {
	color: var(--green);
}

.vacancy-card:hover .vacancy-card__icon {
	border: 1px solid var(--green);
	background-color: var(--green);
}

.vacancy-card:hover .vacancy-card__icon-arrow {
	background: url("../images/icons/arrow-turn-white.svg") no-repeat center / contain;
}

.vacancy-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.vacancy-card__title {
	color: var(--black);
	transition: var(--default-transition);
}

.vacancy-card__icon {
	width: var(--l);
	height: var(--l);
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--light);
	margin-left: var(--m);
	transition: var(--default-transition);
}

.vacancy-card__icon-arrow {
	width: var(--m);
	height: var(--m);
	background: url("../images/icons/arrow-turn-black.svg") no-repeat center/contain;
	transition: var(--default-transition);
}

.vacancy-card__tags {
	margin-top: var(--s);
}

.vacancy-card__body {
	margin-top: var(--s);
}

.vacancy-card__descr {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -moz-box;
	display: -webkit-box;
	line-clamp: 3;
	box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	height: 4.2em;
}

.vacancy {
	padding-top: 180px;
}

.vacancy__header {
	border-bottom: 1px solid var(--light);
	padding-bottom: var(--xl);
	margin-bottom: var(--xxl);
}

.vacancy__descr {
	margin-top: var(--m);
}

.vacancy__salary {
	margin-top: var(--l);
	margin-bottom: var(--l);
}

.vacancy ul {
	padding: 0 !important;
	margin: 0 !important;
	list-style-type: none !important;
}

.vacancy ul li {
	position: relative !important;
	padding-left: var(--s) !important;
	margin-bottom: var(--s) !important;
}

.vacancy ul li:last-child {
	margin-bottom: 0 !important;
}

.vacancy ul li::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background-color: var(--green);
}

.wp-block-columns {
	padding-bottom: var(--l);
	border-bottom: 1px solid var(--light);
}

.work {
	height: 1000px;
	background-color: var(--bg);
	display: flex;
	align-items: center;
	margin-bottom: 180px;
}

.work__container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.work__content {
	width: 40%;
	flex: none;
}

.work__people {
	position: relative;
	width: 55%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
}

.work__marquee {
	width: var(--people-marquee-width);
	height: var(--people-marquee-height);
}

.work__marquee-content {
	display: flex;
	flex-direction: column;
	height: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
}

.work__marquee-content_1 {
	animation: scrolling1 var(--people-marquee-animation-duration-slow) linear infinite;
}

.work__marquee-content_2 {
	animation: scrolling2 var(--people-marquee-animation-duration-regular) linear infinite;
}

.work__marquee-content_3 {
	animation: scrolling3 var(--people-marquee-animation-duration-fast) linear infinite;
}

@keyframes scrolling1 {
	0% {
		transform: translateY(calc(-1*var(--people-marquee-element-height)*var(--people-marquee-elements-1)));
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes scrolling2 {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(calc(-1*var(--people-marquee-element-height)*var(--people-marquee-elements-2)));
	}
}

@keyframes scrolling3 {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(calc(-1*var(--people-marquee-element-height)*var(--people-marquee-elements-3)));
	}
}

.work__marquee-item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--people-marquee-element-height);
	flex: none;
	padding-top: var(--m);
	padding-bottom: var(--m);
}

.work__marquee-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.docs a:first-child {
	display: block;
	text-decoration: none;
	color: var(--black);
	transition: var(--default-transition);
	margin-bottom: var(--s);
	font-family: var(--font-family);
	font-size: var(--font-size);
	line-height: var(--line-height);
	font-weight: var(--font-weight);
}

.docs a:first-child:hover {
	color: var(--green);
}

.wp-block-file *+.wp-block-file__button {
	margin-left: 0 !important;
}

@media screen and (max-width : 1600px) {
	:root {
		--teamlead-marquee-elements-displayed: 3;
	}

	.container {
		max-width: 1300px;
	}

	.showreel__container {
		height: 700px;
	}
}


@media screen and (max-width : 1400px) {
	:root {
		--font-size: 16px;
		--teamlead-marquee-elements-displayed: 2;
	}

	.container {
		max-width: 1100px;
	}

	.title {
		font-size: 46px;
	}

	.decor {
		margin-bottom: -230px;
	}

	.decor__img img {
		left: -120px;
	}

	.stack__wrapper {
		grid-template-columns: repeat(5, 1fr);
	}

	.default-page {
		padding-top: 150px;
	}

	.page404 {
		padding-top: 150px;
		padding-bottom: 60px;
	}

	.city {
		padding-top: 150px;
	}

	.competence__block-img {
		height: 500px;
	}

	.hero {
		padding-top: 150px;
		padding-bottom: 60px;
	}

	.hero_bottom {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.hero__img {
		width: 500px;
		height: 500px;
	}

	.menu {
		padding-top: 150px;
	}

	.numbers__item-img {
		width: 150px;
		height: 150px;
	}

	.showreel__container {
		height: 600px;
	}

	#career-slider .slider__item-img {
		width: 250px;
		height: 250px;
	}

	#trifles-slider .slider__item-img {
		width: 300px;
		height: 250px;
	}

	#history-slider .slider__item-img {
		width: 400px;
		height: 200px;
	}

	.vacancy {
		padding-top: 150px;
	}

	.work {
		height: 900px;
	}
}


@media screen and (max-width : 1200px) {
	:root {
		--photo-marquee-height: 350px;
	}

	.container {
		max-width: 900px;
	}

	.decor {
		margin-bottom: -160px;
	}

	.decor__img img {
		left: 0;
	}

	.habr__title {
		font-size: 24px;
	}

	.habr__link {
		font-size: 24px;
	}

	.stack__wrapper {
		grid-template-columns: repeat(4, 1fr);
	}

	.city__animation-block {
		width: 1300px;
		height: 600px;
	}

	.competence__block-img {
		height: 400px;
	}

	.culture__item-img {
		width: 250px;
		height: 250px;
	}

	.hero__img {
		width: 400px;
		height: 400px;
	}

	.hero__item {
		margin-right: 90px;
	}

	.numbers__item-value {
		font-size: 80px;
	}

	.numbers__item-img {
		width: 120px;
		height: 120px;
	}

	.numbers__item-text {
		max-width: 100%;
		height: 2.8em;
	}

	.projects-cards__wrapper {
		grid-template-columns: repeat(2, 1fr);
		/* grid-template-rows: repeat(6, 1fr); */
	}

	/* .project-card:nth-child(1) {
		grid-row: 1 / 3;
		grid-column: 1 / 3;
	}

	.project-card:nth-child(2) {
		grid-row: 1 / 3;
		grid-column: 3 / 5;
	}

	.project-card:nth-child(3) {
		grid-row: 3 / 5;
		grid-column: 1 / 3;
	}

	.project-card:nth-child(4) {
		grid-row: 3 / 5;
		grid-column: 3 / 5;
	}

	.project-card:nth-child(5) {
		grid-row: 5 / 7;
		grid-column: 2 / 4;
	} */

	.showreel__container {
		height: 550px;
	}

	.showreel__play {
		width: 120px;
		height: 120px;
	}

	.work {
		height: 740px;
	}
}


@media screen and (max-width : 992px) {
	:root {
		--teamlead-marquee-elements-displayed: 1.7;
		--photo-marquee-elements-displayed: 2;
	}

	section {
		margin-bottom: 120px;
	}

	.container {
		max-width: 700px;
	}

	.title {
		font-size: 36px;
	}

	.decor {
		margin-bottom: -120px;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.decor__img img {
		top: 0;
	}

	.rivals__wrapper {
		justify-content: flex-start;
	}

	.habr {
		flex-wrap: wrap;
	}

	.habr__item {
		width: calc(50% - 12px);
	}

	.stack__wrapper {
		grid-template-columns: repeat(3, 1fr);
	}

	.city__animation {
		height: 300px;
	}

	.city__animation-block {
		height: 450px;
	}

	.culture {
		padding-top: 120px;
	}

	.culture__wrapper {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.culture__item {
		padding: var(--m);
		margin-bottom: var(--m);
	}

	.culture__item:nth-child(1) {
		order: 1;
	}

	.culture__item:nth-child(2) {
		order: 2;
	}

	.culture__item:nth-child(3) {
		order: 4;
		margin-bottom: 0;
	}

	.culture__item:nth-child(4) {
		order: 3;
	}

	.culture__item-img {
		width: 200px;
		height: 200px;
	}

	.footer {
		padding-top: 90px;
		padding-bottom: 90px;
	}

	.footer__wrapper {
		gap: var(--xxl) var(--m);
	}

	.footer__column {
		width: 45%;
	}

	.footer__column:nth-child(1) {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.hero__wrapper {
		flex-direction: column;
	}

	.hero__title {
		text-align: center;
	}

	.hero_bottom .hero__text {
		text-align: center;
	}

	.hero__block {
		display: flex;
		justify-content: center;
	}

	.hero__img {
		height: 500px;
		width: 100%;
		margin-top: var(--l);
	}

	.hero__item-link {
		font-size: 34px;
	}

	.hero__offices {
		flex-wrap: wrap;
	}

	.hero__office {
		width: 50%;
	}

	.hero__office:nth-child(3) {
		margin-top: var(--xxl);
	}

	.life__column {
		width: 100%;
	}

	.life__column_3 {
		margin-top: var(--m);
	}

	.life__img::after {
		display: none;
	}

	.life__img_1 {
		width: 100%;
		height: 330px;
	}

	.life__img_2 {
		width: 100%;
		height: 330px;
	}

	.life__img_3 {
		width: 100%;
		height: 330px;
		margin: 0;
		margin-top: var(--m);
	}

	.life__title_margin {
		margin-top: 120px;
	}

	.menu>li>a {
		font-size: 34px;
	}

	.numbers__wrapper {
		flex-direction: column;
		justify-content: center;
	}

	.numbers__item {
		width: 100%;
		margin-bottom: var(--l);
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	.numbers__item:last-child {
		margin-bottom: 0;
	}

	.numbers__item-value {
		font-size: 120px;
	}

	.numbers__item-img {
		width: 150px;
		height: 150px;
	}

	.numbers__item-text {
		height: auto;
		text-align: center;
		max-width: 100%;
	}

	.project-card__img_1 {
		background: url("../images/drawings/lemonad.svg") center center / 70% auto no-repeat;
	}

	.project-card__img_2 {
		background: url("../images/drawings/intersip.svg") center center / 70% auto no-repeat;
	}

	.project-card__img_3 {
		background: url("../images/drawings/leadzone.svg") center center / 65% auto no-repeat;
	}

	.project-card__img_4 {
		background: url("../images/drawings/flypost.svg") center center / 70% auto no-repeat;
	}

	.project-card__img_5 {
		background: url("../images/drawings/advad.svg") center center / 80% auto no-repeat;
	}

	.response {
		padding-top: 120px;
	}

	#reviews-section {
		padding-top: 120px;
	}

	.showreel__container {
		height: 450px;
	}

	.slider__item {
		padding: var(--m);
	}

	.start {
		padding-top: 120px;
	}

	.vacancies-cards__categories {
		flex-wrap: wrap;
	}

	.vacancies-cards__categories li {
		margin-bottom: var(--s);
	}

	.vacancies-cards__wrapper {
		margin-top: var(--m);
		grid-template-columns: 1fr;
	}

	.work {
		padding-top: 150px;
		padding-bottom: 60px;
		height: auto;
		margin-bottom: 120px;
	}

	.work__container {
		flex-direction: column;
	}

	.work__content {
		width: 100%;
	}

	.work__people {
		overflow: hidden;
		margin-top: var(--l);
		height: 1000px;
		width: 100%;
	}

	.work__people::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: var(--xl);
		background: linear-gradient(180deg, #EEF8F2 0%, rgba(238, 248, 242, 0) 100%);
		z-index: 2;
	}

	.work__people::before {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: var(--xl);
		background: linear-gradient(180deg, rgba(238, 248, 242, 0) 0%, #EEF8F2 100%);
		z-index: 2;
	}

	.work__marquee-item {
		padding-top: var(--s);
		padding-bottom: var(--s);
	}
}

@media screen and (max-width : 768px) {
	:root {
		--font-size: 14px;
	}

	section {
		margin-bottom: 80px;
	}

	.container {
		max-width: 500px;
	}

	.title {
		font-size: 28px;
	}

	.acc-title {
		font-size: 22px;
	}

	.acc-text {
		font-size: 18px;
	}

	.stack__wrapper {
		grid-template-columns: repeat(2, 1fr);
	}

	.default-page {
		padding-top: 120px;
	}

	.city {
		padding-top: 120px;
	}

	.city__text {
		margin-top: var(--m);
		margin-bottom: var(--m);
	}

	.city__animation {
		height: 250px;
	}

	.city__animation-block {
		height: 400px;
	}

	.competence__block {
		flex-direction: column;
	}

	.competence__block-column {
		width: 100%;
	}

	.competence__block:nth-child(2) .competence__block-column:nth-child(1) {
		order: 2;
	}

	.competence__block:nth-child(2) .competence__block-column:nth-child(2) {
		order: 1;
	}

	.competence__block:nth-child(4) .competence__block-column:nth-child(1) {
		order: 2;
	}

	.competence__block:nth-child(4) .competence__block-column:nth-child(2) {
		order: 1;
	}

	.competence__block:nth-child(6) .competence__block-column:nth-child(1) {
		order: 2;
	}

	.competence__block:nth-child(6) .competence__block-column:nth-child(2) {
		order: 1;
	}

	.competence__block-img {
		height: 350px;
	}

	.hero__img {
		height: 400px;
	}

	.hero__title::before {
		width: 170px;
		height: 40px;
		left: -5px;
	}

	.hero__group {
		flex-direction: column;
	}

	.hero__item {
		margin-right: 0;
	}

	.hero__item {
		margin-top: 10px;
	}

	.hero__item-link {
		font-size: 26px;
	}

	.life__title_margin {
		margin-top: 80px;
	}

	.life__img {
		height: 250px;
	}

	.teamlead-marquee__content li {
		font-size: calc(var(--teamlead-marquee-height)*2/6);
	}

	.menu>li {
		margin-bottom: var(--m);
	}

	.menu>li>a {
		font-size: 26px;
	}

	.projects-cards__wrapper {
		grid-template-columns: 1fr;
		/* grid-template-rows: 1fr; */
	}

	/* .project-card:nth-child(1) {
		grid-row: 1 / 3;
		grid-column: 1 / 2;
	}

	.project-card:nth-child(2) {
		grid-row: 3 / 5;
		grid-column: 1 / 2;
	}

	.project-card:nth-child(3) {
		grid-row: 5 / 7;
		grid-column: 1 / 2;
	}

	.project-card:nth-child(4) {
		grid-row: 7 / 9;
		grid-column: 1 / 2;
	}

	.project-card:nth-child(5) {
		grid-row: 9 / 11;
		grid-column: 1 / 2;
	} */

	.project-card__img_1 {
		background: url("../images/drawings/lemonad.svg") center center / 50% auto no-repeat;
	}

	.project-card__img_2 {
		background: url("../images/drawings/intersip.svg") center center / 55% auto no-repeat;
	}

	.project-card__img_3 {
		background: url("../images/drawings/leadzone.svg") center center / 50% auto no-repeat;
	}

	.project-card__img_4 {
		background: url("../images/drawings/flypost.svg") center center / 55% auto no-repeat;
	}

	.project-card__img_5 {
		background: url("../images/drawings/advad.svg") center center / 65% auto no-repeat;
	}

	.response {
		padding-top: 80px;
	}

	.full-form {
		gap: 0;
	}

	.full-form>.form__group {
		width: 100%;
	}

	.showreel__container {
		height: 400px;
	}

	.start {
		padding-top: 80px;
	}

	.vacancy-card {
		padding: var(--m)
	}

	.work__people {
		height: 720px;
	}
}


@media screen and (max-width : 576px) {
	:root {
		--photo-marquee-elements-displayed: 1.1;
		--photo-marquee-height: 250px;
		--teamlead-marquee-elements-displayed: 1.15;
	}

	.btn:hover {
		color: var(--ultramarine);
		padding: 10px 56px 10px 0px;
	}

	.btn:hover::after {
		width: 50px;
		height: 50px;
	}

	.project-card__btn:hover {
		color: var(--white);
	}

	.photo-marquee__content li {
		margin-right: var(--s);
	}

	.teamlead-marquee__content li {
		font-size: calc(var(--teamlead-marquee-height)*2/7);
	}

	.container {
		max-width: 100%;
		padding-left: var(--m);
		padding-right: var(--m);
	}

	.title {
		font-size: 30px;
	}

	.tag {
		padding: 8px;
	}

	.decor {
		margin-bottom: -48px;
	}

	.habr__title {
		font-size: 22px;
	}

	.stack__wrapper {
		gap: var(--s);
	}

	.stack__item {
		padding: var(--m);
	}

	.stack__item-img {
		height: 80px;
	}

	.defaul-page__title {
		margin-bottom: var(--m);
	}

	.page404 {
		padding-top: 120px;
		padding-bottom: 30px;
	}

	.page404__title {
		text-align: center;
	}

	.page404__animation {
		width: 230px;
		height: 230px;
	}

	.page404__picture {
		margin-bottom: 0;
	}

	.page404__picture span {
		font-size: 130px;
	}

	.page404__descr {
		text-align: center;
	}

	.accordions__wrapper {
		margin-top: var(--m);
	}

	.competence__wrapper {
		margin-top: var(--m);
	}

	.competence__block-title {
		margin-bottom: var(--s);
	}

	.competence__block-tags {
		margin-top: var(--s);
	}

	.competence__block-img {
		height: 300px;
		margin-bottom: var(--s);
	}

	.culture {
		padding-top: 80px;
	}

	.culture__wrapper {
		margin-top: var(--m);
	}

	.culture__item {
		padding: var(--m);
		flex-direction: column;
		margin-bottom: var(--s);
	}

	.culture__item-content {
		order: 2;
		width: 100%;
	}

	.culture__item-img {
		order: 1;
		width: 100%;
		height: 150px;
		margin-bottom: var(--s);
	}

	.culture__item-text {
		margin-right: 0;
	}

	.footer {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.footer__block-menu {
		gap: 8px;
	}

	.footer__block-menu>li {
		width: 100%;
		text-align: center;
	}

	.header {
		height: 80px;
	}

	.header_scroll {
		height: 60px;
	}

	.header__logo {
		width: 160px;
		height: 35px;
		margin-right: var(--s);
	}

	.hero {
		padding-top: 120px;
		padding-bottom: 30px;
	}

	.hero_bottom {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.hero__img {
		height: 300px;
	}

	.hero__text {
		margin-top: var(--m);
		margin-bottom: var(--m);
	}

	.hero__group {
		margin-top: var(--xl);
		margin-bottom: var(--xl);
	}

	.hero__offices {
		padding-top: var(--xl);
		padding-bottom: var(--xl);
	}

	.hero__office {
		width: 100%;
		margin-bottom: var(--m);
	}

	.hero__office:nth-child(3) {
		margin-top: 0;
		margin-bottom: 0;
	}

	.hero__office-street {
		margin-bottom: var(--s);
	}

	.menu {
		padding-top: 120px;
	}

	.menu>li>a {
		font-size: 28px;
	}

	.numbers__item-value {
		font-size: 70px;
		font-weight: 700;
	}

	.numbers__item-img {
		width: 100px;
		height: 100px;
	}

	.numbers__item-text {
		margin-top: var(--s);
		max-width: 80%;
	}

	.projects-cards__wrapper {
		margin-top: var(--m);
	}

	.project-card {
		min-height: 300px;
	}

	.project-card__img_1 {
		background: url("../images/drawings/lemonad.svg") center center / 60% auto no-repeat;
	}

	.project-card__img_2 {
		background: url("../images/drawings/intersip.svg") center center / 65% auto no-repeat;
	}

	.project-card__img_3 {
		background: url("../images/drawings/leadzone.svg") center center / 60% auto no-repeat;
	}

	.project-card__img_4 {
		background: url("../images/drawings/flypost.svg") center center / 60% auto no-repeat;
	}

	.project-card__img_5 {
		background: url("../images/drawings/advad.svg") center center / 70% auto no-repeat;
	}

	#reviews-section {
		padding-top: 80px;
	}

	.person__avatar {
		width: 50px;
		height: 50px;
		margin-right: var(--s);
	}

	.person__info {
		margin-bottom: var(--s);
	}

	.person__number:first-child {
		margin-right: var(--m);
	}

	.showreel {
		padding-left: var(--m);
		padding-right: var(--m);
	}

	.showreel__container {
		height: 300px;
		padding: 0;
	}

	.showreel__play {
		width: 90px;
		height: 90px;
		margin-bottom: 18px;
	}

	.showreel__play-icon {
		width: 24px;
		height: 24px;
		margin-right: -5px;
	}

	.slider-section__control {
		margin-left: var(--l);
	}

	.swiper-button-prev::after,
	.swiper-button-next::after {
		width: var(--s);
		height: var(--s);
	}

	.slider {
		margin-top: var(--m);
	}

	.slider__item {
		padding: var(--m);
	}

	.swiper-pagination {
		margin-top: var(--m);
	}

	#trifles-slider .slider__item-img {
		width: 100%;
		height: 200px;
	}

	#history-slider .slider__item-img {
		width: 100%;
		height: 200px;
	}

	#career-slider .slider__item-img {
		width: 100%;
		height: 200px;
	}

	.vacancies-cards__categories {
		margin-top: var(--m);
	}

	.vacancies-cards__wrapper {
		margin-top: var(--s);
	}

	.vacancy-card {
		padding: var(--s)
	}

	.vacancy {
		padding-top: 120px;
	}

	.vacancy__header {
		border-bottom: 1px solid var(--light);
		padding-bottom: var(--l);
		margin-bottom: var(--l);
	}

	.vacancy__salary {
		margin-top: var(--m);
		margin-bottom: var(--m);
	}

	:where(.wp-block-columns.is-layout-flex) {
		gap: 0 !important;
	}

	.work {
		padding-top: 120px;
		padding-bottom: 30px;
		margin-bottom: 80px;
	}

	.work__people {
		height: 550px;
	}

	.work__people::after,
	.work__people::before {
		height: var(--m);
	}
}