/* 
Theme Name: Asari
Author: Anna Kessler
*/

:root {
	--dark-color: #000;
	--light-color: #fff;
	--gray-color: #ccc;
	--light-gray-color: #f8f8f8;
	--border-color: #f1f1f1;
	--accent-color: #be9d64;
	--error-color: #f06464;
	--font-gothic: 'CoFoGothic', sans-serif;
	--font-manege: 'Manege', sans-serif;
	--line-height: 1;
	--time: 0.2s;
	--radius: 15px;
	--mobile-width: 768;
	--swiper-theme-color: #007aff;
	--swiper-navigation-size: 44px;
}
@font-face {
	src: url(assets/fonts/CoFoGothic-Light.woff2) format('woff2');
	font-family: CoFoGothic;
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	src: url(assets/fonts/CoFoGothic-Regular.woff2) format('woff2');
	font-family: CoFoGothic;
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	src: url(assets/fonts/CoFoGothic-Bold.woff2) format('woff2');
	font-family: CoFoGothic;
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	src: url(assets/fonts/Manege-Light.woff2) format('woff2');
	font-family: Manege;
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
html {
	height: 100%;
	box-sizing: border-box;
	scroll-behavior: smooth;
}
*,
::after,
::before {
	box-sizing: inherit;
}
body {
	margin: 0;
	height: 100%;
	font-family: var(--font-gothic);
	font-weight: 300;
	line-height: var(--line-height);
	color: var(--dark-color);
	background-color: var(--light-color);
	font-size: 18px;
}
body.lock {
	overflow: hidden;
}
.site-container {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
}
.main {
	flex: 1 1 auto;
}
.container {
	margin: 0 auto;
	padding: 0 15px;
	max-width: 1415px;
}
.container--width-small {
	max-width: 1070px;
}
.section {
	padding: 50px 0;
}
.section--overflow-hidden {
	overflow: hidden;
}
.section--h-100vh {
	min-height: 100vh;
}
.section--single-expertise {
	min-height: calc(100vh - 115px);
	background-position: right -115px bottom -115px;
	background-size: 820px;
	background-repeat: no-repeat;
}
.section--conditions {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	min-height: 100vh;
	background: linear-gradient(
		0deg,
		#b8cbe5 -27.96%,
		rgba(255, 255, 255, 0) 86.41%
	);
}
.section--conditions::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 1300px;
	height: 1300px;
	background-image: url(assets/img/general/circle-decor.webp);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transform: translate(-50%, -50%);
}
.section--dream {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	min-height: 100vh;
	background: linear-gradient(
		0deg,
		#b8cbe5 -27.96%,
		rgba(255, 255, 255, 0) 86.41%
	);
}
.section--dream::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 1300px;
	height: 1300px;
	background-image: url(assets/img/general/circle-decor.webp);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transform: translate(-50%, -50%);
}
.section--pb-100 {
	padding-bottom: 100px;
}
img {
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.link-reset {
	display: inline-block;
	font-family: inherit;
	font-size: inherit;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}
.list-reset {
	list-style: none;
	margin: 0;
	padding: 0;
}
.btn-reset {
	border: none;
	padding: 0;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background-color: transparent;
	cursor: pointer;
}
.input-reset {
	margin: 0;
	border: none;
	padding: 0;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background-color: transparent;
}
.error {
	border: 2px solid var(--error-color);
}
.is-hidden {
	display: none !important;
}
.burger {
	--burger-time: 0.1s;
	--burger-width: 17px;
	--burger-line-height: 1px;
	--burger-radius: 4px;
	box-sizing: content-box;
	position: absolute;
	right: 0;
	z-index: 10;
	display: none;
	align-items: center;
	justify-content: center;
	width: var(--burger-width);
	height: calc(var(--burger-line-height) * 3 + 16px);
	line-height: var(--burger-line-height);
	border: 1px solid var(--dark-color);
	padding: 6px 7px;
	border-radius: 50%;
}
.burger__line {
	position: relative;
	border-radius: var(--burger-radius);
	width: var(--burger-width);
	height: var(--burger-line-height);
	background-color: var(--dark-color);
}
.burger__line::after,
.burger__line::before {
	content: '';
	position: absolute;
	left: 0;
	display: block;
	border-radius: var(--burger-radius);
	width: var(--burger-width);
	height: var(--burger-line-height);
	background-color: var(--dark-color);
	transition: transform var(--burger-time) ease-in,
		top var(--burger-time) linear var(--burger-time);
}
.burger__line::before {
	top: calc(-1 * (var(--burger-line-height) + 4px));
}
.burger__line::after {
	top: calc(var(--burger-line-height) + 4px);
}
.burger--visible {
	display: flex;
}
.burger--active .burger__line {
	background-color: transparent;
}
.burger--active .burger__line::after,
.burger--active .burger__line::before {
	top: 0;
	transition: top var(--burger-time) linear,
		transform var(--burger-time) ease-in var(--burger-time);
}
.burger--active .burger__line::before {
	transform: rotate(45deg);
}
.burger--active .burger__line::after {
	transform: rotate(-45deg);
}
.logo {
	display: flex;
	align-items: center;
}
.logo--mobile {
	margin: 0 auto;
}
.logo img {
	height: 100%;
}
.logo__img {
	max-width: 200px;
}
.custom-logo-link {
	display: flex;
}
.menu {
	position: relative;
	display: flex;
	align-items: center;
}
.menu__body--mobile {
	position: fixed;
	left: -100%;
	top: 0;
	z-index: 5;
	overflow: auto;
	padding: 100px 30px 30px;
	width: 100%;
	height: 100vh;
	background-color: var(--light-color);
	transition: left 0.3s;
}
.menu__body--active {
	left: 0;
}
.menu__list {
	display: flex;
	align-items: center;
	gap: 15px;
}
.menu__list--mobile {
	flex-direction: column;
}
.menu__link {
	transition: opacity var(--time);
	opacity: 0.5;
	font-size: 22px;
}
.menu__link:hover {
	opacity: 1;
}
.menu__item.active .menu__link {
	opacity: 1;
}
.footer .menu__link {
	opacity: 1;
}
.footer .menu__link:hover {
	opacity: 0.5;
}
.cookie-banner {
	z-index: 30;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 675px;
	width: 90%;
	padding: 30px;
	border-radius: 32px;
	background: var(--light-color);
	box-shadow: 0 0 25px 0 rgba(184, 203, 229, 0.4);
}
.cookie-banner__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 15px;
}
.cookie-banner__title {
	margin: 0;
	margin-bottom: 10px;
	font-family: var(--font-manege);
	font-size: 36px;
	font-weight: 300;
	line-height: 1.2;
}
.cookie-banner__close {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	width: 32px;
	height: 32px;
	color: var(--accent-color);
	font-weight: 300;
	font-size: 26px;
	text-align: center;
	transition: opacity var(--time);
}
.cookie-banner__close:hover {
	opacity: 0.6;
}
.cookie-banner__text {
	margin: 0;
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.2;
}
.cookie-banner__text span {
	font-weight: 500;
}
.cookie-banner__text a {
	display: inline;
	word-break: break-word;
	white-space: normal;
	text-decoration: underline;
	transition: opacity var(--time);
}
.cookie-banner__text a:hover {
	opacity: 0.6;
}
.cookie-banner--hidden {
	display: none;
}
.title {
	margin: 0 0 40px;
	font-weight: 300;
	font-size: 48px;
}
.section-header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px;
	gap: 20px 10px;
}
.section-header--mb-75 {
	margin-bottom: 75px;
}
.section-header--mb-0 {
	margin-bottom: 0;
}
.section-header__inner {
	width: 100%;
	max-width: 49%;
}
.section-header__text {
	margin: 0;
	font-weight: 200;

	font-size: 22px;
}
.section-header__filters {
	display: flex;
	align-items: center;
	gap: 40px;
}
.section-header__filter {
	font-size: 22px;

	opacity: 0.4;
	transition: opacity var(--time);
}
.section-header__filter:hover {
	opacity: 0.7;
}
.section-header__filter--active,
.section-header__filter--active:hover {
	opacity: 1;
}
.section-header--column {
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
}
.section-header--reverse {
	flex-direction: column-reverse;
	align-items: flex-start;
	gap: 40px;
}
.section-header--gap-20 {
	gap: 20px;
}
.section-header--mb-85 {
	margin-bottom: 85px;
}
.section--p-none {
	padding: 0;
}
.section-contacts {
	margin-bottom: -40px;
}
.headlines__title {
	margin: 0 0 5px;
	font-family: var(--font-manege);
	font-weight: 300;

	font-size: 48px;
}
.headlines__subtitle {
	margin: 0;
	font-weight: 300;

	font-size: 48px;
}
.link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid var(--border-color);
	border-radius: 30px;
	padding: 10px 15px;
	width: -moz-fit-content;
	width: fit-content;
	transition: background-color var(--time), border-color var(--time);
	gap: 10px;
}
.link span {
	font-size: 22px;
	color: var(--dark-color);
}
.link__arrow {
	position: relative;
	border-radius: 100%;
	width: 20px;
	height: 20px;
	border: 1px solid var(--accent-color);
	transition: background-color var(--time);
}
.link__arrow::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	border: 1px solid var(--accent-color);
	border-top: none;
	border-left: none;
	width: 7px;
	height: 7px;
	transform: translate(-65%, -50%) rotate(-45deg);
	transition: border-color var(--time);
}
.link:hover {
	background-color: var(--light-gray-color);
	border-color: var(--light-gray-color);
}
.link:hover .link__arrow {
	background-color: var(--accent-color);
}
.link:hover .link__arrow::after {
	border-color: var(--light-color);
}
.link--reverse {
	display: flex;
	flex-direction: row-reverse;
}
.link--reverse .link__arrow {
	transform: rotate(180deg);
}
.link--404 {
	max-width: fit-content;
	margin: 0 auto;
	margin-top: 40px;
}
.input {
	border: 1px solid var(--border-color);
	border-radius: 100px;
	padding: 15px;
	width: 100%;
	font-weight: 300;
	font-size: 16px;

	transition: border-color var(--time);
}
.input::-moz-placeholder {
	color: var(--dark-color);
}
.input::placeholder {
	color: var(--dark-color);
}
.input.wpcf7-not-valid {
	border-color: #ce4a4a;
}
.input:focus {
	outline: none;
}
.wpcf7-not-valid-tip {
	display: none;
}
.submit {
	border: 1px solid var(--border-color);
	border-radius: 100px;
	padding: 10px 15px;
	font-weight: 300;
	font-size: 22px;

	transition: border-color var(--time), opacity var(--time);
	cursor: pointer;
}
.submit:hover {
	border-color: var(--accent-color);
	opacity: 0.7;
}
.wpcf7-spinner {
	flex-shrink: 0;
	position: absolute;
	bottom: -100%;
}
.policy {
	margin: 0;
	font-weight: 300;
	font-size: 14px;

	opacity: 0.4;
}
.policy-link {
	display: inline;
	text-decoration: underline;
}
.policy-link:hover {
	text-decoration: none;
}
.section .swiper-button-next,
.section .swiper-button-prev {
	position: static;
	margin: 0;
	border: 1px solid var(--accent-color);
	border-radius: 100%;
	width: 35px;
	height: 35px;
	color: var(--accent-color);
	transition: color var(--time), background-color var(--time);
}
.section .swiper-button-next::after,
.section .swiper-button-prev::after {
	font-size: 14px;
}
.section .swiper-button-next:hover,
.section .swiper-button-prev:hover {
	color: var(--light-color);
	background-color: var(--accent-color);
}
.swiper .swiper-pagination {
	bottom: 40px !important;
	display: flex;
	align-items: center;
	justify-content: center;
}
.swiper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background-color: var(--light-color);
	opacity: 0.7;
}
.swiper .swiper-pagination-bullet-active {
	width: 12px;
	height: 12px;
	opacity: 1;
}
.select {
	position: relative;
	min-width: 260px;
}
.select__header {
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid var(--border-color);
	border-radius: 100px;
	padding: 15px 20px;
	gap: 55px;
	font-weight: 500;
	cursor: pointer;
}
.select__current {
	font-weight: 200;
	font-size: 16px;
}
.select__icon {
	flex-shrink: 0;
	width: 12px;
	height: 7px;
	transition: transform var(--time);
}
.select__body {
	position: absolute;
	left: 0;
	right: 0;
	top: 25px;
	z-index: 2;
	display: none;
	border-radius: 0 0 10px 10px;
	padding-top: 25px;
	background-color: var(--light-color);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.select__item {
	padding: 15px 20px;
	border-radius: 10px;
	font-weight: 200;
	font-size: 16px;

	background-color: var(--light-color);
	transition: background-color var(--time);
	cursor: pointer;
}
.select__item:hover {
	background-color: var(--gray-color);
}
.select.is-active .select__icon {
	transform: rotate(180deg);
}
.select.is-active .select__body {
	display: block;
}
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.tags__item {
	border: 1px solid var(--border-color);
	border-radius: 30px;
	padding: 10px 14px;
	font-size: 16px;
}
.button-show-more {
	border: 1px solid var(--border-color);
	border-radius: 30px;
	padding: 10px 15px;
	font-weight: 300;
	font-size: 22px;

	transition: background-color var(--time);
}
.button-show-more:hover {
	background-color: var(--light-gray-color);
}
.form form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.form .form-inner {
	display: flex;
	gap: 10px;
	align-items: center;
	position: relative;
}
.conventors-links {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.conventors-links__item {
	border-bottom: 1px solid var(--border-color);
	padding: 20px 0;
	font-size: 32px;

	transition: color var(--time);
}
.conventors-links__item:hover {
	color: var(--accent-color);
}
.header {
	position: relative;
	right: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	background-color: #fffffff7;
}
.header__container {
	padding-top: 25px;
	padding-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .menu__body,
.header__menu {
	width: 100%;
}
.header .menu__list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.header--sticky {
	position: sticky;
	transition: top 0.3s;
}
.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 70vh;
	gap: 15px;
	transform: translateX(0);
}
.hero--404 {
	min-height: 0;
}
.hero__title {
	margin: 0;
	font-family: var(--font-manege);
	font-weight: 300;
	font-style: normal;

	text-align: center;
	color: var(--dark-color);
	font-size: 110px;
}
.hero__image {
	width: 100%;
}
.hero__text {
	margin: 0;
	font-weight: 300;

	text-align: center;
	color: var(--dark-color);
	font-size: 110px;
}
.hero__text--404 {
	max-width: 750px;
	text-align: center;
	font-size: 48px;
}
.about__wrap {
	display: flex;
	gap: 20px;
}
.about__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 680px;
}
.about__img {
	display: flex;
	margin-right: -30px;
	width: 710px;
	height: 610px;
}
#aboutVideo {
	width: 100%;
	height: 100%;
}
.about-question {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.about-question__text {
	margin: 0;
	font-weight: 200;
	font-size: 32px;
}
.quiz {
	display: flex;
	flex-direction: column;
	gap: 20px;
	border-radius: 32px;
	padding: 25px;
	box-shadow: 0 0 25px 0 rgba(184, 203, 229, 0.4);
}
.quiz__title {
	font-size: 32px;
}
.quiz-questions {
	display: flex;
	gap: 15px;
}
.quiz-questions__item {
	display: flex;
	border: 1px solid var(--light-gray-color);
	border-radius: 30px;
	padding: 10px 14px;
	gap: 10px;
	transition: background-color var(--time);
	cursor: pointer;
}
.quiz-questions__radio {
	position: relative;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	width: 24px;
	height: 24px;
	transition: border-color 0.3s;
}
.quiz-questions__radio::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	background-color: var(--accent-color);
	transform: translate(-50%, -50%) scale(0);
	transition: transform 0.3s;
}
.quiz-questions__radio.checked::after {
	transform: translate(-50%, -50%) scale(1);
}
.quiz-questions__answer {
	font-size: 22px;
}
.quiz-questions__text {
	overflow: hidden;
	margin: 0;
	border-radius: 24px;
	padding: 0 24px;
	height: 0;

	background-color: var(--light-gray-color);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.5s, transform 0.5s, height 0.5s, padding 0.5s;
	pointer-events: none;
	font-size: 22px;
}
.quiz-questions__text.show {
	display: flex;
	align-items: center;
	padding: 14px 24px;
	opacity: 1;
	transform: translateY(0);
}
.page-about {
	position: relative;
	margin-bottom: -70vh;
	width: 100%;
}
.page-about__wrap {
	position: sticky;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	transform: translateY(-50%);
	overflow: hidden;
}
.page-about__wrap:first-child {
	z-index: 2;
}
.page-about__wrap:nth-child(2)::after {
	content: '';
	position: absolute;
	right: 50%;
	top: 0;
	z-index: -1;
	border-radius: 100% 100% 0 0;
	width: 130vw;
	height: 100vh;
	background: linear-gradient(0deg, #fff 33.4%, #b8cbe5 97.04%);
	transform: translateX(50%);
}
.page-about__text {
	position: relative;
	z-index: 1;
	margin: 0;
	width: 100%;
	font-family: var(--font-manege);
	font-weight: 300;
	font-size: 80px;
	text-align: center;
	will-change: opacity, transform;
}
.about-cards {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.about-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 445px;
	width: 100%;
}
.about-card__img {
	margin-bottom: 10px;
	height: 150px;
	max-width: 150px;
}
.about-card__title {
	margin: 0 0 20px;
	font-family: var(--font-manege);
	font-weight: 300;
	font-size: 32px;

	text-align: center;
}
.about-card__text {
	margin: 0;
	font-size: 22px;

	text-align: center;
}
.expertise__slider .swiper-wrapper {
	padding: 25px 0;
}
.expertise__cards {
	display: grid;
	justify-content: flex-start;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.expertise-card {
	box-sizing: border-box;
	position: relative;
	display: flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	overflow: hidden;
	border: 1px solid var(--gray-color);
	border-radius: 25px;
	padding: 30px 15px;
	width: 100%;
	max-width: 330px;
	transition: border-color var(--time), box-shadow var(--time);
	gap: 20px;
}
.expertise-card__img {
	width: 100px;
	height: 100px;
}
.expertise-card__title {
	margin: 0;
	width: -moz-fit-content;
	width: fit-content;
	font-weight: 300;

	text-align: center;
	font-size: 24px;
}
.expertise-card__inner {
	position: absolute;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 30px 15px;
	width: 100%;
	gap: 20px;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: var(--light-color);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--time), visibility var(--time);
	box-sizing: border-box;
}
.expertise-card__list {
	max-width: 240px;
}
.expertise-card__item {
	margin-bottom: 8px;
	font-size: 14px;

	text-align: center;
}
.expertise-card__item:last-child {
	margin-bottom: 0;
}
.expertise-card:hover {
	border-color: transparent;
	box-shadow: 0 0 25px 0 rgba(184, 203, 229, 0.4);
}
.expertise-card:hover .expertise-card__inner {
	opacity: 1;
	visibility: visible;
}
.expertise__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 40px;
	gap: 20px;
}
.expertise__arrows {
	display: flex;
	gap: 10px;
	align-items: center;
}
.single-expertise__wrap {
	max-width: 555px;
}
.single-expertise__title {
	margin: 0 0 20px;
	font-family: var(--font-manege);
	font-weight: 300;

	font-size: 48px;
}
.single-expertise__text {
	margin: 0;

	font-size: 22px;
}
.child-expertise-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.child-expertise-list__wrap {
	display: flex;
	align-items: center;
	gap: 100px;
}
.child-expertise-list__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 24px;
	border-radius: 16px;
	background-color: var(--light-gray-color);
	font-size: 32px;
	font-weight: 300;

	transition: background-color var(--time), box-shadow var(--time);
}
.child-expertise-list__link:hover {
	background-color: var(--light-color);
	box-shadow: 0 0 25px 0 rgba(184, 203, 229, 0.4);
}
.child-expertise-list__number {
	font-size: 32px;
}
.child-expertise-list__icon {
	flex-shrink: 0;
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var(--accent-color);
}
.child-expertise-list__icon::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	border: 1px solid var(--accent-color);
	border-top: none;
	border-left: none;
	width: 12px;
	height: 12px;
	transform: translate(-100%, -50%) rotate(-45deg);
}
#contact-modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--light-color);
	padding: 55px 40px;
	border-radius: 32px;
	box-shadow: 0 0 25px 0 rgba(184, 203, 229, 0.4);
	z-index: 25;
	max-width: 675px;
	width: 90%;
	text-align: center;
}

