@font-face {
	font-family: 'Roboto Regular';
	src: local('Roboto'), url('./assets/fonts/Roboto-Regular.ttf') format('ttf');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Roboto Medium';
	src: local('Roboto'), url('./assets/fonts/Roboto-Medium.ttf') format('ttf');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Roboto Bold';
	src: local('Roboto'), url('./assets/fonts/Roboto-Bold.ttf') format('ttf');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
body {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	overflow-x: hidden;
	background-color: #e9e9e9;
}

header {
	position: sticky;
	top: 0;
	width: 100%;
	background-color: #fff;
	z-index: 98;
	box-shadow: 0px -41px 55px 0px rgba(0, 0, 0, 0.79);
	transition: all 0.4s ease;
	font-weight: bold;
}
header b {
	font-weight: bold;
}

.container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 25px;
	padding-bottom: 20px;
	z-index: 5;
}
.header__menu {
	display: flex;
	flex-basis: 30%;
	justify-content: center;
}
.header__item {
	padding: 0 15px;
	list-style: none;
	position: relative;
}
.header__link {
	padding-bottom: 8px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	color: #000;
	transition: opacity 0.2s ease;
	z-index: 5;
}
.header__link:hover {
	border-bottom: 1px solid #28a3dd;
	color: #28a3dd;
}
.header__logo {
	display: flex;
	justify-content: center;
	flex-basis: 24%;
}
.header__contacts {
	flex-basis: 35%;
	text-align: right;
}

.phone {
	font-weight: 700;
	font-size: 22px;
	color: #000;
	text-decoration: none;
}

.header__contacts_mobile {
	display: none;
}

a[href^='tel:']:hover {
	text-decoration: underline;
}

.burger {
	width: 30px;
	height: 20px;
	background: url('../assets/img/burger.svg') no-repeat center;
	cursor: pointer;
	transition: opacity 0.3s ease;
}
.burger:hover {
	opacity: 0.5;
}

.title {
	font-size: 26px;
	font-weight: 700;
	color: #000;
}

.title-news {
	padding-top: 150px;
}

.hide {
	top: -110px;
}

.dropdown {
	position: absolute;
	top: 200%;
	left: 50%;
	height: 0;
	width: 100%;
	min-width: 120px;
	overflow: hidden;
	transform: translateX(-50%);
	border-radius: 5px;
	background-color: #fff;
	box-shadow: 0px 18px 55px -27px #000000;
	transition: all 0.5s ease;
	z-index: 10;
}
.dropdown__item {
	width: 100%;
	padding: 15px 10px;
	font-weight: 400;
	margin: auto;
	box-sizing: border-box;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.dropdown__item a {
	text-decoration: none;
	color: #000000;
}

.dropdown__item:hover {
	background-color: #e0dbdb;
}
.dropdown_active {
	height: 270px;
}
.dropdown-btn {
	position: relative;
}

.burger-menu {
	position: fixed;
	top: 0;
	left: -830px;
	width: 22%;
	height: 100%;
	border-right: 1px solid #dcd8d8;
	background-color: #fff;
	box-shadow: -43px 0px 104px 0px rgba(0, 0, 0, 0.81);
	z-index: 99;
	transition: all 0.6s ease;
}
.burger-menu__wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
	padding-top: 120px;
}
.burger-menu__list {
	width: 50%;
}
.burger-menu__item {
	position: relative;
	padding-bottom: 25px;
}
.burger-menu__item .dropdown {
	top: 50%;
}
.burger-menu__link {
	font-size: 20px;
}
.burger-menu__link:hover {
	border-bottom: none;
}
.burger-menu__close {
	width: 30px;
	height: 30px;
	float: right;
	margin: 30px 30px 0 0;
	background: url('../assets/img/close.png') no-repeat center;
	cursor: pointer;
	transition: opacity 0.3s ease;
}
.burger-menu_active {
	left: 0;
}

section {
	width: 100%;
	background-color: #e9e9e9;
}

