@import url("../css/stylesheet.css");

:root {
 --black: #000000;
	--brand-dark: #02221C;
	--brand:#2F9970;
	--brand-light:#62B58F;
	--white: #FFFFFF;
}


* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: var(--black);
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
body {
  font-family: "Monrope", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  background: var(--white);
  position: relative;
  color: var(--black);
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}
footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
body,
html {
  overflow-x: hidden;
}
input {
  outline: none;
}
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.preloader::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.8);
}
.preloader__image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url("../img/logo-tg-new-dark.svg");
  width: 200px;
  height: 70px;
  background-repeat: no-repeat;
  background-size: contain;
}
.grow {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.container {
  width: 100%;
  max-width: 1920px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  height: auto;
}
@media (min-width: 992px) {
	.container {
		padding-left: 60px;
		padding-right: 60px;
	}
}
@media (min-width: 1536px) {
	.container {
		padding-left: 100px;
		padding-right: 100px;
	}
}
.container--banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
	min-height: 100svh;
	height: max-content;
}

.container--banner .header {
	background-color: transparent;
	border-bottom: none;
}

.title {
	text-align: center;
	font-family: 'Prosto One', sans-serif;
	font-weight: 400;
  font-size: 30px;
  color: var(--white);
  line-height: 90%;
  z-index: 3;

	@media (min-width: 768px) {
		font-size: 48px;
	}
	@media (min-width: 1024px) {
		font-size: 64px;
	}
	@media (min-width: 1280px) {
		font-size: 80px;
	}
	@media (min-width: 1536px) {
		font-size: 100px;
	}
}
.banner {
  position: relative;
  width: 100%;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.3)),
    to(rgba(0, 0, 0, 0.3))
  );
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.banner__video {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner__video_desktop {
	display: none;

	@media (min-width: 768px) {
		display: block;
	}
}

.banner__video_sm {
	display: block;

	@media (min-width: 768px) {
		display: none;
	}
}

.banner__content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: flex-end;
}

.banner__title {
	margin: auto;
	font-family: 'Prosto One', sans-serif;
  font-size: 30px;
	text-align: center;
  color: var(--white);
  line-height: 110%;

	@media (min-width: 640px) {
		font-size: 36px;
	}
	@media (min-width: 992px) {
		font-size: 48px;
	}
	@media (min-width: 1280px) {
		font-size: 56px;
	}
	@media (min-width: 1536px) {
		font-size: 70px;
	}
}

.banner__title span {
  color: var(--brand-light);
}

.banner__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	flex-direction: column;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .banner__nav {
		flex-direction: row;
		-ms-flex-direction: row;
		-webkit-flex-direction: row;
		align-items: center;
    margin-bottom: 50px;
  }
}

.banner__nav-item {
	display: flex;
	align-items: center;
	justify-content: center;
  flex: 1 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
	border-bottom: none;
  color: var(--white);
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
  text-align: center;
	min-height: 80px;

	@media (min-width: 768px) {
		min-height: 120px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
		border-right: none;
	}

	@media (min-width: 1024px) {
		min-height: 160px;
	}

	@media (min-width: 1536px) {
		min-height: 200px;
	}
}

.banner__nav-item:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}


.banner__nav-item:hover {
  border: 1px solid var(--white);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
	background-color: var(--black);
	border-bottom: 1px solid var(--white);
}

.header.no-border {
	border-bottom: none;
}

.header__rootlink {
	margin-right: auto;
}