#contact-modal p {
	margin: 0;
	margin-bottom: 35px;
	font-size: 32px;
	line-height: 1.2;
}

#contact-modal button#close-modal {
	border: 1px solid var(--border-color);
	border-radius: 30px;
	padding: 10px 15px;
	font-weight: 300;
	font-size: 22px;
	transition: background-color var(--time);
}

#contact-modal button#close-modal:hover {
	background-color: var(--light-gray-color);
}
.team__slider {
	overflow: visible !important;
}
.team .cards {
	display: grid;
	justify-content: flex-start;
	grid-template-columns: repeat(5, 1fr);
	gap: 60px 65px;
	transform: none !important;
}
.team .cards .team-card {
	margin: 0 !important;
}
.team__link {
	margin-bottom: 40px;
}
.team__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 40px;
	gap: 20px;
}
.team__arrows {
	display: flex;
	gap: 10px;
	align-items: center;
}
.team-card {
	display: flex !important;
	flex-direction: column;
	height: auto !important;
	box-sizing: border-box;
	max-width: 215px;
}
.team-card__inner {
	position: relative;
	display: flex;
	margin-bottom: 8px;
	height: 280px;
	width: fit-content;
	filter: grayscale(100%);
	transition: filter var(--time);
}
.team-card--admin > .team-card__inner {
	margin: 0;
}
.team-card__img {
	height: 100%;
	object-position: left;
}
.team-card__img--hover {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--time), visibility var(--time);
}
.team-card--admin > .team-card__texts {
	box-sizing: border-box;
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: calc(100% - 16px);
	width: 100%;
	min-height: 80px;
	padding: 12px 16px;
	background-color: var(--light-color);
}
.team-card__title {
	margin: 0 0 2px;
	font-weight: 300;
	font-size: 16px;
}
.team-card__text {
	font-size: 12px;
}
.single-team {
	display: flex;
	gap: 20px;
}
.single-team__content {
	flex-shrink: 0;
	max-width: 680px;
}
.single-team__title {
	margin: 0 0 20px;
	font-weight: 300;

	font-size: 48px;
}
.single-team__descr {
	margin: 0 0 20px;
	font-weight: 300;

	font-size: 22px;
}
.single-team__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 45px;
	gap: 60px;
}
.single-team__text {
	margin: 0 0 20px;

	font-size: 22px;
}
.single-team__img {
	max-width: 680px;
	width: 100%;
	height: 680px;
}
.single-team__img img {
	width: 100%;
	height: 100%;
	object-position: top;
}
.team-languages {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 345px;
	gap: 20px;
}
.team-languages__title {
	margin: 0;
	font-weight: 300;

	font-size: 22px;
}
.team-contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-right: auto;
	gap: 10px;
}
.team-contacts__phone {
	font-weight: 300;

	transition: opacity var(--time);
	font-size: 22px;
}
.team-contacts__phone:hover {
	opacity: 0.7;
}
.team-contacts__mail {
	font-weight: 300;

	color: var(--accent-color);
	transition: opacity var(--time);
	font-size: 22px;
}
.team-contacts__mail:hover {
	opacity: 0.7;
}
.team-specializations {
	margin-bottom: 65px;
}
.admins__title {
	max-width: 570px;
}
.admins .cards {
	display: grid;
	justify-content: flex-start;
	grid-template-columns: repeat(5, 1fr);
	gap: 60px 65px;
	transform: none !important;
}
.admins .cards .team-card {
	margin: 0 !important;
}
.admins__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 40px;
	gap: 20px;
}
.admin-card {
	display: flex !important;
	max-width: 215px;
	transition-property: transform, max-width !important;
	transition-duration: 0.6s;
}
.admin-card__img,
.admin-card__img img {
	width: 100%;
}
.admin-card__inner {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 15px;
	width: 100%;
	max-width: 92%;
	box-sizing: border-box;
	background-color: var(--light-color);
}
.admin-card__texts {
	margin-bottom: 15px;
}
.admin-card__title {
	margin: 0 0 2px;
	font-weight: 200;
	font-size: 16px;
}
.admin-card__info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	height: 0;
	transition: height var(--time);
}
.admin-card__post {
	font-weight: 200;
	font-size: 12px;
	line-height: 1.3;
}
.admin-card__text {
	margin: 0;
	font-weight: 200;
	font-size: 14px;
}
.admin-card:hover {
	max-width: 330px;
}
.admin-card:hover .admin-card__info {
	height: 135px;
}
.career__wrap {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.career__content {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 50%;
}
.career__inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	gap: 30px;
}
.career__texts {
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 350px;
}
.career__texts:last-child {
	align-self: center;
	margin-top: auto;
	margin-bottom: 75px;
}
.career__text {
	margin: 0;
	font-weight: 200;
	font-size: 22px;
}
.career__text:last-child {
	font-family: var(--font-manege);
}
.career__slider {
	display: flex;
	margin: 0 -30px 0 0 !important;
	max-width: 710px;
}
.page-career {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 45px;
}
.page-career__wrap {
	width: 100%;
}
.page-career__title {
	margin: 0 0 45px;
	font-family: var(--font-manege);
	font-weight: 300;
	font-size: 48px;
}
.page-career__texts {
	display: flex;
	flex-direction: column;
	gap: 170px;
}
.page-career__inner {
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 450px;
}
.page-career__inner:nth-child(even) {
	align-self: flex-end;
}
.page-career__subtitle {
	margin: 0;
	font-family: var(--font-manege);
	font-weight: 300;
	font-size: 32px;
}
.page-career__text {
	margin: 0;
	font-size: 22px;
}
.page-career__img {
	position: sticky;
	top: 20px;
	display: flex;
	flex-shrink: 0;
	margin-right: -27px;
	max-width: 710px;
	width: 100%;
}
.page-career__img img {
	width: 100%;
}
@font-face {
	font-family: swiper-icons;
	src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA')
		format('woff');
	font-weight: 400;
	font-style: normal;
}
:host {
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
}
.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
	display: block;
}
.swiper-vertical > .swiper-wrapper {
	flex-direction: column;
}
.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	transition-timing-function: var(
		--swiper-wrapper-transition-timing-function,
		initial
	);
	box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
	transform: translate3d(0, 0, 0);
}
.swiper-horizontal {
	touch-action: pan-y;
}
.swiper-vertical {
	touch-action: pan-x;
}
.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
	display: block;
}
.swiper-slide-invisible-blank {
	visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}