.callback-form {
	flex-direction: column;
	padding: 40px 35px;
	box-sizing: border-box;
	border: 2px solid #000;
	border-radius: 15px;
	transition: all 0.3s ease;
	z-index: 9;
}
.callback-form__label {
	padding-bottom: 10px;
	font-weight: 400;
}
.callback-form__area {
	padding: 10px;
	border-radius: 15px;
	resize: none;
}
.callback-form__input,
.callback-form__area {
	outline: none;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #000;
}
.callback-form__input {
	max-width: 410px;
	padding-bottom: 5px;
	margin-bottom: 30px;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 1px solid #000;
}
.callback-form__input::placeholder {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #000;
}

.main {
	width: 100%;
	padding-top: 20px;
	margin-bottom: 85px;
	background: no-repeat center/cover url('../assets/img/main-bg.jpg.webp');
	position: relative;
	z-index: 1;
}
.main::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 5vw;
	bottom: 0;
	background-color: #e9e9e9;
	clip-path: polygon(18% 94%, 54% 14%, 100% 86%, 100% 100%, 0 100%, 0 0);
}
.main__title {
	padding-bottom: 70px;
	max-width: 560px;
	font-size: 80px;
	font-weight: 700;
	color: #e9e9e9
	;
}
.main__content {
	position: relative;
	padding-bottom: 150px;
}
.main-form {
	position: relative;
	font-family: 'Roboto Medium', sans-serif;
	padding: 0;
	font-size: 14px;
	max-width: 355px;
	box-sizing: border-box;
	border: none;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.8);
}
.main-form__wrapper {
	display: flex;
	flex-direction: column;
	padding: 25px;
}
.main-form__title {
	padding-bottom: 30px;
	font-size: 16px;
	text-align: center;
}
.main-form__input {
	margin-bottom: 30px;
	padding-bottom: 5px;
	border: none;
	border-bottom: 1px solid #000;
	background: transparent;
	outline: none;
}
.main-form__input::placeholder {
	font-family: 'Roboto Medium', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #000;
}
.main-form__btn {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
}
.main-btn {
	padding: 15px 60px;
	box-sizing: border-box;
	max-width: 300px;
	width: 100%;
	border: none;
	text-decoration: none;
	text-align: center;
	outline: none;
	cursor: pointer;
	background: linear-gradient(86.59deg, #ff8c22 6.64%, #ffd600 105.96%);
	font-size: 20px;
	color: #fff;
	transition: all 0.3s ease;
	z-index: 9;
}
.main-btn:hover {
	box-shadow: 0px 5px 19px -6px rgba(0, 0, 0, 0.6);
}
.main-btn_blue {
	background: linear-gradient(86.59deg, #076693 6.64%, #28a3dd 105.96%);
}
.main-btn_green {
	background: linear-gradient(86.59deg, #17db2a 6.64%, #60ff70 105.96%);
}

.main-btn_mobile {
	display: none;
}

.robot-helper__wrapper {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 250px;
	height: 250px;
	background: url('../assets/img/robot-helper.png.webp') no-repeat
		center/contain;
	cursor: pointer;
	z-index: 2;
}
.robot-helper__wrapper:nth-child(2) {
	top: -200px;
}
.robot-helper__wrapper:nth-child(3) {
	bottom: -100px;
}

.filial-choice {
	position: relative;
	margin-bottom: 25px;
	cursor: pointer;
}
.filial-choice:hover {
	text-decoration: underline;
}
.filial-choice img {
	vertical-align: middle;
	padding-left: 15px;
}

.about {
	background: #e9e9e9 url('../assets/img/core.png.webp') no-repeat 50% 60%;
}

.services {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding-bottom: 260px;
}
.services__row {
	display: flex;
	flex-direction: column;
	height: 353px;
	width: 50%;
	max-width: 403px;
	margin-bottom: 80px;
}
.services__item {
	position: relative;
	height: 100%;
	max-width: 403px;
}
.services__item_big > .services__description {
	top: 430px;
}
.services__clip {
	height: 185px;
	overflow: hidden;
	background: linear-gradient(86.59deg, #076693 6.64%, #28a3dd 105.96%);
	clip-path: polygon(31% 3%, 100% 1%, 84% 96%, 0 96%, 0 38%);
}
.services__ribbon {
	position: absolute;
	left: -30px;
	top: 70px;
}
.services__ribbon_big {
	left: -40px;
}
.services__button {
	position: absolute;
	padding-top: 10px;
	right: 70px;
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
	transition: opacity 0.3s ease;
}
.services__button:hover {
	opacity: 0.5;
}
.services__button svg {
	padding-left: 10px;
	transform: rotate(0deg);
	transition: all 0.4s ease;
}
.services__button_active {
	color: #28a3dd;
}
.services__button_active > svg {
	transform: rotate(90deg);
}
.services__button_active > svg > path {
	fill: #28a3dd;
}
.services__button_big {
	left: 90px;
	bottom: -55px;
}
.services__age {
	position: absolute;
	left: 85px;
	bottom: 0;
}
.services__description {
	position: absolute;
	top: 230px;
	max-height: 0;
	overflow: hidden;
	border-radius: 10px;
	background-color: #cbd3d7;
	font-weight: 400;
	transition: max-height 0.6s ease-in-out;
	z-index: 9;
}
.services__description-wrapper {
	padding: 30px;
	box-sizing: border-box;
}

.clip-poligon {
	clip-path: polygon(33% 5%, 100% 6%, 86% 100%, 0 100%, 0 31%);
	height: auto;
	width: auto;
}

.features {
	position: relative;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	margin-bottom: 240px;
}
.features__wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 75px 0;
}
.features__item {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 260px;
}
.features__text {
	font-size: 14px;
	font-weight: 400;
	padding-left: 10px;
	height: 95px;
	display: flex;
	align-items: center;
}
.features__count {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.features__subtitle {
	padding-top: 10px;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}
.features__number {
	padding: 10px 15px;
	border: 2px solid #000;
	border-radius: 10px;
	font-size: 70px;
	font-weight: 900;
}

.stem {
	width: 100%;
	position: relative;
	z-index: 2;
	transform: translateY(120px);
}
.stem__wrapper {
	width: 100%;
	height: 630px;
	margin: auto;
	background: url('../assets/img/stem-shape1.png.webp') no-repeat center/contain;
}

.stem__text {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 420px;
}

.results {
	padding-bottom: 100px;
	background: linear-gradient(86.59deg, #076693 6.64%, #28a3dd 105.96%);
	clip-path: polygon(
		50% 0%,
		82% 9%,
		100% 0%,
		100% 100%,
		70% 93%,
		35% 99%,
		17% 92%,
		0 100%,
		0 0,
		27% 6%
	);
}
.results__slider {
	padding-top: 40px;
}
.results__slide {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	max-width: 495px;
	padding: 20px 0;
}
.results__content {
	position: relative;
	background-color: #fff;
}
.results__content > .main-btn {
	display: block;
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 400;
	z-index: 9;
}
.results__title {
	padding: 20px;
	border-bottom: 1px solid #000;
	font-size: 14px;
}
.results__text {
	padding: 25px 20px;
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
}
.results__arrows {
	max-width: 110px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 50px;
}
.results__count {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
}

.results__img {
	height: auto;
	width: auto;
}

.partners {
	padding-bottom: 100px;
	background: linear-gradient(86.59deg, #076693 6.64%, #28a3dd 105.96%);
	clip-path: polygon(
		50% 0%,
		82% 9%,
		100% 0%,
		100% 100%,
		70% 93%,
		35% 99%,
		17% 92%,
		0 100%,
		0 0,
		27% 6%
	);
}
.partners__slider {
	padding-top: 250px;
}
.partners__slide {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	max-width: 370px;
	padding: 20px 0;
}
.partners__img {
	width: 100%;
	height: 200px;
}
.partners__content {
	position: relative;
	background-color: #fff;
}
.partners__content > .main-btn {
	display: block;
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 400;
	z-index: 9;
}
.partners__title {
	padding: 20px;
	border-bottom: 1px solid #000;
	font-size: 14px;
}
.partners__text {
	padding: 25px 20px;
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
}
.partners__arrows {
	max-width: 110px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 50px;
}
.partners__count {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
}

.glide__arrow {
	border: none;
	outline: none;
	background: none;
	transition: opacity 0.3s ease;
	cursor: pointer;
}
.glide__arrow:hover {
	opacity: 0.6;
}

.teachers {
	padding-top: 80px;
	padding-bottom: 160px;
}
.teachers .title {
	padding-bottom: 80px;
}
.teachers__slider-wrapper {
	width: 50%;
}
.teachers__slider {
	position: relative;
	display: flex;
	height: 470px;
}
.teachers__slider-controls {
	position: absolute;
	bottom: 0;
	right: 400px;
}
.teachers__slider .glide__slides {
	height: 473px;
	align-items: flex-end;
	overflow: visible;
}

.controls {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #989797;
	z-index: 9;
}

.glide-controls {
	border: none;
	outline: none;
	background: transparent;
	cursor: pointer;
}

.slide__item {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	transition: all 0.2s ease;
}
.slide__item_active {
	width: 285px !important;
}
.slide__item_active img {
	width: 100%;
}
.slide__img {
	background-color: #28a3dd;
	width: 135px;
	transition: all 0.2s ease;
	height: auto;
}
.slide__content {
	display: none;
	width: 350px;
	padding-left: 120px;
}
.slide__title {
	padding-bottom: 20px;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
}
.slide__text {
	display: flex;
	flex-direction: column;
	position: relative;
	padding-bottom: 20px;
	font-size: 16px;
	line-height: 19px;
	font-weight: 400;
}
.slide__text img {
	position: absolute;
	left: -60px;
	top: 0;
}

.slide__content_active {
	display: block;
}

.reviews {
	padding-bottom: 100px;
}
.reviews .title {
	padding-bottom: 85px;
	text-align: right;
}
.reviews__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 250px;
	height: 100%;
	margin: auto;
}
.reviews__item-wrapper {
	height: 360px;
}
.reviews__item-wrapper_1 {
	background: url('../assets/img/reviews-slider/reviews-item-bg-1.png')
		no-repeat center/contain;
}
.reviews__item-wrapper_2 {
	background: url('../assets/img/reviews-slider/reviews-item-bg-2.png')
		no-repeat center/contain;
}
.reviews__item-wrapper_3 {
	background: url('../assets/img/reviews-slider/reviews-item-bg-3.png')
		no-repeat center/contain;
}
.reviews__head {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #000;
}
.reviews__name {
	font-size: 14px;
	line-height: 24px;
}
.reviews__info {
	font-size: 10px;
}
.reviews__rank {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.reviews__star {
	width: 15px;
	height: 15px;
	background-color: #afafaf;
	clip-path: polygon(
		50% 0%,
		69% 27%,
		98% 35%,
		78% 60%,
		79% 91%,
		49% 77%,
		21% 91%,
		21% 60%,
		2% 35%,
		33% 28%
	);
}
.reviews__text {
	padding-top: 10px;
	font-size: 14px;
	line-height: 18px;
}
.reviews__slider-controls {
	width: 110px;
	justify-content: center;
	margin: auto;
}
.reviews__controls-wrapper {
	display: flex;
	justify-content: flex-start;
	padding-top: 60px;
}

.star {
	background: linear-gradient(86.59deg, #ff8c22 6.64%, #ffd600 105.96%);
}

.description {
	padding-bottom: 200px;
	overflow: hidden;
	background: linear-gradient(86.59deg, #076693 6.64%, #28a3dd 105.96%);
	clip-path: polygon(
		58% 0%,
		80% 3%,
		100% 0%,
		100% 95%,
		69% 87%,
		29% 98%,
		0% 93%,
		0% 0%,
		22% 4%
	);
}
.description__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}
.description__content {
	flex-basis: 40%;
	padding-top: 200px;
	padding-bottom: 400px;
	color: #fff;
}
.description__content .description__btn {
	right: unset;
}
.description__content .services__description {
	top: 65%;
	max-width: 500px;
}
.description__text {
	padding-bottom: 20px;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
}
.description__btn {
	color: #fff;
	text-decoration: none;
}
.description__btn > svg {
	padding-left: 10px;
}
.description__video {
	width: 815px;
	height: 753px;
	object-fit: cover;
}
.description__video-wrapper {
	position: absolute;
	width: 815px;
	right: -10vw;
	bottom: 0;
	background: linear-gradient(86.59deg, #ff8c22 6.64%, #ffd600 105.96%);
	clip-path: polygon(25% 1%, 68% 15%, 103% 4%, 97% 89%, 62% 99%, 0 88%, 6% 30%);
}
.description__video-container {
	position: relative;
	clip-path: polygon(
		29% 5%,
		74% 19%,
		100% 7%,
		100% 89%,
		28% 100%,
		3% 85%,
		6% 30%
	);
}
.description__slider {
	padding-top: 20px;
}

#play-pause,
#full-screen {
	position: absolute;
	cursor: pointer;
	outline: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
	cursor: pointer;
	z-index: 9;
}
#play-pause:hover,
#full-screen:hover {
	background-color: #fff;
}

#play-pause {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 115px;
	height: 115px;
	border: 1px solid #28a3dd;
	background: rgba(255, 255, 255, 0.8) url('../assets/img/play.svg') no-repeat
		center;
	border-radius: 50%;
}
#play-pause:hover {
	background-color: white;
}

#full-screen {
	bottom: 14%;
	left: 7%;
	width: 70px;
	height: 70px;
	border: 1px solid #28a3dd;
	background: rgba(255, 255, 255, 0.8) url('../assets/img/fullscreen.svg')
		no-repeat center;
}

.grid-slide {
	width: 100%;
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.grid-slide__item {
	position: relative;
	padding: 0px 0px 85% 0px;
}
.grid-slide__item_big {
	grid-column: span 2;
	grid-row: span 2;
}
.grid-slide__item_long {
	grid-row: span 2;
}
.grid-slide__item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.grid-glide__arrows {
	margin-left: 10%;
	margin-top: 50px;
	font-weight: 300;
	color: #fff;
}

.callback-form__row {
	display: flex;
	justify-content: space-between;
}
.callback-form__row .filial-choice {
	margin-bottom: 5px;
}

.contacts {
	position: relative;
	overflow: hidden;
	background: url(../assets/img/contacts-bg.webp) no-repeat top;
}
.contacts__map {
	position: absolute;
	right: 200px;
	top: 70px;
	width: 1200px;
	height: 400px;
	z-index: 97;
	clip-path: polygon(12% 7%, 84% 7%, 100% 100%, 0% 100%);
}
.contacts__robots {
	padding-top: 100px;
}
.contacts__title {
	text-align: center;
	padding-bottom: 25px;
}
.contacts__form {
	position: relative;
	display: flex;
	width: 460px;
	margin: auto;
	font-weight: 500;
	border: none;
	background-color: #fff;
}
.contacts__form .callback-form__input {
	font-size: 16px;
	font-weight: 500;
	background: transparent;
}
.contacts__form .callback-form__input::placeholder {
	font-weight: 500;
}
.contacts__form .main-btn {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
}
.contacts > .container {
	display: flex;
	height: 856px;
	justify-content: flex-end;
}
.contacts__map-wrapper {
	flex-shrink: 0;
	position: absolute;
	left: -60%;
	width: 1588px;
	height: 856px;
	background: url('../assets/img/tablet.png.webp') no-repeat center;
}
.contacts__info {
	position: relative;
	padding-top: 60px;
	flex-shrink: 0;
	z-index: 9;
}
.contacts__unity-number {
	padding-bottom: 30px;
	font-weight: 700;
	transform: translateX(-100px);
}
.contacts__unity-title {
	padding-bottom: 15px;
	font-size: 26px;
}
.contacts__unity-phone {
	font-size: 46px;
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
.contacts__social {
	padding-bottom: 50px;
}
.contacts__social-title {
	padding-bottom: 15px;
}
.contacts__social-icons {
	display: flex;
}
.contacts__social-link {
	cursor: pointer;
	margin-right: 10px;
}
.contacts__shedule {
	transform: translateX(50px);
}
.contacts__shedule-text {
	padding-bottom: 15px;
}
.contacts .full-screen {
	position: absolute;
	top: 320px;
	right: 200px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 1px solid #28a3dd;
	z-index: 100;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.8) url('../assets/img/fullscreen.svg')
		no-repeat center;
}

.locations__wrapper {
	width: 90%;
}
.locations__address-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
}
.locations__address-item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 300px;
	width: 33.3333333333%;
	padding-bottom: 40px;
	margin: 0 15px;
}
.locations__address-item span {
	padding-bottom: 10px;
}
.locations__img {
	position: absolute;
	left: -40px;
	top: -20px;
	width: 30px;
}
.locations__phone {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	text-align: left;
}
.locations__container {
	height: auto !important;
}

footer {
	padding-top: 40px;
	padding-bottom: 55px;
}

.footer__wrapper {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.footer__link {
	text-decoration: none;
	font-weight: 400;
	line-height: 19px;
	color: #000;
	cursor: pointer;
}
.footer__link:hover {
	text-decoration: underline;
}
.footer-shedule_mobile {
	display: none;
}

.contacts-shedule span {
	display: block;
	line-height: 19px;
}

.develop {
	position: absolute;
	bottom: 0;
	right: 0;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	color: #292828;
}
.develop a {
	color: #292828;
	text-decoration: none;
}

.scrollbar {
	display: none;
	position: fixed;
	left: 40px;
	top: calc(40% - 15vh);
	height: 70vh;
	width: 2px;
	border-radius: 2px;
	background: black;
	z-index: 101;
}

.scrollball {
	width: 10px;
	height: 10px;
	border-radius: 5px;
	left: -4px;
	top: 30%;
	position: absolute;
	background: black;
}

.scroll-text {
	position: absolute;
	left: -70px;
	top: -50px;
	width: 200px;
	transform: rotate(270deg);
}

@media screen and (min-width: 1441px) {
	.main {
		background-size: contain;
		height: auto;
	}
}
@media screen and (max-width: 1200px) {
	.container {
		max-width: 960px;
	}

	.teachers__slider-controls {
		right: 250px;
	}

	.slide__item_active {
		width: 285px !important;
	}
	.slide__item_active img {
		width: 100%;
	}
	.slide__item__img {
		width: 285px !important;
	}

	.teachers__slider-wrapper {
		width: 285px;
	}

	.teachers__slider-controls {
		right: 450px;
	}

	.description__video-wrapper {
		position: relative;
		right: auto;
		left: -25vw;
		bottom: auto;
		top: 10%;
		transform: rotateY(180deg);
	}
	.description__video-wrapper video {
		transform: rotateY(180deg);
	}

	#play-pause {
		transform: rotateY(180deg);
	}

	.description__wrapper {
		align-items: flex-end;
		flex-direction: column;
		order: 1;
		padding-top: 100px;
		padding-bottom: 200px;
	}

	.description__content {
		flex-basis: 100%;
		width: 100%;
		padding-top: 50px;
		padding-bottom: 0;
		order: 2;
	}
	.description__content .services__description {
		top: 88%;
	}

	.contacts__info {
		margin: 0 auto;
		z-index: 9;
	}

	.contacts__unity-number {
		transform: translateX(0);
	}

	.contacts__shedule {
		display: none;
	}

	.contacts__map-wrapper {
		left: -60%;
		background-size: 70%;
	}

	.contacts__map {
		width: 1000px;
		height: 300px;
		top: 160px;
		right: 320px;
	}

	.contacts__social {
		position: absolute;
		right: -80px;
	}
	.contacts__social-title {
		display: none;
	}

	.contacts .full-screen {
		right: 300px;
	}
}
@media screen and (max-width: 992px) {
	.container {
		max-width: 720px;
		padding: 0 15px;
	}

	.burger-menu {
		width: 35%;
	}

	.main__title {
		font-size: 50px;
		max-width: 50%;
	}

	.services__row {
		width: 100%;
		max-width: 100%;
		margin-bottom: 40px;
	}
	.services__row_reverse {
		align-items: flex-end;
		justify-content: flex-end;
	}

	.features {
		margin-bottom: 0;
	}

	.features__wrapper {
		flex-wrap: wrap;
		justify-content: space-around;
	}

	.features__item {
		margin-bottom: 20px;
	}

	.about {
		background-position: 50% 85%;
	}

	.stem {
		transform: translateY(220px);
	}
	.stem__text {
		top: 42%;
		left: 52%;
		font-size: 14px;
	}

	.teachers__slider-controls {
		right: auto;
		bottom: -40px;
		left: 80px;
	}

	.description__video {
		height: 553px;
	}

	#play-pause {
		left: 30%;
		top: 40%;
	}

	.contacts__map-wrapper {
		left: -90%;
	}

	.contacts > .container {
		height: 556px;
		margin-bottom: 35px;
	}

	.locations__wrapper {
		padding-top: 100px;
	}

	.locations__container {
		height: auto !important;
	}

	.contacts .full-screen {
		right: 350px;
	}

	.footer__wrapper {
		flex-direction: column;
		justify-content: center;
	}
	.footer__column {
		text-align: center;
		padding-bottom: 25px;
	}
	.footer-shedule_mobile {
		display: block;
	}
	.footer-shedule_mobile > .contacts-shedule {
		display: block;
		max-width: 100%;
		padding-bottom: 0;
	}
	.footer-shedule_mobile > .contacts-shedule span {
		font-weight: 400;
		color: #414141;
	}

	.develop {
		left: 50%;
		transform: translateX(-50%);
	}
}
@media screen and (max-width: 720px) {
	.container {
		max-width: 540px;
	}

	.header {
		padding: 10px 0;
	}
	.header__contacts,
	.header__menu {
		display: none;
	}
	.header__contacts_mobile {
		position: relative;
		display: block;
		width: 21px;
		height: 21px;
		overflow: hidden;
		background: url('../assets/img/phone.svg') no-repeat center;
		font-size: 0;
	}

	.main {
		height: 50vw;
	}

	.main__title {
		font-size: 40px;
		max-width: 60%;
	}

	.main-form {
		display: none;
	}

	.main-btn_mobile {
		display: block;
		font-weight: 400;
	}

	.burger-menu_active {
		width: 40%;
	}

	.main-btn {
		padding: 10px 10px;
		font-size: 16px;
		max-width: 170px;
	}

	.services {
		padding-bottom: 100px;
	}

	.results__content > .main-btn {
		padding: 10px 10px;
		font-size: 12px;
	}

	.results__img {
		width: 115px;
	}

	.slide-text {
		font-size: 10px;
	}

	.slide__item,
	.slide__img {
		width: 200px !important;
	}

	.teachers__slider .glide__slides {
		height: auto;
	}

	.slide__text {
		padding-bottom: 20px;
		line-height: 14px;
	}

	.slide__content {
		padding-left: 80px;
	}

	.teachers {
		padding-bottom: 50px;
		background-position: center 660px;
	}
	.teachers__slider-wrapper {
		width: 200px;
	}
	.teachers__slider-controls {
		right: 70%;
		bottom: 110px;
	}

	.reviews__controls-wrapper {
		flex-direction: row-reverse;
	}

	.description {
		clip-path: polygon(
			58% 0%,
			80% 3%,
			100% 0%,
			100% 95%,
			69% 93%,
			28% 97%,
			0% 95%,
			0% 0%,
			22% 4%
		);
	}

	.contacts__map-wrapper {
		left: -120%;
		background-size: 60%;
	}

	.contacts__map {
		width: 850px;
		height: 254px;
		top: 199px;
		right: 390px;
	}

	.locations__address-item {
		width: 40%;
	}

	.locations__wrapper {
		width: 100%;
		bottom: -50px;
	}

	.robot-helper__wrapper {
		width: 150px;
		bottom: -50px;
	}
	.robot-helper__wrapper:nth-child(1) {
		bottom: -50px;
	}
	.robot-helper__wrapper:nth-child(2) {
		top: -200px;
	}
	.robot-helper__wrapper:nth-child(3) {
		bottom: 0;
	}
}
@media screen and (max-width: 540px) {
	.container {
		max-width: 100%;
	}

	.burger-menu_active {
		width: 60%;
	}

	.main {
		padding-top: 55px;
	}

	.main__title {
		font-size: 22px;
		padding-bottom: 50px;
	}

	.main-btn_mobile {
		padding: 5px;
		font-size: 14px;
	}

	.services__row {
		align-items: center;
	}
	.services__clip {
		width: 330px;
		height: 150px;
	}
	.services__img {
		width: 100%;
	}
	.services__ribbon {
		width: 200px;
		left: -24px;
		top: 56px;
	}
	.services__ribbon_big {
		width: 300px;
		left: -30px;
	}
	.services__age {
		bottom: 50px;
	}
	.services__button {
		right: 45px;
	}
	.services__button_big {
		bottom: 20px;
	}
	.services__description {
		top: 240px;
	}
	.services__item_big .services__description {
		top: 360px;
	}

	.features {
		width: 80%;
		align-items: flex-start;
		margin: auto;
	}
	.features__item {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-bottom: 20px;
	}
	.features__count {
		align-items: center;
	}
	.features__text {
		height: auto;
		text-align: center;
	}
	.features__subtitle {
		padding-bottom: 10px;
	}

	.stem {
		width: 100%;
		height: 350px;
		transform: translateY(120px);
	}
	.stem__wrapper {
		height: 350px;
	}
	.stem__text {
		font-size: 10px;
		top: 41%;
	}

	.results__title {
		font-size: 12px;
		padding: 15px 10px;
	}
	.results__text {
		padding: 15px 10px;
		font-size: 9px;
		line-height: 12px;
	}

	.teachers__slider {
		height: 400px;
	}
	.teachers__slider-wrapper {
		width: 130px;
	}

	.slide__item,
	.slide__img {
		width: 130px !important;
	}

	.slide__content {
		padding-left: 65px;
	}

	.slide__title {
		font-size: 18px;
		padding-bottom: 10px;
	}

	.slide__text {
		font-size: 10px;
		font-weight: 500;
	}

	.teachers__slider-controls {
		bottom: 150px;
		right: auto;
		left: 0;
	}

	.description__video {
		height: 455px;
	}

	.contacts__form {
		width: 100%;
	}

	.contacts__map-wrapper {
		left: -790px;
		height: 670px;
		background-size: 50%;
	}

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

	.contacts__unity-phone {
		font-size: 26px;
	}

	.contacts__map {
		width: 540px;
		height: 210px;
		top: 145px;
		right: 460px;
		clip-path: polygon(12% 7%, 77% 7%, 100% 100%, 0% 100%);
	}

	.locations__address-item {
		font-size: 12px;
	}

	.locations__img {
		left: -30px;
	}

	.contacts .full-screen {
		right: 450px;
		top: 250px;
	}

	.contacts-shedule span {
		padding-bottom: 10px;
	}

	.description__video-wrapper {
		left: -2vw;
	}

	#play-pause {
		left: 10%;
	}

	#full-screen {
		width: 40px;
		height: 40px;
		background-size: 20px;
	}
}
@media screen and (max-width: 400px) {
	.stem__text {
		font-size: 8px;
	}
}

/*# sourceMappingURL=main.css.map */