.header__logo {
  width: 120px;
  height: auto;
  object-fit: contain;
}
@media (min-width: 992px) {
  .header__logo {
    width: 150px;
  }
}
@media (min-width: 1280px) {
  .header__logo {
    width: 177px;
  }
}
.header__search {
  width: 20px;
  height: 20px;
  background: url("../img/icon/search.svg") no-repeat;
  background-size: contain;
  cursor: pointer;
}
@media (min-width: 992px) {
  .header__search {
    width: 25px;
		height: 25px;
  }
}
.header__search--banner {
  background: url("../img/icon/search.svg") no-repeat;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
	gap: 24px;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
	gap: 10px;
}
.header__nav-link {
  cursor: pointer;
	margin-right: 0;
	margin-bottom: 15px;
	font-size: 18px;
	color: var(--black);
	padding: 10px 15px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;

	@media (min-width: 992px) {
		font-size: 14px;
		color: var(--white);
		margin-bottom: 0;
	}

	@media (min-width: 1280px) {
		font-size: 17px;
	}
}
.header__nav-link:hover {
  color: var(--brand);
}
.header__burger {
  cursor: pointer;
  display: none;
  height: 3px;
  width: 20px;
  position: absolute;
  background: var(--white);
}
.header__burger::before {
  top: 5px;
  content: "";
  height: 3px;
  width: 20px;
  position: absolute;
  background: var(--white);
  margin: 0 auto;
}
.header__burger::after {
  bottom: 5px;
  content: "";
  height: 3px;
  width: 20px;
  position: absolute;
  background: var(--white);
  margin: 0 auto;
}
.statistic {
  display: grid;
	gap:20px;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (min-width: 640px) {
	.statistic {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1280px) {
  .statistic {
		grid-template-columns: repeat(4, 1fr);
		margin-top: 200px;
		margin-bottom: 200px;
  }
}
.statistic__text {
	font-family: 'Monrope', sans-serif;
	font-weight: 500;
  color:var(--black);
  text-align: center;
	opacity: 0.6;
	line-height: 100%;
}
@media (min-width: 1024px) {
  .statistic__text {
    font-size: 18px;
  }
}
@media (min-width: 1536px) {
  .statistic__text {
    font-size: 20px;
  }
}

.statistic__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.statistic__number {
  position: relative;
	width: 100%;
  height: 125px;
}

@media (min-width: 1280px) {
  .statistic__number {
		height: 220px;
  }
}

.statistic__number-background {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  padding: 5px;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.statistic__number-item {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Oswald', sans-serif;
  font-size: 100px;
  font-weight: 700;
  background: var(--white);
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  text-align: center;
}
@media (min-width: 1024px) {
  .statistic__number-item {
    font-size: 120px;
  }
}
@media (min-width: 1280px) {
  .statistic__number-item {
    font-size: 160px;
  }
}
@media (min-width: 1536px) {
	.statistic__number-item {
		font-size: 180px;
	}
}

.services {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

.services__wrapper {
  position: relative;
  display: grid;

	@media (min-width: 1024px) {
		grid-template-columns: 1fr 1fr;
	}
}


.services__item {
  position: relative;
	display: flex;
	flex-direction: column;
	padding: 25px;


	@media (min-width: 640px) {
		padding: 40px;
	}
	@media (min-width: 992px) {
		padding: 60px;
	}
	@media (min-width: 1536px) {
		padding: 100px;
	}
}

.services__item:nth-child(3) {
	position: relative;
	padding-bottom: 0;

	@media (min-width: 1024px) {
		grid-column: span 2;
		aspect-ratio: 2 / 1;
		padding-bottom: 100px;
	}
}

.services__item:nth-child(3):before {
	content: '';
	position: absolute;
	z-index: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 150px;
	background: linear-gradient(0deg, #000 50px, transparent 90%);
}

.services__item-text {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Prosto One', sans-serif;
  font-size: 20px;
  line-height: 100%;
  color: var(--white);
	flex-grow: 1;
	text-align: center;

	@media (min-width: 640px) {
		font-size: 26px;
	}

	@media (min-width: 1024px) {
		align-items: flex-start;
		justify-content: flex-start;
		text-align: left;
		font-size: 36px;
	}

	@media (min-width: 1536px) {
		font-size: 60px;
	}
}

.services__item:nth-child(2) .services__item-text {
	@media (min-width: 1024px) {
		align-items: flex-end;
		justify-content: flex-end;
		text-align: right;
	}
}

.services__btn {
	position: relative;
	z-index: 1;
  display: flex;
	align-items: center;
	justify-content: center;
  color: var(--white);
  line-height: 120%;
	min-height: 50px;
  border: 1px solid var(--white);
	text-align: center;
	padding: 15px;
	width: 100%;
	font-size: 15px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;

	@media (min-width: 640px) {
		margin: 0 auto;
		width: fit-content;
		min-width: 300px;
	}

	@media (min-width: 992px) {
		min-height: 70px;
		font-size: 20px;
	}

	@media (min-width: 1024px) {
		margin-right: 0;
		padding: 30px 100px;
		font-size: 26px;
	}
}
.services__btn:hover {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.services__img {
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  background: transparent;

	@media (min-width: 992px) {
		height: auto;
		aspect-ratio: 1 / 1;
	}
}

.services__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.independence {
  padding-top: 50px;
  padding-bottom: 50px;
	background: linear-gradient(180deg, #000 0%, #02221c 50%, #596e6a 89.48%, #fff 100%);

	@media (min-width: 992px) {
		padding-bottom: 100px;
		background: linear-gradient(180deg, #000 0%, #02221c 50%, #596e6a 85.48%, #fff 95.79%);
	}

	@media (min-width: 1536px) {
		background: linear-gradient(180deg, #000 0%, #02221c 50%, #596e6a 75.48%, #fff 95.79%);
	}
}
.independence__wrapper {
  margin-top: 50px;
  display: grid;
	gap: 50px;

	@media (min-width: 992px) {
		grid-template-columns: repeat(2, 1fr);
	}
	@media (min-width: 1280px) {
		margin-top: 100px;
	}
	@media (min-width: 1536px) {
		grid-template-columns: repeat(4, 1fr);
	}
}

.independence__item {
	position: relative;
  padding: 40px 20px 20px;
	border-left: 1px solid var(--white);
	border-right: 1px solid var(--white);
	border-bottom: 1px solid var(--white);
	color: var(--white);
	text-align: center;
}

.independence__item:before {
	content:'';
	position: absolute;
	top: 0;
	left: 0;
	width: calc((100% - 51px) / 2);
	height: 1px;
	border-top: 1px solid var(--white);
}

.independence__item:after {
	content:'';
	position: absolute;
	top: 0;
	right: 0;
	width: calc((100% - 51px) / 2);
	height: 1px;
	border-top: 1px solid var(--white);
}

.independence__item-icon {
	position: absolute;
	top: 0;
	left: 50%;
  width: 51px;
  height: 51px;
	padding: 10px;
  object-fit: contain;
	transform: translate(-50%, -50%);
}
.independence__item-title {
	font-family: 'Prosto One', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
	line-height: 104%;

	@media (min-width: 992px) {
		font-size: 24px;
	}

	@media (min-width: 1536px) {
		font-size: 28px;
	}

	@media (min-width: 1920px) {
		font-size: 33px;
	}
}

.independence__item-text {
  font-size: 14px;
	line-height: 110%;

	@media (min-width: 992px) {
		font-size: 16px;
	}

	@media (min-width: 1536px) {
		font-size: 17px;
	}
}

.modal {
  width: 520px;
  padding: 0;
  display: none;
}
@media (min-width: 992px) {
  .modal {
    width: calc(0.29 * 100vw + 284.82759px);
  }
}
@media (min-width: 1920px) {
  .modal {
    width: 740px;
  }
}
.contact {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  display: flex;
	flex-direction: column;

	@media (min-width: 992px) {
		flex-direction: row;
	}
}

.contact__title{
	font-family: 'Prosto One', sans-serif;
	margin-bottom: 24px;
	color: var(--black);
	text-align: center;
	font-size: 30px;

	@media (min-width: 768px) {
		font-size: 48px;
	}
	@media (min-width: 1280px) {
		margin-bottom: 50px;
		font-size: 60px;
	}
}

.contact__title-modal {
	text-align: center;

	@media (min-width: 1280px) {
		margin-bottom: 50px;
	}
}

.contact__img {
	width: 100%;
	height: 350px;
	background-position: center !important;
	background-size: cover;

	@media (min-width: 992px) {
		height: unset;
	}
}

.contact__form {
  padding: 0 25px 50px;
  display: flex;
  flex-direction: column;

	@media (min-width: 640px) {
		padding: 0 40px 50px;
	}
	@media (min-width: 992px) {
		padding: 50px 60px;
	}
	@media (min-width: 1536px) {
		padding: 50px 100px;
	}
}
.contact__form-item {
  display: flex;
  flex-direction: column;

	@media (min-width: 992px) {
		min-width: 450px;
	}
	@media (min-width: 1536px) {
		min-width: 540px;
	}
}

.contact__form-item button {
	font-family: 'Monrope', sans-serif;
}

.contact__form-item--modal {
  width: 100%;
}
.contact__form--modal {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

	@media (min-width: 992px) {
		padding-top: 60px;
	}
	@media (min-width: 1536px) {
		padding-top: 100px;
	}
}

.contact__input {
	font-family: 'Monrope', sans-serif;
  padding-bottom: 10px;
  margin-bottom: 25px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
  font-size: 16px;
  color: var(--black);
  line-height: 140%;
  font-weight: 400;
	text-align: center;

	@media (min-width: 992px) {
		text-align: left;
		padding-bottom: calc(0.01078 * 100vw + -0.68966px);
		margin-bottom: calc(0.02694 * 100vw + -1.72414px);
	}
	@media (min-width: 1536px) {
		padding-bottom: 20px;
		margin-bottom: 50px;
	}
}

.contact__input:active,
.contact__input:focus {
  border-bottom: 1px solid var(--black);
}
.contact__input::-webkit-input-placeholder {
  color: rgba(34, 34, 34, 0.6);
}
.contact__input:-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.6);
}
.contact__input::-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.6);
}
.contact__input::placeholder {
  color: rgba(34, 34, 34, 0.6);
}
.contact__btn {
	background: linear-gradient(90deg, #060708 0%, #244839 40.87%, #50a580 100%);
	border: none;
  margin-top: 10px;
  color: var(--white);
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  cursor: pointer;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
	font-size: 15px;
	min-height: 50px;

	@media (min-width: 992px) {
		min-height: 70px;
		font-size: 20px;
	}
}

.contact__btn:hover {
  transform: scale(0.95);
}
.contact__text {
  font-size: 13px;
	line-height: 140%;
	font-weight: 500;
  color: var(--black);
	text-align: center;
	
	@media (min-width: 992px) {
		text-align: left;
	}
}

.contact__text a {
  color: var(--brand);
}
.footer {
  background: var(--brand-dark);
}
.footer__flex {
  padding-top: 25px;
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .footer__flex {
    padding-top: calc(0.02694 * 100vw + -1.72414px);
  }
}
@media (min-width: 1920px) {
  .footer__flex {
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  .footer__flex {
    padding-bottom: calc(0.02694 * 100vw + -1.72414px);
  }
}
@media (min-width: 1920px) {
  .footer__flex {
    padding-bottom: 50px;
  }
}
.footer__logo {
  width: 180px;
  height: 45px;
  -o-object-fit: contain;
  object-fit: contain;

  margin-bottom: 15px;
}
@media screen and (min-width: 576px) {
	.footer__logo {
		object-position: left;
	}
}

@media (min-width: 992px) {
  .footer__logo {
    width: calc(0.02694 * 100vw + 153.27586px);
  }
}
@media (min-width: 1920px) {
  .footer__logo {
    width: 205px;
  }
}
@media (min-width: 992px) {
  .footer__logo {
    height: calc(0.01078 * 100vw + 34.31034px);
  }
}
@media (min-width: 1920px) {
  .footer__logo {
    height: 55px;
  }
}
@media (min-width: 992px) {
  .footer__logo {
    margin-bottom: calc(0.01616 * 100vw + -1.03448px);
  }
}
@media (min-width: 1920px) {
  .footer__logo {
    margin-bottom: 30px;
  }
}
.footer__text {
  font-size: 12px;
  color: var(--white);
  line-height: 160%;
}
@media (min-width: 992px) {
  .footer__text {
    font-size: calc(0.00431 * 100vw + 7.72414px);
  }
}
@media (min-width: 1920px) {
  .footer__text {
    font-size: 16px;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.footer__nav-link {
  font-size: 12px;
  color: var(--white);
  line-height: 140%;
  margin-bottom: 15px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .footer__nav-link {
    font-size: calc(0.00431 * 100vw + 7.72414px);
  }
}
@media (min-width: 1920px) {
  .footer__nav-link {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .footer__nav-link {
    margin-bottom: calc(-0.00539 * 100vw + 20.34483px);
  }
}
@media (min-width: 1920px) {
  .footer__nav-link {
    margin-bottom: 10px;
  }
}
.footer__nav-link:hover {
  color: var(--brand);
}
.content {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .content {
    margin-top: calc(0.10776 * 100vw + -56.89655px);
  }
}
@media (min-width: 1920px) {
  .content {
    margin-top: 150px;
  }
}
@media (min-width: 992px) {
  .content {
    margin-bottom: calc(0.10776 * 100vw + -56.89655px);
  }
}
@media (min-width: 1920px) {
  .content {
    margin-bottom: 150px;
  }
}
.content-js {
  display: none;
  opacity: 0;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
.content-js--opacity {
  opacity: 1;
}
.content-js--active {
  display: block;
}
.text {
  font-size: 18px;
  color: var(--black);
  margin-top: 22px;
}

.text_light {
	color: var(--white);
}

.text_light * {
	color: var(--white) !important;
}

.text * {
	font-family: "Monrope", sans-serif !important;
	line-height: 100%;
}
@media (min-width: 992px) {
	.text {
		font-size: 18px;
	}
}
@media (min-width: 1536px) {
  .text {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .text {
    margin-top: calc(0.02694 * 100vw + -1.72414px);
  }
}
@media (min-width: 1920px) {
  .text {
    margin-top: 50px;
  }
}

.text li::marker{
	font-weight: 500;
	color: var(--brand);
}

.text li > strong{
	font-weight: 500;
	color: var(--brand);
}

.text strong,
.text strong * {
	font-weight: 600;
	font-size: 15px;

	@media (min-width: 992px) {
		font-size: 20px;
	}
	@media (min-width: 1536px) {
		font-size: 25px;
	}
}

.text a {
	white-space: nowrap;
}

.about-hero {
	position: relative;
	background-image: url("../img/about-hero-bg.png");
	background-color: var(--black);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.about-hero:before {
	content: '';
	position: absolute;
	z-index: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 300px;
	background: linear-gradient(180deg, transparent 0%, #131e19cc 28.13%, #7fc2a4c4 90%);

	@media (min-width: 1536px) {
		height: 150px;
		background: linear-gradient(180deg, transparent 30%, rgba(127, 194, 164, 0.3) 90%);
	}
}

.about-hero .text * {
	text-align: center !important;
	font-size: 15px !important;

	@media (min-width: 992px) {
		text-align: left !important;
		font-size: 20px !important;
	}
	@media (min-width: 1536px) {
		font-size: 25px !important;
	}
}

.about-hero .accordeon__wrapper:first-child {
	border-top: none;
}

.about-hero .accordeon__wrapper:last-child {
	border-bottom: none;
}

.about-hero .accordeon__link {
	@media (min-width: 992px) {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	@media (min-width: 1536px) {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

.about-hero .accordeon__link-text {
	padding-left: 30px;
	font-family: 'Prosto One', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 100%;
	word-break: break-word;
	margin-right: 10px;

	@media (min-width: 640px) {
		font-size: 24px;
		padding-left: 40px;
	}

	@media (min-width: 992px) {
		font-size: 28px;
	}
	@media (min-width: 1536px) {
		font-size: 30px;
		padding-left: 50px;
	}
}

.about-hero .accordeon__body {
	font-size: 14px;

	@media (min-width: 992px) {
		font-size: 18px;
		padding-bottom: 20px;
	}
	@media (min-width: 1536px) {
		font-size: 22px;
		padding-bottom: 25px;
	}
}

.about-hero__container {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 40px;
	padding-top: 60px;
	padding-bottom: 60px;

	@media (min-width: 1536px) {
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
		gap: 160px;
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

.about-hero__block {
	display: flex;
	flex-direction: column;
}

ol.about-hero__block {
	counter-reset: hero-counter;
	list-style-type: none;
}

ol.about-hero__block li {
	position: relative;
	counter-increment: hero-counter;
}

ol.about-hero__block li::before {
	content: counter(hero-counter, decimal-leading-zero) "";
	position: absolute;
	top: 15px;
	font-family: 'Oswald', sans-serif !important;
	font-size: 18px;
	color: var(--white);
	line-height: 100%;

	@media (min-width: 640px) {
		font-size: 20px;
	}
	@media (min-width: 992px) {
		top: 20px;
	}
	@media (min-width: 1536px) {
		top: 25px;
	}
}

.about-hero__block .title {
	@media (min-width: 1536px) {
		text-align: left;
	}
}

.info {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 50px;
	padding-bottom: 50px;
	background: linear-gradient(180deg, #7fc2a4 0%, #e2f7ea 50%, #7fc2a4 80%);
	border-top: 1px solid var(--white);
	border-bottom: 1px solid var(--white);

	@media (min-width: 640px) {
		min-height: 250px;
	}
	@media (min-width: 992px) {
		min-height: 400px;
	}
	@media (min-width: 1536px) {
		min-height: 500px;
		background: linear-gradient(180deg, #4f7866 0%, #85c5a8 25%, #dff5e8 50%, #85c5a8 75%, #365246 98%);
		}
}

.info:before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--white);
	opacity: 0.16;
	@media (min-width: 1536px) {
		opacity: 0;
	}
}

.info__wrapper {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;

	@media (min-width: 640px) {
		align-items: baseline;
	}

	@media (min-width: 992px) {
		gap: 40px;
		flex-wrap: nowrap;
	}
}

.info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40%;

	@media (min-width: 640px) {
		width: 22%;
	}
}
.info__item-icon {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 15px;

	@media (min-width: 992px) {
		width: 60px;
		height: 60px;
	}
	@media (min-width: 1536px) {
		width: 98px;
		height: 98px;
	}
}
.info__item-text {
  text-align: center;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
	white-space: pre-line;
}
@media (min-width: 992px) {
  .info__item-text {
    font-size: calc(0.00431 * 100vw + 9.72414px);
  }
}
@media (min-width: 1920px) {
  .info__item-text {
    font-size: 18px;
  }
}

.history {
	position: relative;
	padding-top: 50px;
	padding-bottom: 100px;
	background: linear-gradient(180deg, #7fc2a4 0%, #131e19 15%, #000 81.59%, #7fc2a4 95.49%, rgba(255, 255, 255, 0) 100%);

	@media (min-width: 1280px) {
		background: linear-gradient(180deg, #7fc2a4 0%, #131e19 15%, #000 81.59%, #7fc2a4 91.49%, rgba(255, 255, 255, 0) 97.22%);
	}

	@media (min-width: 1536px) {
		background: linear-gradient(180deg, #345043 0%, #131e19 15%, #010101 75%, #6ca58c 91.49%, rgba(255, 255, 255, 0) 100%);
	}
}


.history .title {
	margin-bottom: 24px;

	@media (min-width: 1536px) {
		margin-bottom: 30px;
	}
}

.history__block-group {
	@media (min-width: 1536px) {
		display: flex;
		justify-content: center;
		border-bottom: 1px solid var(--white);
		padding-left: 100px;
		padding-right: 100px;
	}
}

.history__block-group:last-child {
	@media (min-width: 1536px) {
		border-bottom: none;
	}
}

.history__block-group:nth-child(odd) .history__block:before {
	@media (min-width: 1536px) {
		top: 100%;
	}
}
.history__block-group:nth-child(even) .history__block {
	@media (min-width: 1536px) {
		padding: 20px 20px 0;
	}
}

.history__block {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 0 20px 24px;
	color: var(--white);

	@media (min-width: 992px) {
		padding: 0 25px 25px;
	}

	@media (min-width: 1536px) {
		border-left: 1px solid var(--white);
		max-width: 33%;
	}
}

.history__block:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: var(--white);
	transform: translate(-50%,-50%);
}

.history__block-title {
	margin-top: -9px;
	font-size: 18px;
	font-weight: 600;
	line-height: 100%;

	@media (min-width: 992px) {
		font-size: 22px;
	}

	@media (min-width: 1536px) {
		margin-top: 0;
		font-size: 25px;
	}
}

.history__block-description {
	line-height: 100%;
	white-space: pre-line;

	@media (min-width: 992px) {
		font-size: 18px;
	}
}

.history .text * {
	font-size: 15px !important;

	@media (min-width: 640px) {
		font-size: unset !important;
	}
}

.history .container {
	@media (min-width: 1536px) {
		padding-left: 0;
		padding-right: 0;
	}
}

.collage {
  margin-top: 50px;
  width: 100%;
  max-width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
  margin: auto;
  padding: 0;
}
@media (min-width: 992px) {
  .collage {
    margin-top: calc(0.05388 * 100vw + -3.44828px);
  }
}
@media (min-width: 1920px) {
  .collage {
    margin-top: 100px;
  }
}
@media screen and (max-width: 992px) {
  .collage {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .collage {
    max-width: 540px;
  }
}
@media screen and (max-width: 576px) {
  .collage {
    max-width: none;
  }
}
.collage__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.collage__item {
  width: 33.3%;
  height: 250px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .collage__item {
    height: calc(0.17241 * 100vw + 78.96552px);
  }
}
@media (min-width: 1920px) {
  .collage__item {
    height: 410px;
  }
}
.collage__item-img {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
.collage__item-text {
  text-align: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  z-index: 1;
  width: 80%;
}
@media (min-width: 992px) {
  .collage__item-text {
    font-size: calc(0.00862 * 100vw + 9.44828px);
  }
}
@media (min-width: 1920px) {
  .collage__item-text {
    font-size: 26px;
  }
}

.accordeon__wrapper {
	border-bottom: 1px solid var(--white);
}

.accordeon__wrapper:last-child {
	border-bottom: none;
}

.accordeon__link {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 15px;
  line-height: 91%;
  color: var(--white);
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
  padding-top: 15px;
  padding-bottom: 15px;

	@media (min-width: 640px) {
		font-size: 18px;
	}
	@media (min-width: 1280px) {
		font-size: 22px;
	}
}

.accordeon__link.in .accordeon__link-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.accordeon__link-icon {
  background: url("../img/icon/arrow-white.svg") no-repeat;
  width: 12px;
  height: 6px;
  background-size: contain;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
	flex-shrink: 0;
}
@media (min-width: 992px) {
  .accordeon__link-icon {
    width: calc(0.00216 * 100vw + 9.86207px);
  }
}
@media (min-width: 1536px) {
  .accordeon__link-icon {
    width: 14px;
  }
}
@media (min-width: 992px) {
  .accordeon__link-icon {
    height: calc(0.00108 * 100vw + 4.93103px);
  }
}
@media (min-width: 1536px) {
  .accordeon__link-icon {
    height: 7px;
  }
}

.accordeon__link-text {
	font-weight: 600;
}

.accordeon__body {
  padding-bottom: 15px;
  font-size: 14px;
  color: var(--white);
  display: none;
	line-height: 100%;

	@media (min-width: 640px) {
		font-size: 16px;
	}
	@media (min-width: 992px) {
		font-size: 18px;
	}
	@media (min-width: 1536px) {
		font-size: 20px;
	}
}

.accordeon__body ul {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .accordeon__body ul {
    margin-bottom: calc(0.00539 * 100vw + 4.65517px);
  }
}
@media (min-width: 1536px) {
  .accordeon__body ul {
    margin-bottom: 15px;
  }
}
.accordeon__body ul li {
  margin-left: 10px;
  font-size: 14px;
  color: var(--black);
  line-height: 100%;

	@media (min-width: 640px) {
		font-size: 16px;
	}
	@media (min-width: 992px) {
		font-size: 18px;
	}
	@media (min-width: 1280px) {
		font-size: 20px;
	}
}
@media (min-width: 992px) {
  .accordeon__body ul li {
    margin-left: calc(0.01078 * 100vw + -0.68966px);
  }
}
@media (min-width: 1536px) {
  .accordeon__body ul li {
    margin-left: 20px;
  }
}
.accordeon__btn {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  color: var(--brand);
  font-weight: 500;
  line-height: 125%;
}
@media (min-width: 992px) {
  .accordeon__btn {
    margin-top: calc(0.00539 * 100vw + 9.65517px);
  }
}
@media (min-width: 1920px) {
  .accordeon__btn {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .accordeon__btn {
    font-size: calc(0.00431 * 100vw + 7.72414px);
  }
}
@media (min-width: 1920px) {
  .accordeon__btn {
    font-size: 16px;
  }
}
.career {
  display: block;
}
.career__wrapper {
  padding: 25px;
  transition: 0.38s ease-in-out;
  position: relative;
	color: var(--white);
	background: rgba(255, 255, 255, 0.2);

	@media (min-width: 992px) {
		padding: 40px;
	}
	@media (min-width: 1536px) {
		padding: 60px;
	}
}

.career__wrapper::before {
  position: absolute;
  content: "";
  right: 25px;
  top: 25px;
  background: url("../img/icon/link.svg") no-repeat;
  width: 15px;
  height: 15px;
  background-size: contain;

	@media (min-width: 992px) {
		right: 40px;
		top: 40px;
		width: 20px;
		height: 20px;
	}

	@media (min-width: 1536px) {
		right: 60px;
		top: 60px;
	}
}


.career__wrapper:hover {
  background: var(--brand);
}
.career__icon {
  background: url("../img/icon/career.svg") no-repeat;
  width: 40px;
  height: 40px;
  background-size: cover;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .career__icon {
    width: calc(0.02155 * 100vw + -1.37931px);
  }
}
@media (min-width: 1920px) {
  .career__icon {
    width: 40px;
  }
}
@media (min-width: 992px) {
  .career__icon {
    height: calc(0.02155 * 100vw + -1.37931px);
  }
}
@media (min-width: 1920px) {
  .career__icon {
    height: 40px;
  }
}
@media (min-width: 992px) {
  .career__icon {
    margin-bottom: calc(0.03772 * 100vw + -2.41379px);
  }
}
@media (min-width: 1920px) {
  .career__icon {
    margin-bottom: 70px;
  }
}
.career__title {
  font-size: 20px;
	font-family: 'Prosto One', sans-serif;
  font-weight: 400;
  margin-bottom: 5px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .career__title {
    font-size: calc(0.00647 * 100vw + 17.58621px);
  }
}
@media (min-width: 1536px) {
  .career__title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .career__title {
    margin-bottom: calc(0.01078 * 100vw + 4.31034px);
  }
}
@media (min-width: 1536px) {
  .career__title {
    margin-bottom: 25px;
  }
}
.career__text {
  font-size: 14px;
	line-height: 100%;
  width: 45%;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .career__text {
    font-size: calc(0.00647 * 100vw + 11.58621px);
  }
}
@media (min-width: 1920px) {
  .career__text {
    font-size: 24px;
  }
}

.vacancies-hero {
	background-image: url("../img/about-hero-bg.png");
	background-color: var(--black);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.vacancies-hero .title {
	@media (max-width: 992px) {
		margin-bottom: 10px;
	}
}

.vacancies-hero .title span {
	white-space: nowrap;
}

.vacancies-hero__container {
	padding-top: 60px;
	padding-bottom: 60px;
	color: var(--white);
	border-bottom: 1px solid var(--white);
}

.vacancies-hero__container .text {
	margin-top: 0;
}

.vacancies-hero__container .text * {
	font-size: 15px !important;

	@media (min-width: 640px) {
		font-size: 20px !important;
	}
	@media (min-width: 1024px) {
		font-size: 25px !important;
	}
}

.vacancies-hero__container .text strong {
	font-size: 15px !important;
	font-weight: 600;

	@media (min-width: 640px) {
		font-size: 20px !important;
	}
	@media (min-width: 1024px) {
		font-size: 25px !important;
	}
}

.vacancies-hero__columns {
	display: grid;
	gap: 28px;
	margin-top: 28px;
	margin-bottom: 28px;

	@media (min-width: 1280px) {
		grid-template-columns: repeat(2,1fr);
		gap: 50px;
		margin-top: 50px;
		margin-bottom: 50px;
	}
}

.vacancies-hero__column {
	display: flex;
	flex-direction: column;
}

.vacancies-hero__column:first-child {
	padding: 14px;
	border: 1px solid var(--white);

	@media (min-width: 1280px) {
		padding: 0;
		border: none;
	}
}

.vacancies-hero__column .text {
	margin-top: 14px;
}

.vacancies-hero__column .text * {
	text-align: center !important;

	@media (min-width: 1280px) {
		text-align: left !important;
	}
}

.vacancies-hero h2 {
	font-family: 'Prosto One', sans-serif;
	font-size: 20px;
	line-height: 90%;
	text-align: center;

	@media (min-width: 992px) {
		font-size: 30px;
	}

	@media (min-width: 1280px) {
		text-align: left;
	}

	@media (min-width: 1536px) {
		font-size: 40px;
	}
}

.vacancies-hero .accordeon__body {
	line-height: 130%;
}

.vacancies-hero__list {
	display: flex;
	flex-direction: column;
	list-style-type: none;
}

.vacancies-hero__list-item {
	padding-top: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--white);
}

.vacancies-hero__list-item:last-child {
	border-bottom: none;
}

.vacancies-hero__item-title {
	display: flex;
	justify-content: space-between;
	gap: 5px;
	align-items: baseline;
	font-weight: 600;
	line-height: 110%;
	font-size: 18px;

	@media (min-width: 992px) {
		font-size: 22px;
	}
	@media (min-width: 1280px) {
		pointer-events: none;
	}
	@media (min-width: 1536px) {
		font-size: 25px;
	}
}

.vacancies-hero__item-title:after {
	flex-shrink: 0;
	content: "+";

	@media (min-width: 1280px) {
		content: '';
	}
}

.vacancies-hero__item-title.in:after {
	content: "-";

	@media (min-width: 1280px) {
		content: '';
	}
}

.vacancies-hero__item-description {
	line-height: 100%;
	padding-top: 5px;

	@media (min-width: 992px) {
		font-size: 18px;
	}
	@media (min-width: 1280px) {
		display: block !important;
	}
	@media (min-width: 1536px) {
		font-size: 22px;
	}
}

.vacancies-hero__vacancies {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.vacancies-hero__vacancies .accordeon {
	padding: 15px;
	background: rgba(255, 255, 255, 0.2);

	@media (min-width: 992px) {
		padding: 25px;
	}
}

.vacancies-hero__vacancies .accordeon__wrapper:first-child {
	border: none;
}

.vacancies-hero__vacancies .accordeon__wrapper {
	border-bottom: none;
	border-top: 1px solid var(--white);
}

.care {
	background: linear-gradient(180deg, var(--brand-dark) 10%, var(--brand) 65%, var(--brand-light) 90%, var(--white) 99%);
}

.care__container {
	display: flex;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 100px;
	color: var(--white);
}

.care__header {
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 50px;
	margin-bottom: 110px;

	@media (min-width: 1800px) {
		margin-top: 0;
		margin-bottom: 50px;
	}
}

.care__header > * {
	z-index: 2;
	max-width: 350px;

	@media (min-width: 640px) {
		max-width: 450px;
	}
	@media (min-width: 768px) {
		max-width: unset;
	}
}

.care__header .text {
	margin-top: 0;
}

.care__header:before {
	content: "";
	position: absolute;
	z-index: 1;
	width: 678px;
	height: 482px;
	background-image: url("../img/care-bg-image-mobile.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transform: translateY(5%);
	scale: 1.05;
	pointer-events: none;

	@media (min-width: 640px) {
		scale: 1.3;
	}
	
	@media (min-width: 1800px) {
		display: none;
		background-image: none;
	}
}

.care__header .text * {
	font-size: 15px !important;

	@media (min-width: 640px) {
		font-size: 20px !important;
	}
	@media (min-width: 1024px) {
		font-size: 25px !important;
	}
}

.care__container h3 {
	position: relative;
	z-index: 1;
	font-family: 'Prosto One', sans-serif;
	text-align: center;
	font-size: 20px;
	line-height: 90%;
	font-weight: 400;

	@media (min-width: 992px) {
		font-size: 30px;
	}

	@media (min-width: 1536px) {
		font-size: 40px;
	}
}

.care__image {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.care__image:before {
	@media (min-width: 1800px) {
		content: "";
		position: absolute;
		z-index: 2;
		inset: 0;
		background-repeat: no-repeat;
		background-position: bottom center;
		pointer-events: none;
		background-image: url("../img/care-bg-image.png");
		background-size: auto 100%;
		margin-bottom: 50px;
	}
}

.care__list {
	position: relative;
	z-index: 1;
	display: grid;
	row-gap: 24px;
	margin-bottom: 28px;

	@media (min-width: 640px) {
		grid-template-columns: repeat(2,1fr);
		column-gap: 20px;
	}

	@media (min-width: 1800px) {
		column-gap: 30%;
		margin-bottom: 50px;
	}
}

.care-list__item {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 19px;
	border: 1px solid var(--white);
	text-align: center;

	@media (min-width: 992px) {
		padding: 25px;
	}

	@media (min-width: 1800px) {
		padding: 80px 150px 25px 25px;
		text-align: left;
	}
}

.care-list__item:nth-child(even) {
	@media (min-width: 1800px) {
		padding: 80px 25px 25px 150px;
		text-align: right;
	}
}

.care-list__item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	background: linear-gradient(90deg, var(--black) 0%, var(--brand-dark) 40.87%, var(--brand-light) 100%);
	transform: translate(-50%,-50%);

	@media (min-width: 1024px) {
		width: 32px;
		height: 32px;
	}
	@media (min-width: 1800px) {
		top: 25px;
		left: 25px;
		transform: none;
	}
}

.care-list__item:nth-child(even):before {
	@media (min-width: 1800px) {
		left: unset;
		right: 25px;
	}
}

.care-list__item-title {
	font-weight: 600;
	line-height: 100%;
	font-size: 15px;

	@media (min-width: 640px) {
		font-size: 20px;
	}
	@media (min-width: 1024px) {
		font-size: 25px;
	}
}

.care-list__item-description {
	line-height: 100%;
	font-size: 14px;

	@media (min-width: 640px) {
		font-size: 18px;
	}
	@media (min-width: 1024px) {
		font-size: 22px;
	}
}

.care__advantages {
	display: grid;
	list-style-type: none;

	@media (min-width: 1536px) {
		grid-template-columns: repeat(3,1fr);
		row-gap: 10px;
		align-items: center;
		margin-top: 20px;
	}
}

.care__advantages-item {
	position: relative;
	padding: 14px;
	border-bottom: 1px solid var(--white);
	text-align: center;
	font-size: 15px;
	line-height: 110%;

	@media (min-width: 640px) {
		font-size: 20px;
	}
	@media (min-width: 1024px) {
		font-size: 25px;
	}
	@media (min-width: 1536px) {
		border-bottom: none;
	}
}

.care__advantages-item:before {
	@media (min-width: 1536px) {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		height: 50px;
		width: 1px;
		transform: translateY(-50%);
		background-color: var(--white);
	}
}

.care__advantages-item:last-child {
	border-bottom: none;
}

.care__advantages-item:last-child:before {
	@media (min-width: 1536px) {
		display: none;
	}
}

.body {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;

	@media (min-width: 992px) {
		flex-direction: row;
	}
}
.sidebar {
	padding: 40px;

	@media (min-width: 992px) {
		padding: 60px;
	}
	@media (min-width: 1536px) {
		padding: 100px;
	}
}

.sidebar__arrow {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  position: fixed;
  right: 2%;
  top: 50%;
  display: none;
}
.sidebar__title {
	font-family: 'Prosto One', sans-serif;
  position: relative;
  font-size: 30px;
  color: var(--black);
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .sidebar__title {
    font-size: calc(0.00647 * 100vw + 17.58621px);
  }
}
@media (min-width: 1536px) {
  .sidebar__title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .sidebar__title {
    margin-bottom: calc(0.02694 * 100vw + -1.72414px);
  }
}
@media (min-width: 1536px) {
  .sidebar__title {
    margin-bottom: 50px;
  }
}
.sidebar__title--minMargin {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .sidebar__title--minMargin {
    margin-bottom: calc(0.01078 * 100vw + -0.68966px);
  }
}
@media (min-width: 1536px) {
  .sidebar__title--minMargin {
    margin-bottom: 20px;
  }
}
.sidebar__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
	padding: 10px 0;
  cursor: pointer;
}
@media (min-width: 992px) {
  .sidebar__item {
    margin-bottom: calc(0.01616 * 100vw + -1.03448px);
  }
}
@media (min-width: 1920px) {
  .sidebar__item {
    margin-bottom: 30px;
  }
}
.sidebar__item:hover .sidebar__text {
  color: var(--brand);
}
.sidebar__item.active .sidebar__text {
  color: var(--brand);
}
.sidebar__icon {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  -o-object-fit: contain;
  object-fit: contain;

	@media (min-width: 992px) {
		margin-right: 10px;
	}
}

.sidebar__text {
  font-size: 16px;
  line-height: 140%;
  color: var(--black);
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;

	@media (min-width: 1280px) {
		font-size: 20px;
	}

	@media (min-width: 1536px) {
			white-space: nowrap;
	}
}

.sidebar__button {
	width: 100%;
  display: flex;
	align-items: center;
	justify-content: center;
  border: none;
  color: var(--white);
	background: linear-gradient(90deg, #060708 0%, #244839 40.87%, #50a580 100%);
  padding: 10px 20px;
  margin-top: 25px;
  text-align: center;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
	min-height: 50px;

	@media (min-width: 640px) {
		width: fit-content;
		min-width: 220px;
		padding: 15px 30px;
	}
}

@media (min-width: 992px) {
  .sidebar__button {
    margin-top: calc(0.02694 * 100vw + -1.72414px);
		min-height: 60px;
  }
}
@media (min-width: 1920px) {
  .sidebar__button {
    margin-top: 50px;
  }
}
.sidebar__button:hover {
  background: var(--white);
  color: var(--brand);
}
.sidebar__container {
  border-top: 1px solid var(--brand);
  margin-top: 20px;
}
@media (min-width: 992px) {
  .sidebar__container {
    margin-top: calc(0.03233 * 100vw + -12.06897px);
  }
}
@media (min-width: 1920px) {
  .sidebar__container {
    margin-top: 50px;
  }
}
.map {
	position: relative;
	flex-grow: 1;
	min-height: 350px;
	filter: grayscale(1);

	@media (min-width: 992px) {
	  min-height: 500px;
  }
}

.map > iframe {
	position: absolute;
}

.main__content {
	margin-bottom: 60px;

	@media (min-width: 992px) {
		margin-top: 60px;
		padding-left: 60px;
		padding-right: 60px;
	}
	@media (min-width: 993px) {
		padding-left: 0;
	}
	@media (min-width: 1536px) {
		margin-top: 100px;
		padding-right: 100px;
		margin-bottom: 100px;
	}
}

.main__hero {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 28px 40px;
	width: 100%;
	min-height: 260px;
	margin-bottom: 28px;

	@media (min-width: 992px) {
		min-height: calc(0.08621 * 100vw + 234.48276px);
		padding: 40px;
	}
	@media (min-width: 1024px) {
		justify-content: center;
		gap: 20px;
	}
	@media (min-width: 1536px) {
		min-height: 400px;
		margin-bottom: 45px;
	}
}

.main__hero .title {
	margin: auto 0;
	padding-top: 20px;
	width: min-content;
	line-height: 90%;

	@media (min-width: 1024px) {
		margin: 0;
		padding-top: 0;
		width: auto;
		font-size: 48px;
	}

	@media (min-width: 1280px) {
		font-size: 60px;
	}

	@media (min-width: 1536px) {
		font-size: 80px;
	}
}

.main__hero .title,
.main__hero .serviceOrder__btn {
	position: relative;
	z-index: 1;
}

.serviceOrder__btn {
	width: 100%;
	min-width: 240px;
	min-height: 50px;
	padding: 10px 20px;
	color: var(--white);
	font-size: 15px;
	font-weight: 500;
	border: 1px solid var(--white);
	background-color: transparent;
	transition: all 300ms ease-in-out;

	@media (min-width: 640px) {
		width: fit-content;
		padding: 15px 40px;
	}
	@media (min-width: 992px) {
		padding: 20px 50px;
		font-size: 18px;
	}
	@media (min-width: 1536px) {
		font-size: 20px;
	}
}

.serviceOrder__btn:hover {
	color: var(--brand-light);
	border: 1px solid var(--brand-light);
}

.main__img {
	position: absolute;
	width: 100%;
	height: 100%;
	inset: 0;
  object-fit: cover;
	object-position: center;
}

.main__text {
  color: var(--black);

	@media (min-width: 992px) {
		margin-bottom: calc(0.00539 * 100vw + 4.65517px);
	}

	@media (min-width: 1536px) {
		margin-bottom: 15px;
		font-size: 18px;
	}
}

.main__text * {
	font-family: 'Monrope', sans-serif !important;
	line-height: 100%;
	text-align: center !important;
	font-size: 14px !important;

	@media (min-width: 992px) {
		text-align: unset !important;
		font-size: 22px !important;
	}
}

.main__text h2,
.main__text h3,
.main__text h4,
.main__text h5,
.main__text h6 {
	font-family: 'Prosto One', sans-serif !important;
	font-size: 20px !important;

	@media (min-width: 992px) {
		font-size: 40px !important;
	}
}

.main__text h2 *,
.main__text h3 *,
.main__text h4 *,
.main__text h5 *,
.main__text h6 * {
	font-family: 'Prosto One', sans-serif !important;
	font-size: 20px !important;
	font-weight: 400;

	@media (min-width: 992px) {
		font-size: 40px !important;
	}
}

.main__text hr {
	margin-top: 20px;
	margin-bottom: 20px;
	background-color: var(--black);
}

.main__text strong,
.main__text strong *{
	font-size: 15px !important;
	font-weight: 600 !important;

	@media (min-width: 992px) {
		font-size: 25px !important;
	}
}

.main__text ul,
.main__text ol {
	display: grid;
	gap: 20px;
	list-style: none;
	padding-left: 0;
	margin-left: 0;
	
	@media (min-width: 1280px) {
		grid-template-columns: repeat(2,1fr);
		gap: 30px;
	}
}

.main__text li {
	position: relative;
	padding: 19px;
	border: 1px solid var(--black);

	@media (min-width: 992px) {
		padding: 80px 30px 30px;
	}
}

.main__text li:last-child:nth-child(odd){
	grid-column: 1/-1;
}

.main__text ul li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 15px;
	height: 15px;
	background: linear-gradient(90deg, var(--black) 0%, var(--brand) 40.87%, var(--brand-light) 100%);;
	border-radius: 50%;
	transform: translate(-50%,-50%);

	@media (min-width: 992px) {
		top: 30px;
		left: 30px;
		width: 32px;
		height: 32px;
		transform: translate(0,0);
	}
}

.main__text ol {
	counter-reset: list-counter; /* сбрасываем счетчик */
}

.main__text ol li {
	counter-increment: list-counter;
}

.main__text ol li::before {
	content: counter(list-counter) "";
	position: absolute;
	padding: 5px;
	top: 0;
	left: 50%;
	width: 15px;
	font-family: 'Prosto One', sans-serif !important;
	font-size: 15px;
	font-weight: bold;
	color: var(--brand);
	background-color: var(--white);
	transform: translate(-50%,-50%);

	@media (min-width: 992px) {
		top: 30px;
		left: 30px;
		width: 32px;
		font-size: 32px;
		transform: translate(0,0);
	}
}

.main__text li * {
	display: block;
}

.main__text li strong {
	margin-bottom: 6px;

	@media (min-width: 992px) {
		margin-bottom: 10px;
	}
}

.main__container {
	padding-left: 40px;
	padding-right: 40px;
	@media (min-width: 992px) {
		padding-left: 0;
		padding-right: 0;
	}
}

.contacts {
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  padding-bottom: 15px;
	gap: 15px;

	@media (min-width: 640px) {
		flex-direction: row;
	}
}


@media (min-width: 992px) {
  .contacts {
		flex-direction: column;
    padding-top: calc(0.01616 * 100vw + -1.03448px);
  }

	.contacts:nth-child(3) {
		gap: 2px;
	}
}
@media (min-width: 1536px) {
  .contacts {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .contacts {
    padding-bottom: calc(0.01616 * 100vw + -1.03448px);
  }
}
@media (min-width: 1536px) {
  .contacts {
    padding-bottom: 30px;
		gap:30px;
  }
}
.contacts p {
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
}
@media (min-width: 992px) {
  .contacts p {
    font-size: calc(0.00216 * 100vw + 11.86207px);
  }
}
@media (min-width: 1920px) {
  .contacts p {
    font-size: 16px;
  }
}
.contacts__item {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts__item-icon {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 992px) {
  .contacts__item-icon {
    width: calc(0.00431 * 100vw + 13.72414px);
  }
}
@media (min-width: 1920px) {
  .contacts__item-icon {
    width: 22px;
  }
}
@media (min-width: 992px) {
  .contacts__item-icon {
    height: calc(0.00431 * 100vw + 13.72414px);
  }
}
@media (min-width: 1920px) {
  .contacts__item-icon {
    height: 22px;
  }
}
@media (min-width: 992px) {
  .contacts__item-icon {
    margin-right: calc(0.00539 * 100vw + -0.34483px);
  }
}
@media (min-width: 1920px) {
  .contacts__item-icon {
    margin-right: 10px;
  }
}
.contacts__item-text {
  font-size: 12px;
  line-height: 140%;
  color: var(--black);
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
@media (min-width: 992px) {
  .contacts__item-text {
    font-size: calc(0.00431 * 100vw + 7.72414px);
  }
}
@media (min-width: 1920px) {
  .contacts__item-text {
    font-size: 16px;
  }
}
.contacts__item:last-child {
  margin-bottom: 0;
}
.contacts__btn {
  display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
  border: none;
  color: var(--white);
	background: linear-gradient(90deg, var(--black) 0%, var(--brand) 40.87%, var(--brand-light) 100%);
  padding: 10px 20px;
  margin-top: 25px;
  text-align: center;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
	font-weight: 500;
	min-height: 50px;

	@media (min-width: 640px) {
		width: fit-content;
		min-width: 250px;
	}

	@media (min-width: 992px) {
		padding: 20px 30px;
		font-size: 18px;
		min-height: 60px;
		min-width: 300px;
	}
	@media (min-width: 1280px) {
		font-size: 20px;

	}
}
.contacts__btn:hover {
  background: var(--white);
  color: var(--brand);
}

.mySwiper {
	position: relative;
	z-index: 1;
	overflow: visible !important;
	touch-action: pan-y;
}

.mySwiper__wrapper {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: min-content 1fr;
	grid-auto-columns: max-content;
	grid-auto-flow: column;
	overflow-y: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	user-select: none;
}

.mySwiper__wrapper::-webkit-scrollbar {
	display: none;
}

.mySwiper__slide {
	margin-right: 20px;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	width: max-content;
	max-width: 80vw;
	height: 100%;
	color: var(--white);
	background-color: var(--brand-dark);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	scroll-snap-align: start;
	scroll-margin-inline: 40px;

	@media (min-width: 992px) {
		max-width: 60vw;
		scroll-margin-inline: 60px;
	}

	@media (min-width: 1536px) {
		scroll-margin-inline: 100px;
	}
}

.mySwiper__text {
	flex-grow: 1;
  z-index: 2;
  padding: 25px;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
  height: 100%;
	font-size: 14px !important;
	line-height: 100%;
	white-space: pre-line;

	@media (min-width: 992px) {
		padding: 40px;
		font-size: 18px !important;
	}
	@media (min-width: 1536px) {
		padding: 50px;
		font-size: 22px !important;
	}
}


.mySwiper__header {
	padding: 25px 25px 0;
	border-bottom: 1px solid var(--white);

	@media (min-width: 992px) {
		padding: 40px 40px 0;
	}
	@media (min-width: 1536px) {
		padding: 50px 50px 0;
	}
}

.mySwiper__title {
	font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
	margin-bottom: 10px;
	white-space: pre-line;

	@media (min-width: 992px) {
			font-size: 54px;
	}
	@media (min-width: 1536px) {
			margin-bottom: 25px;
			font-size: 60px;
	}
}

.mySwiper__subtitle {
	font-family: 'Prosto One', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 25px;

	@media (min-width: 992px) {
			font-size: 26px;
	}
	@media (min-width: 1536px) {
			font-size: 30px;
	}
}

.mySwiper ul li {
  margin-left: 10px;
  margin-bottom: 10px;
  line-height: 140%;
}
@media (min-width: 992px) {
  .mySwiper ul li {
    margin-left: calc(0.01078 * 100vw + -0.68966px);
  }
}
@media (min-width: 1920px) {
  .mySwiper ul li {
    margin-left: 20px;
  }
}
@media (min-width: 992px) {
  .mySwiper ul li {
    margin-bottom: calc(0.01078 * 100vw + -0.68966px);
  }
}
@media (min-width: 1920px) {
  .mySwiper ul li {
    margin-bottom: 20px;
  }
}

.Swiper {
  cursor: url("../img/icon/cursor.svg") 80 80, auto;
}

.values {
	margin-top: -50px;
	position: relative;
	z-index: 0;
	background-color: var(--black);
	background-size: cover;
	background-position: left;
	background-repeat: no-repeat;
	background-image: url("../img/values-image-bg-mobile.jpg");

	@media (min-width: 1280px) {
		margin-top: -100px;
		background-position: center;
		background-image: url("../img/values-image-bg.png");
	}
}

.values__gradient {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, var(--white) 0%, #000000cc 8%, transparent 100%);

	@media (min-width: 1280px) {
		background: linear-gradient(180deg, var(--white) 0%, transparent 11%, transparent 85%, var(--black) 100%);
	}
}

.values__container {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 100px;
	margin-bottom: 50px;

	@media (min-width: 1280px) {
		margin-top: 150px;
		margin-bottom: 300px;
	}

	@media (min-width: 1536px) {
		margin-top: 170px;
		gap: 50px;
	}
}

.values__list {
	counter-reset: values-counter;
	display: grid;
	row-gap: 20px;
	color: var(--white);
	padding-left: 10%;
	list-style-type: none;

	@media (min-width: 1280px) {
		grid-template-columns: repeat(2,1fr);
		row-gap: 40px;
		column-gap: 30%;
		padding-left: 0;
	}
}

.values__item {
	position: relative;
	margin-left: 40px;
	break-inside: avoid;
}

.values__item:nth-child(3) {
	@media (min-width: 1280px) {
		transform: translateX(50px);
	}
}

.values__item:nth-child(4) {
	@media (min-width: 1280px) {
		transform: translateX(-50px);
	}
}

.values__item:nth-child(odd) {
	@media (min-width: 1280px) {
		margin-left: 0;
		margin-right: 40px;
		text-align: right;
	}
}

.values__item:after {
	content: "";
	position: absolute;
	top: 8px;
	left: -25px;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: var(--brand);

	@media (min-width: 1280px) {
		top: 10px;
		left: -40px;
		width: 19px;
		height: 19px;
	}
}

.values__item:nth-child(odd):after {
	@media (min-width: 1280px) {
		left: unset;
		right: -40px;
	}
}

.values__title {
	display: inline-block;
	font-family: 'Prosto One', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 90%;
	word-break: break-word;

	@media (min-width: 992px) {
		pointer-events: none;
		font-size: 28px;
	}
	@media (min-width: 1536px) {
		font-size: 30px;
	}
}

.values__description {
	margin-top: 10px;
	font-size: 14px;
	line-height: 100%;

	@media (min-width: 992px) {
		display: block !important;
		font-size: 18px;
	}
	@media (min-width: 1536px) {
		font-size: 20px;
	}
}

.sphere {
	padding-bottom: 50px;
	background: linear-gradient(180deg, var(--black) 50%, var(--brand) 100%);

	@media (min-width: 1280px) {
		padding-bottom: 100px;
	}
}

.sphere__wrapper {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 35px;

	@media (min-width: 1280px) {
		gap: 50px;
		margin-top: -200px;
	}
}

.sphere__wrapper .text {
	margin-top: 0;

	@media (min-width: 1280px) {
		column-count: 2;
		column-gap: 100px;
	}
}

.sphere__wrapper .text * {
	text-align: center !important;
	font-size: 15px !important;

	@media (min-width: 992px) {
		font-size: 20px !important;
	}
	@media (min-width: 1280px) {
		text-align: left !important;
	}
	@media (min-width: 1536px) {
		font-size: 25px !important;
	}
}

.sphere__wrapper .text > * {
	@media (min-width: 1280px) {
		break-inside: avoid;
	}
}

.search {
	display: flex;
	flex-direction: column;
  position: absolute;
  z-index: 50;
  width: 0;
  height: 0;
  background: var(--white);
  right: 0;
  opacity: 0;
  top: 0;
  -webkit-transition: 0.38s ease-in-out;
  transition: 0.38s ease-in-out;
}
.search--active {
  overflow-x: scroll;
  opacity: 1;
  width: 100%;
  height: 100vh;
}
.search__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.search__wrapper {
  padding-top: 20px;
  border-bottom: 1px solid var(--white);
}
@media (min-width: 992px) {
  .search__wrapper {
    padding-top: calc(0.02155 * 100vw + -1.37931px);
  }
}
@media (min-width: 1920px) {
  .search__wrapper {
    padding-top: 40px;
  }
}
.search__info {
  margin-top: 10px;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .search__info {
    margin-top: calc(0.01078 * 100vw + -0.68966px);
  }
}
@media (min-width: 1920px) {
  .search__info {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .search__info {
    margin-bottom: calc(0.00539 * 100vw + -0.34483px);
  }
}
@media (min-width: 1920px) {
  .search__info {
    margin-bottom: 10px;
  }
}
.search__info-text {
  font-size: 12px;
  color: var(--brand-light);
  line-height: 140%;
}
@media (min-width: 992px) {
  .search__info-text {
    font-size: calc(0.00431 * 100vw + 7.72414px);
  }
}
@media (min-width: 1920px) {
  .search__info-text {
    font-size: 16px;
  }
}

.search__container {
  flex-grow: 1;
	padding-bottom: 100px;
}

.search__close {
  background: url("../img/icon/close.svg") no-repeat;
  width: 30px;
  height: 30px;
  background-size: contain;
}
@media (min-width: 992px) {
  .search__close {
    width: calc(0.01616 * 100vw + 13.96552px);
  }
}
@media (min-width: 1920px) {
  .search__close {
    width: 45px;
  }
}
@media (min-width: 992px) {
  .search__close {
    height: calc(0.01616 * 100vw + 13.96552px);
  }
}
@media (min-width: 1920px) {
  .search__close {
    height: 45px;
  }
}
.search__input {
  margin-top: 50px;
  border: none;
  background: var(--white);
  font-size: 24px;
  line-height: 140%;
  color: var(--black);
  text-align: center;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
	border-bottom: 1px solid rgba(34, 34, 34, 0.1);
	transition: color 200ms ease-in-out;
}
.search__input:focus {
	border-bottom: 1px solid var(--black);
}

@media (min-width: 992px) {
  .search__input {
    margin-top: calc(0.05388 * 100vw + -3.44828px);
  }
}
@media (min-width: 1920px) {
  .search__input {
    margin-top: 100px;
  }
}
@media (min-width: 992px) {
  .search__input {
    font-size: calc(0.00647 * 100vw + 17.58621px);
  }
}
@media (min-width: 1920px) {
  .search__input {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .search__input {
    padding-top: calc(0.00539 * 100vw + -0.34483px);
  }
}
@media (min-width: 1920px) {
  .search__input {
    padding-top: 10px;
  }
}
@media (min-width: 992px) {
  .search__input {
    padding-bottom: calc(0.00539 * 100vw + -0.34483px);
  }
}
@media (min-width: 1920px) {
  .search__input {
    padding-bottom: 10px;
  }
}
.search__title {
  font-size: 24px;
  color: var(--black);
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .search__title {
    font-size: calc(0.00647 * 100vw + 17.58621px);
  }
}
@media (min-width: 1920px) {
  .search__title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .search__title {
    margin-bottom: calc(0.00539 * 100vw + 4.65517px);
  }
}
@media (min-width: 1920px) {
  .search__title {
    margin-bottom: 15px;
  }
}
.search__text * {
  font-size: 12px;
  color: var(--black);
  line-height: 140%;

	@media (min-width: 992px) {
		font-size: 16px;
	}

	@media (min-width: 1536px) {
		font-size: 20px;
	}
}

.search__item {
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
  display: block;

	@media (min-width: 992px) {
		margin-top: calc(0.01078 * 100vw + 4.31034px);
	}
	@media (min-width: 1920px) {
		margin-top: 25px;
	}
	@media (min-width: 992px) {
		padding-bottom: calc(0.01078 * 100vw + 4.31034px);
	}
	@media (min-width: 1920px) {
		padding-bottom: 25px;
	}
}

.search__item * {
	font-family: 'Monrope', sans-serif !important;
}

@media screen and (max-width: 992px) {


  .header__burger {
    display: block;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    margin-left: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    position: relative;
    z-index: 30;
  }
  .header__burger::after,
  .header__burger::before {
    right: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 1;
  }
  .header__burger--open {
    background: transparent;
  }
  .header__burger--open::before {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 0;
		background: var(--black);
  }
  .header__burger--open::after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 0;
		background: var(--black);
  }
  .header__logo {
    z-index: 16;
  }
  .header__nav {
    position: absolute;
    top: 0;
    left: -100%;
    background: var(--white);
    width: 100%;
    height: 100vh;
    z-index: 15;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.38s ease-in-out;
    transition: 0.38s ease-in-out;
    opacity: 0;
  }
  .header__nav--right {
    left: 0;
    opacity: 1;
  }

  .sidebar__arrow {
    display: block;
    -webkit-transition: 0.38s ease-in-out;
    transition: 0.38s ease-in-out;
    top: 45%;
    right: 1%;
  }
  .sidebar__arrow--open {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .sidebar--uslugi {
    position: fixed;
    left: -96%;
    width: 100%;
    height: 62px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 15px;
    z-index: 55;
    -webkit-transition: 0.38s ease-in-out;
    transition: 0.38s ease-in-out;
  }
  .sidebar--uslugi--right {
    overflow-x: scroll;
    border-radius: 0;
    left: 0;
    height: 100%;
		border-color: var(--white);
  }
  .main--noMargin {
    height: 350px;
  }
  .collage {
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  .career__text {
    width: 100%;
  }
  .swiper__title {
    font-size: 32px;
  }
  .collage__item {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .text {
    font-size: 14px;
  }
  .career {
    margin-bottom: 0;
  }
  .sidebar--uslugi {
    left: -94%;
  }
  .sidebar--uslugi--right {
    left: 0;
  }
  .swiper__title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .collage__item {
    width: 100%;
  }
  .independence__item {
    width: 100%;
  }
  .footer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
  }
  .footer__nav {
    width: 100%;
    text-align: center;
  }
  .footer__nav-link {
    width: 100%;
  }
  .mail {
    margin-left: 15px;
  }
}