.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
	transform: translateZ(0);
	backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
	transform-style: preserve-3d;
}
.swiper-3d {
	perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
	transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
	scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
	scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
	scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
	content: '';
	flex-shrink: 0;
	order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: center center;
	scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal
	> .swiper-wrapper
	> .swiper-slide:first-child {
	margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical
	> .swiper-wrapper
	> .swiper-slide:first-child {
	margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(
		to left,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}
.swiper-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}
.swiper-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}
.swiper-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}
.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	box-sizing: border-box;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top-color: transparent;
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
	animation: 1s linear infinite swiper-preloader-spin;
}
.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: var(--swiper-navigation-top-offset, 50%);
	width: calc(var(--swiper-navigation-size) / 44 * 27);
	height: var(--swiper-navigation-size);
	margin-top: calc(0px - var(--swiper-navigation-size) / 2);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
	opacity: 0;
	cursor: auto;
	pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
	display: none !important;
}
.swiper-button-next svg,
.swiper-button-prev svg {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	transform-origin: center;
}
.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
	transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: var(--swiper-navigation-sides-offset, 10px);
	right: auto;
}
.swiper-button-lock {
	display: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	font-variant: initial;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: var(--swiper-navigation-sides-offset, 10px);
	left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	content: 'next';
}
.swiper-pagination {
	position: absolute;
	text-align: center;
	transition: opacity 0.3s;
	transform: translate3d(0, 0, 0);
	z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
	display: none !important;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: var(--swiper-pagination-bottom, 8px);
	top: var(--swiper-pagination-top, auto);
	left: 0;
	width: 100%;
}
.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(0.33);
	position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(0.33);
}
.swiper-pagination-bullet {
	width: var(
		--swiper-pagination-bullet-width,
		var(--swiper-pagination-bullet-size, 8px)
	);
	height: var(
		--swiper-pagination-bullet-height,
		var(--swiper-pagination-bullet-size, 8px)
	);
	display: inline-block;
	border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
	background: var(--swiper-pagination-bullet-inactive-color, #000);
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}
.swiper-pagination-bullet:only-child {
	display: none !important;
}
.swiper-pagination-bullet-active {
	opacity: var(--swiper-pagination-bullet-opacity, 1);
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
	right: var(--swiper-pagination-right, 8px);
	left: var(--swiper-pagination-left, auto);
	top: 50%;
	transform: translate3d(0, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
	display: block;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet,
.swiper-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	display: inline-block;
	transition: transform 0.2s, top 0.2s;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}
.swiper-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: transform 0.2s, left 0.2s;
}
.swiper-horizontal.swiper-rtl
	> .swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: transform 0.2s, right 0.2s;
}
.swiper-pagination-fraction {
	color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
	background: var(
		--swiper-pagination-progressbar-bg-color,
		rgba(0, 0, 0, 0.25)
	);
	position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: var(--swiper-pagination-progressbar-size, 4px);
	left: 0;
	top: 0;
}
.swiper-horizontal
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
	width: var(--swiper-pagination-progressbar-size, 4px);
	height: 100%;
	left: 0;
	top: 0;
}
.swiper-pagination-lock {
	display: none;
}
.news__cards {
	display: grid;
	justify-content: flex-start;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.news__cards--slider {
	display: flex;
	gap: 0;
}
.news__cards--slider .news-card {
	max-width: 100%;
}
.news-card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	max-width: 330px;
}
.news__cards--slider .news-card {
	height: auto;
}
.news-card__img {
	width: 100%;
	height: 330px;
}
.news-card__img img {
	height: 100%;
	width: 100%;
}
.news-card__date {
	font-size: 16px;

	opacity: 0.4;
}
.news-card__title {
	margin: 0;
	font-weight: 300;
	font-size: 22px;
}
.news-card__text {
	margin: 0;
	font-weight: 300;
	font-size: 16px;
}
.news-card__link {
	justify-content: center;
}
.contacts {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 50px;
}
.contacts__info {
	flex-shrink: 0;
	max-width: 560px;
}
.contacts__info--pb {
	padding-bottom: 150px;
}
.contacts__title {
	margin: 0 0 165px;
	font-family: var(--font-manege);
	font-weight: 300;

	font-size: 48px;
}
.contacts__socials {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 40px;
}
.contacts__link {
	font-family: var(--font-manege);

	transition: opacity var(--time);
	font-size: 32px;
}
.contacts__link:hover {
	opacity: 0.5;
}
.contacts__address {
	max-width: 220px;
	font-weight: 300;
	font-style: normal;

	font-size: 22px;
}
.contacts__wrap {
	display: flex;
	flex-direction: column;
	max-width: 565px;
	gap: 40px;
}
.contacts__subtitle {
	margin: 0 0 15px;
	max-width: 470px;
	font-weight: 300;

	font-size: 48px;
}
.contacts__subtitle span {
	font-family: var(--font-manege);
}
.contacts__text {
	margin: 0;

	opacity: 0.4;
	font-size: 22px;
}
.conditions {
	position: relative;
	z-index: 1;
	width: 100%;
}
.conditions .container {
	width: 100%;
}
.conditions__list {
	margin: auto 0 auto auto;
	max-width: 680px;
}
.conditions__item {
	position: relative;
	margin-bottom: 80px;
}
.conditions__item::before {
	content: '';
	position: absolute;
	left: 0;
	top: -20px;
	border-radius: 100px;
	width: 160px;
	height: 1px;
	background-color: var(--accent-color);
}
.conditions__item:last-child {
	margin-bottom: 0;
}
.conditions__title {
	margin: 0 0 20px;
	font-family: var(--font-manege);
	font-weight: 300;

	font-size: 32px;
}
.conditions__content ul {
	list-style: disc;
}
.conditions__content p,
.conditions__content li {
	font-size: 22px;
}
.dream {
	position: relative;
	z-index: 1;
	width: 100%;
}
.dream__wrap {
	display: flex;
	justify-content: space-between;
	gap: 50px 20px;
}
.dream__inner {
	max-width: 45%;
}
.dream__descr {
	margin: 0;
	font-size: 22px;
	max-width: 455px;
}
.dream__item {
	position: relative;
	margin-bottom: 80px;
}
.dream__item::before {
	content: '';
	position: absolute;
	left: 0;
	top: -20px;
	border-radius: 100px;
	width: 160px;
	height: 1px;
	background-color: var(--accent-color);
}
.dream__item:last-child {
	margin-bottom: 0;
}
.dream__subtitle {
	margin: 0 0 20px;
	font-family: var(--font-manege);
	font-weight: 300;

	font-size: 32px;
}
.dream__text {
	margin: 0;
	font-size: 22px;
}
.culture__wrap {
	display: flex;
	justify-content: space-between;
	gap: 40px 20px;
}
.culture__inner {
	max-width: 580px;
}
.culture__text {
	margin: 0;
	font-size: 22px;
}
.culture__img {
	margin-right: -27px;
	max-width: 710px;
	width: 100%;
	height: 725px;
}
.culture__img img {
	width: 100%;
	height: 100%;
}
.services__slider {
	padding: 20px;
	margin: 0 -20px;
}
.swiper-wrapper .swiper-slide.no-shadow > .service-card {
	box-shadow: none !important;
	transition: box-shadow 0.3s;
}
.services .cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(305px, 450px));
	gap: 20px;
}
.services__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 40px;
	gap: 20px;
}
.services__arrows {
	display: flex;
	gap: 10px;
	align-items: center;
}
.service-card {
	overflow: hidden;
	box-shadow: 0 0 25px 0 rgba(184, 203, 229, 0.4);
	border-radius: 32px;
	padding: 25px;
	min-height: 600px;
	width: 100%;
	box-sizing: border-box;
	background-color: var(--light-color);
}
.service-card__title {
	position: relative;
	margin: 0 0 50px;
	font-family: var(--font-manege);
	font-weight: 300;

	font-size: 32px;
}
.service-card__title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -25px;
	border-radius: 100px;
	width: 160px;
	height: 1px;
	background-color: var(--accent-color);
}
.service-card__text {
	margin: 0 0 25px;

	font-size: 18px;
}
.service-card__list {
	list-style: disc;
	padding-left: 25px;
}
.service-card__item {
	margin-bottom: 15px;
	padding-left: 5px;
	font-weight: 300;

	font-size: 16px;
}
.service-card__item:last-child {
	margin-bottom: 0;
}
.expirience {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 50px 20px;
}
.expirience__inner {
	max-width: 49%;
}
.expirience__title {
	margin: 0 0 25px;
	font-weight: 300;

	font-size: 48px;
}
.expirience__card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-radius: 32px;
	padding: 25px;
	box-shadow: 0 0 25px 0 rgba(184, 203, 229, 0.4);
	background: var(--light-color);
}
.expirience__card--gap-big {
	gap: 25px;
}
.expirience__item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-radius: 25px;
	padding: 15px 25px;
	background-color: var(--light-gray-color);
}
.expirience__subtitle {
	font-size: 22px;
}
.expirience__text {
	color: #000;
	font-size: 16px;
}
.ratings__cards {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}
.rating-card {
	border-radius: 32px;
	padding: 20px;
	width: 100%;
	min-height: 230px;
	max-width: 48%;
	box-shadow: 0 0 25px 0 rgba(184, 203, 229, 0.4);
	background: var(--light-color);
}
.rating-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}
.rating-card__title {
	font-weight: 300;
	margin: 0;
	font-size: 32px;
}
.rating-card__img {
	height: 50px;
}
.rating-card__img img {
	max-height: 50px;
}
.rating-card__inner {
	border-radius: 25px;
	padding: 15px;
	background-color: var(--light-gray-color);
}
.rating-card ul {
	margin: 0;
	padding-left: 35px;
	list-style: disc;
}
.rating-card p,
.rating-card li {
	margin: 0;
	max-width: 390px;
	font-size: 22px;
}
.map {
	overflow: hidden;
	height: 580px;
	border-radius: 25px 25px 0 0;
}
.footer {
	position: relative;
	z-index: 1;
	border-radius: 25px 25px 0 0;
	font-weight: 300;

	color: var(--light-color);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	font-size: 22px;
}
.footer__wrap {
	display: flex;
	justify-content: space-between;
	padding: 30px 0 65px;
	gap: 50px 20px;
}
.footer__column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	max-width: 25%;
	width: 100%;
}
.footer__column:last-child {
	align-items: flex-end;
}
.footer__inner {
	display: flex;
	flex-direction: column;
}
.footer__inner--paragraphs p {
	margin: 0;
	margin-bottom: 20px;
}
.footer__inner--paragraphs p:last-child {
	margin: 0;
}
.footer__copyright {
	font-size: 22px;
}
.footer__menu .menu__list {
	flex-direction: column;
	align-items: flex-start;
}
.footer__title {
	margin-bottom: 15px;
}
.footer__title--align-right {
	text-align: right;
}
.footer__address {
	font-style: normal;
}
.footer__links,
.footer__mail,
.footer__phone {
	text-align: right;
}
.footer__links {
	font-size: 18px;
}
.footer__link {
	transition: opacity var(--time);
}
.footer__link:hover {
	opacity: 0.7;
}
.vacancy__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}
.vacancy-card {
	display: flex;
	flex-direction: column;
	max-width: 680px;
	font-size: 20px;

	gap: 20px;
}
.vacancy-card__inner {
	display: flex;
	font-family: var(--font-manege);
	gap: 40px;
}
.vacancy-card__subtitle {
	min-width: 170px;
}
.vacancy-card__text {
	margin: 0;
}
.vacancy-card__text--font-gothic {
	font-family: var(--font-gothic);
}
.spollers {
	display: flex;
	flex-direction: column;
}
.spoller {
	border-bottom: 1px solid var(--gray-color);
}
.spoller:first-child .spoller__header {
	padding-top: 0;
}
.spoller__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.spoller__header::marker {
	content: '';
	font-size: 0;
}
.spoller__inner {
	display: flex;
	align-items: center;
	gap: 40px;
}
.spoller__title {
	padding-right: 50px;

	font-size: 32px;
}
.spoller__actions {
	display: flex;
	align-items: center;
	gap: 20px;
}
.spoller__icon {
	position: relative;
	display: inline-block;
	flex-shrink: 0;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	width: 32px;
	height: 32px;
	text-align: center;
}
.spoller__icon::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	border: 1px solid var(--accent-color);
	border-top: none;
	border-left: none;
	width: 10px;
	height: 10px;
	transform: translate(-50%, -70%) rotate(45deg);
	transition: transform 0.3s;
}
.spoller__icon-img {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.spoller__content {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s;
}
.spoller__content p {
	margin-top: 0;
}
.spoller__content ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	margin-top: 0;
}
.spoller__content--p-horizontal {
	padding-left: 80px;
	padding-right: 150px;
}
.spoller p {
	margin: 0;
	padding-bottom: 20px;
	font-size: 22px;
}
.spoller__tags {
	padding-bottom: 30px;
}
.spoller.open .spoller__icon::after {
	transform: translate(-50%, -30%) rotate(-135deg);
}
.conventors__text {
	margin: 0;
	max-width: 355px;
	font-size: 22px;
}
.conventors__wrap {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
.conventors__inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}
.conventors__img {
	position: relative;
	display: flex;
	height: 760px;
	min-width: 710px;
}
.conventors__img img {
	width: 100%;
}
.victory-ratings {
	display: flex;
	gap: 200px;
	align-items: center;
}
.victory-ratings__img {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-height: 110px;
	max-width: 500px;
	width: fit-content;
}
@media (min-width: 1401px) {
	.section--single-expertise {
		background-position: left calc(50% + 410px) top 35px;
	}
}
@media (max-width: 1439px) {
	.page-career__img {
		margin-right: -15px;
	}
	.culture__img {
		margin-right: -15px;
	}
	.team .cards {
		gap: 30px;
	}
	.admins .cards {
		gap: 30px;
	}
}
@media (max-width: 1415px) {
	body {
		font-size: calc(16px + 2 * (100vw - 375px) / 1040);
	}
	.menu__link,
	.section-header__text {
		font-size: calc(18px + 4 * (100vw - 375px) / 1040);
	}
	.headlines__subtitle,
	.headlines__title,
	.title {
		font-size: calc(26px + 22 * (100vw - 375px) / 1040);
	}
	.spoller p {
		font-size: calc(16px + 6 * (100vw - 375px) / 1040);
	}
	.link span {
		font-size: calc(18px + 4 * (100vw - 375px) / 1040);
	}
	.hero__text,
	.hero__title {
		font-size: calc(45px + 65 * (100vw - 375px) / 1040);
	}
	.hero__text--404 {
		font-size: calc(32px + 16 * (100vw - 375px) / 1040);
	}
	.quiz__title {
		font-size: calc(28px + 4 * (100vw - 375px) / 1040);
	}
	.quiz-questions__text {
		font-size: calc(18px + 4 * (100vw - 375px) / 1040);
	}
	.expertise-card__title {
		font-size: calc(20px + 4 * (100vw - 375px) / 1040);
	}
	.single-expertise__title {
		font-size: calc(26px + 22 * (100vw - 375px) / 1040);
	}
	.single-expertise__text {
		font-size: calc(18px + 4 * (100vw - 375px) / 1040);
	}
	.single-team__title {
		font-size: calc(26px + 22 * (100vw - 375px) / 1040);
	}
	.single-team__descr,
	.single-team__text {
		font-size: calc(18px + 4 * (100vw - 375px) / 1040);
	}
	.team-languages__title {
		font-size: calc(20px + 2 * (100vw - 375px) / 1040);
	}
	.team-contacts__mail,
	.team-contacts__phone {
		font-size: calc(18px + 4 * (100vw - 375px) / 1040);
	}
	.contacts__title {
		font-size: calc(26px + 22 * (100vw - 375px) / 1040);
	}
	.contacts__link {
		font-size: calc(22px + 10 * (100vw - 375px) / 1040);
	}
	.contacts__address {
		font-size: calc(18px + 4 * (100vw - 375px) / 1040);
	}
	.contacts__subtitle {
		font-size: calc(26px + 22 * (100vw - 375px) / 1040);
	}
	.contacts__text {
		font-size: calc(18px + 4 * (100vw - 375px) / 1040);
	}
	.conditions__title {
		font-size: calc(26px + 6 * (100vw - 375px) / 1040);
	}
	.conditions__content p,
	.conditions__content li {
		font-size: calc(16px + 6 * (100vw - 375px) / 1040);
	}
	.dream__subtitle {
		font-size: calc(26px + 6 * (100vw - 375px) / 1040);
	}
	.dream__descr {
		font-size: calc(16px + 6 * (100vw - 375px) / 1040);
	}
	.dream__text {
		font-size: calc(16px + 6 * (100vw - 375px) / 1040);
	}
	.culture__text {
		font-size: calc(16px + 6 * (100vw - 375px) / 1040);
	}
	.service-card__title {
		font-size: calc(26px + 6 * (100vw - 375px) / 1040);
	}
	.service-card__text {
		font-size: calc(16px + 2 * (100vw - 375px) / 1040);
	}
	.service-card__item {
		font-size: calc(14px + 2 * (100vw - 375px) / 1040);
	}
	.expirience__title {
		font-size: calc(26px + 22 * (100vw - 375px) / 1040);
	}
	.expirience__subtitle {
		font-size: calc(18px + 4 * (100vw - 375px) / 1040);
	}
	.expirience__text {
		font-size: calc(14px + 2 * (100vw - 375px) / 1040);
	}
	.rating-card__title {
		font-size: calc(22px + 10 * (100vw - 375px) / 1040);
	}
	.rating-card p,
	.rating-card li {
		font-size: calc(18px + 4 * (100vw - 375px) / 1040);
	}
	.page-about__text {
		font-size: calc(24px + 56 * (100vw - 375px) / 1040);
	}
	.footer,
	.footer__copyright,
	.rating-card__text {
		font-size: calc(18px + 4 * (100vw - 375px) / 1040);
	}
	.footer__links {
		font-size: calc(16px + 2 * (100vw - 375px) / 1040);
	}
	.spoller__title {
		font-size: calc(22px + 10 * (100vw - 375px) / 1040);
	}
	.child-expertise-list__title {
		font-size: calc(16px + 16 * (100vw - 375px) / 1040);
	}
	.conventors-links__item {
		font-size: calc(24px + 8 * (100vw - 375px) / 1040);
	}
	#contact-modal p {
		font-size: calc(18px + 14 * (100vw - 375px) / 1040);
	}
	#contact-modal button#close-modal {
		font-size: calc(16px + 6 * (100vw - 375px) / 1040);
	}
	.cookie-banner__title {
		font-size: calc(22px + 10 * (100vw - 375px) / 1040);
	}
}
@media (max-width: 1300px) {
	.footer__wrap {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.footer__column {
		max-width: 100%;
		gap: 20px;
		justify-content: flex-start;
	}
	.footer__column:nth-child(even) {
		align-items: flex-end;
	}
	.footer__inner {
		margin-top: auto;
	}
	.footer__menu .menu__list {
		align-items: flex-end;
	}
}
@media (max-width: 1200px) {
	.about__wrap {
		flex-wrap: wrap;
	}
	.about__content {
		max-width: 100%;
	}
	.about__img {
		margin: 0;
		width: 100%;
		max-width: 100%;
	}
	.about-cards {
		flex-wrap: wrap;
		justify-content: center;
	}
	.team-card__inner {
		height: 220px;
	}
	.news-card__img {
		height: 280px;
	}
	.culture__wrap {
		flex-direction: column;
	}
	.culture__img {
		margin-right: 0;
		max-width: 515px;
		height: auto;
	}
	.section--single-expertise {
		background-position: right -75px bottom -75px;
		background-size: 640px;
	}
	.single-team__content {
		max-width: 460px;
	}
	.single-team__inner {
		gap: 30px;
	}
	.career__wrap {
		flex-wrap: wrap;
	}
	.career__slider {
		margin: 0 !important;
	}
	.page-career__img {
		flex-shrink: 1;
		margin: 0;
		max-width: 535px;
	}
	.conventors__wrap {
		flex-wrap: wrap;
	}
	.conventors__img {
		min-width: 0;
		height: 680px;
		width: 100%;
	}
}
@media (min-width: 993px) {
	.expertise__slider {
		display: none;
	}
	.expertise__inner {
		display: none;
	}
	.team__slider--mobile {
		display: none;
	}
}
@media (max-width: 992px) {
	.section {
		padding: 30px 0;
	}
	.logo {
		max-width: 70px;
	}
	.about__img img {
		width: 100%;
	}
	.section-header {
		flex-direction: column;
		align-items: flex-start;
	}
	.team .cards {
		grid-template-columns: repeat(4, 1fr);
	}
	.admins .cards {
		grid-template-columns: repeat(4, 1fr);
	}
	.team .cards--desktop {
		display: none;
	}
	.news__cards {
		grid-template-columns: repeat(3, 1fr);
	}
	.expertise__cards {
		display: none;
	}
	.page-about__wrap:nth-child(2)::after {
		width: 190vw;
	}
	.career__slider {
		max-width: 100%;
	}
	.career__slider img {
		width: 100%;
	}
	.services .cards {
		grid-template-columns: repeat(2, minmax(305px, 470px));
	}
	.section--single-expertise {
		background-position: right -165px bottom -165px;
	}
	.section--conditions::after {
		width: 700px;
		height: 700px;
	}
	.section--dream::after {
		width: 700px;
		height: 700px;
	}
	.single-team__content {
		max-width: 100%;
	}
	.single-team__inner {
		gap: 30px 60px;
	}
	.single-team {
		flex-direction: column;
		align-items: center;
	}
	.single-team__img {
		max-width: 100%;
	}
	.vacancy-card {
		padding: 0;
	}
}
@media (min-width: 769px) {
	.logo--mobile {
		display: none;
	}
}
@media (max-width: 768px) {
	.header__container {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.logo--desktop {
		display: none;
	}
	.map {
		height: 350px;
	}
	.section--conditions {
		min-height: 0;
	}
	.spoller__content--p-horizontal {
		padding: 0;
	}
	.section--single-expertise {
		background-position: right -140px bottom -145px;
		background-size: 500px;
	}
	.section--conditions::after {
		width: 500px;
		height: 500px;
	}
	.section--dream::after {
		width: 500px;
		height: 500px;
	}
	.section-header__inner {
		width: -moz-fit-content;
		width: fit-content;
		max-width: 100%;
	}
	.quiz-questions {
		gap: 5px;
		flex-wrap: wrap;
		justify-content: flex-start;
		overflow: visible;
	}
	.team .cards {
		grid-template-columns: repeat(3, 1fr);
	}
	.admins .cards {
		grid-template-columns: repeat(3, 1fr);
	}
	.news__cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.dream__wrap {
		flex-direction: column;
	}
	.dream__inner {
		max-width: 100%;
	}
	.rating-card ul {
		padding-left: 15px;
	}
	.services .cards {
		grid-template-columns: repeat(1, minmax(305px, 738px));
	}
	.career__content {
		max-width: 100%;
	}
	.career__texts:last-child {
		align-self: flex-start;
	}
	.career__texts {
		max-width: 100%;
	}
	.page-career__texts {
		gap: 50px;
	}
	.page-career {
		flex-wrap: wrap-reverse;
		justify-content: center;
		gap: 25px;
	}
	.page-career__img {
		position: static;
	}
	.contacts__info {
		padding-bottom: 0;
		width: 100%;
		max-width: 100%;
	}
	.contacts__title {
		margin-bottom: 40px;
	}
	.contacts__address,
	.contacts__wrap {
		max-width: 100%;
	}
	.contacts {
		flex-direction: column;
	}
	.conditions__item {
		margin-bottom: 65px;
	}
	.dream__item {
		margin-bottom: 65px;
	}
	.expirience__inner {
		max-width: 100%;
	}
	.expirience {
		flex-direction: column;
	}
	.rating-card {
		max-width: 100%;
	}
	.conventors__img {
		height: 100%;
		max-height: 365px;
	}
}
@media (min-width: 577px) {
	.page-career--mobile {
		display: none;
	}
	.admins__inner {
		display: none;
	}
	.footer__address {
		text-align: right;
	}
	.team-card__inner:hover {
		filter: grayscale(0);
	}
	.team-card__inner:hover .team-card__img--hover {
		opacity: 1;
		visibility: visible;
	}
}
@media (max-width: 576px) {
	.section--single-expertise {
		background-size: 0;
	}
	.section--conditions::after {
		width: 0;
		height: 0;
	}
	.section--dream::after {
		width: 0;
		height: 0;
	}
	.section-header {
		flex-direction: column;
		align-items: flex-start;
	}
	.content-news .wp-block-image {
		flex-shrink: 1 !important;
	}
	.content-news .wp-block-image img {
		width: 100% !important;
	}
	.link {
		padding: 20px;
		width: 100%;
	}
	.link--width-small {
		width: -moz-fit-content;
		width: fit-content;
	}
	.team-card__inner {
		width: 100%;
		height: 240px;
	}
	.team-card__img {
		width: 100%;
		object-position: top;
	}
	.news-card {
		max-width: 100%;
	}
	.page-career--desktop {
		display: none;
	}
	.page-career {
		flex-wrap: wrap;
	}
	.page-career__title {
		margin: 0;
	}
	.page-career__texts {
		gap: 25px;
	}
	.page-career__inner:nth-child(2n) {
		align-self: flex-start;
	}
	.team .cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.admins .cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.form .form-inner {
		flex-direction: column;
		align-items: stretch;
	}
	.quiz {
		padding: 20px;
	}
	.quiz-questions__text.show {
		padding: 12px 15px;
	}
	.page-about__wrap:nth-child(2)::after {
		width: 230vw;
	}
	.news-card__img {
		height: 330px;
	}
	.news__cards--slider .news-card {
		max-width: 330px;
	}
	.about__img {
		height: auto;
	}
	.single-team__img {
		height: 365px;
	}
	.expertise__inner {
		flex-direction: column-reverse;
		align-items: flex-start;
	}
	.team__inner {
		flex-direction: column-reverse;
		align-items: flex-start;
	}
	.team-specializations {
		margin-bottom: 40px;
	}
	.services__inner {
		flex-direction: column-reverse;
		align-items: flex-start;
	}
	.footer__wrap {
		padding: 30px 0;
		font-size: 14px;
	}
	.footer__column:nth-child(even) {
		align-items: flex-start;
	}
	.footer__column:nth-child(1) {
		order: 1;
	}
	.footer__column:nth-child(2) {
		order: 3;
	}
	.footer__column:nth-child(3) {
		order: 2;
	}
	.footer__column:nth-child(4) {
		order: 4;
	}
	.footer__links,
	.footer__mail,
	.footer__phone,
	.footer__title--align-right {
		text-align: left;
	}
	.footer__menu .menu__list {
		align-items: flex-start;
	}
	.spoller__header {
		padding: 25px 0;
	}
	#contact-modal p {
		margin-bottom: 25px;
	}
	.cookie-banner {
		padding: 25px;
	}
}
@media (max-width: 490px) {
	.news__cards {
		grid-template-columns: repeat(1, 1fr);
	}
}
