.header.-redesigned {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background: #FFF;
}

.header:has(.header__promo) {
	position: sticky;
	top: -60px;;
}
.header *.-normal {
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
}
.header *.-bold {
	font-size: 16px;
	font-weight: 600;
	line-height: 140%;
}


.header__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid #2222221A;
}
.header__top .-hover {
	transition: color .2s ease;
	cursor: pointer;
}
.header__top-wrapper {
	position: relative;
}
.header__top-left, .header__top-right {
	display: flex;
	align-items: center;
}
.header__top-left > * {
	padding: 0 24px;
}
.header__top-right > * {
	padding: 0 16px;
}
.header__top-right > *:last-child {
	padding-right: 24px;
}
.header_top-divider {
	padding: 0;
	width: 1px;
	height: 30px;
	background: #2222221A;
}
.header__top-language-dropdown {
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	z-index: 3;
}
.header__top-language-chevron {
	transition: transform .2s ease;
}
.header__top-language-dropdown-select {
	padding: 8px;
	position: absolute;
	top: calc(100% + 14px);
	flex-direction: column;
	gap: 8px;
	background: #FFF;
	border-radius: 12px;
	box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.15);
}
.header__top-language-dropdown.active .header__top-language-chevron {
	transform: rotate(180deg);
}
.header__top-language-dropdown.active .header__top-language-dropdown-select {
	display: flex !important;
}
.header__top-language-dropdown.active .header__top-language-dropdown-select a {
	padding: 3px 8px;
	display: flex;
	align-items: center;
	gap: 4px;
	border-radius: 12px;
	transition: background .2s ease;
}
.header__top-language-dropdown.active .header__top-language-dropdown-select a.selected {
	opacity: .5;
	pointer-events: none;
	cursor: default;
}

.header__menu {
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header__menu-logo {
	display: block;
}


/* submenu */
.navbar__menu-item.parent {
	position: initial;
}
.navbar__menu-item > a {
	position: relative;
}
.navbar__menu-item > a::after {
	position: absolute;
	content: "";
	width: 100%;
	max-width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	overflow: hidden;
	border-radius: 2px;
	background-color: var(--blue-main);
	transition: all .2s ease;
}
.navbar__menu-item.parent:has(.menu__list-item-submenu.active) > a::after {
	max-width: 200px;
}
.navbar__menu-item:hover > a::after {
	max-width: 200px;
}
.navbar__menu-item.parent:has(.menu__list-item-submenu.active) .chevron span:first-of-type {
  transform: rotate(225deg);
}

.navbar__menu-item.parent:has(.menu__list-item-submenu.active) .chevron span:last-of-type {
  transform: rotate(-45deg);
}

.navbar__menu-item.parent:has(.menu__list-item-submenu.active) .chevron {
  transform: translateY(-6px);
}
.menu__list-item-submenu {
	display: none;
	position: absolute;
	left: 50%;
	top: calc(100% + 4px);
	width: 100%;
	max-width: 1494px;
	padding: 24px;
	transform: translateX(-50%);

	background: #FFF;
	border-radius: 8px;
	box-shadow: 0px 0px 4px 0px rgba(34, 34, 34, 0.08),1px 2px 8px 0px rgba(34, 34, 34, 0.04);
}
.menu__list-item-submenu.active {
	display: block;
}

.submenu__search {
	grid-column-start: 1;
	grid-column-end: 4;
	position: relative;
}
.submenu__search-input {
	width: 100%;
	border: 1px #22222240 solid;
	transition: border .2s ease;
	color: #222222;
	font-size: 16px;
	font-weight: 600;
	line-height: 120%;
}
.submenu__search-input::placeholder {
	color: #22222240;
	transition: color .2s ease;
}
.submenu__search-input:focus {
	border-color: #22222280;
}
.submenu__search-input:focus::placeholder {
	color: #22222280;
}
.submenu__search-icon {
	display: none;
	pointer-events: none;

	position: absolute;
	top: 11px;
	right: 11px;
}
.submenu__search-icon.active {
	display: block;
	pointer-events: all;
}
#submenu-search-cross {
	cursor: pointer;
}
.submenu__search-result {
	display: none;
	position: absolute;
	height: 456px;
	width: 100%;
	margin-top: 24px;
	overflow: auto;
	background: #FFF;
	z-index: 3;
}
.submenu__search-result-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.submenu__divider {
	height: 100%;
	width: 1px;
	background: #C6CBD4;
}
.submenu__content {
	margin-top: 24px;
}
.submenu__content, .submenu__search-grid-wrapper {
	display: grid;
	grid-template-columns: 420px 1fr 360px;
	gap: 24px;
}
.submenu__content > div {
	max-height: 457px;
	overflow: auto;
}
.submenu__list {
	display: flex;
	justify-content: space-between;
	overflow: hidden !important;
}
.submenu__list ul {
	margin-right: 4px;
	padding: 3px 20px 3px 3px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
	overflow: auto;
}
.submenu__list-item {
	padding: 8px;
	display: flex;
	align-items: center;
	gap: 16px; 
	border-radius: 8px;
	transition: all .2s ease;
	cursor: pointer;
}
.submenu__list-item.active {
	box-shadow: 0px 0px 4px 0px rgba(34, 34, 34, 0.08),1px 2px 8px 0px rgba(34, 34, 34, 0.04);
}
a.submenu__list-item {
	width: 100%;
}
.submenu__list-item img {
	background: var(--blue-ghost);
	border-radius: 8px;
	width: 70px;
	height: 70px;
	object-fit: cover;
}
.submenu__list-item-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
}
.submenu__list-item-counter {
	font-size: 14px;
	font-weight: 600;
	line-height: 19px;
	color: #22222280;
}
.submenu__courses ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.submenu__courses-item a, .submenu__courses-item-link {
	padding: 8px;
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	transition: color .2s ease;
}
#courses-not-found {
	padding: 63px 0;
    justify-content: center;
    flex-direction: column;
    align-items: center;
	gap: 8px;
}


/* mobile */
.mobile__menu {
	display: none;
}


/* BANNER*/
.banner {
	position: relative;
	background: var(--blue-dark);
	padding: 95px 0 105px;
	overflow: hidden;
}
.banner.-secondary {
	padding: 32px 0;
}
.banner-content {
	display: grid;
	grid-template-columns: 1.13fr 1fr;
	align-items: center;
	gap: 38px;
	width: 100%;
	max-width: 1437px;
	margin: 0 auto;
	z-index: 1;
}
.banner.-secondary .banner-content {
	gap: 56px;
}
.banner-content-text {
	position: relative;
	z-index: 2;
}
.banner-content h1 {
	font-size: 92px;
	font-weight: 700;
	line-height: 100%;
	color: #FFF;
}
.banner-content h2 {
	font-size: 64px;
	font-weight: 600;
	line-height: 110%;
	color: #FFF;
}
.banner-content p {
	margin-top: 34px;
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	color: #FFF;
}
.banner.-secondary .banner-content p {
	margin-top: 24px;
	font-size: 22px;
	font-weight: 400;
	line-height: 140%;
	color: #FFF;
}

.banner-animation {
	position: relative;
	width: 100%;
	height: 100%;
	aspect-ratio: 1.6 / 1.0;
	z-index: 2;
}
.banner-animation > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.banner-animation__hat {
	animation: hat-animation 12s ease-in-out infinite;
}
.banner-animation__network,
.banner-animation__eltex,
.banner-animation__wifi,
.banner-animation__phone {
    animation: satellite-animation 10s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
.banner-animation__eltex { animation-delay: -1s; left: 718px; top: 291px; }
.banner-animation__wifi  { animation-delay: -2s; left: 323px; top: 478px; }
.banner-animation__network { animation-delay: -3s; left: 759px; top: 580px; }
.banner-animation__phone { animation-delay: -4.5s; left: 362px; top: 222px; }


.banner-illustration {
	max-width: 653px;
}
.banner-illustration img {
	width: 100%;
}

@keyframes hat-animation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-40px); /* В JSON разница между 401.5 и 361.5 */
    }
}
@keyframes satellite-animation {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}
.banner.-secondary .banner__blur {
	opacity: 60%;
	top: 80%;
}
.banner__blur {
	position: absolute;
	top: 70%;
	right: 50%;
	width: 100%;
	height: 1000px;
	transform: translateX(50%);
	background: #0072F4;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 80%;
}

@media (hover: hover) {
	.-hover.-accent:hover {
		color: var(--blue-main);
	}
	.header__top-language-dropdown.active .header__top-language-dropdown-select a:hover {
		background: #ECF1F8A3;
	}
	.submenu__list-item:hover {
		background: #F6F6F6;
	}
	.submenu__courses-item a:hover, .submenu__courses-item-link:hover {
		color: var(--blue-main);
	}
	.submenu__search-input:hover {
		border-color: #22222280
	}
	.submenu__search-input:hover::placeholder {
		color: #22222280;
	}
}

@media (max-width: 1480px) {
	.menu__list-item-submenu {
		width: calc(100% - 40px);
	}
	.submenu__list-item img {
		display: none;
	}
	.submenu__content, .submenu__search-grid-wrapper {
		grid-template-columns: 216px 1fr 320px;
		gap: 16px;
	}
	.submenu__content > div {
		max-height: 410px;
	}

	.banner-content {
		display: grid;
    	grid-template-columns: 1fr .8fr;
		max-width: 980px;
	}
	.banner-content h1 {
		font-size: 70px;
	}
	.banner-content p {
		margin-top: 16px;
		font-size: 16px;
		line-height: 120%;
	}
}

@media (max-width: 992px) {
	.header__top, .navbar__menu, .navbar__buttons-account {
		display: none !important;
	}
	.header__menu-logo {
		max-width: 140px;
	}

	.mobile__menu {
		position: sticky;
		top: 64px;
		left: 0;
		width: 100%;
		height: calc(100vh - 64px);

		background: #F6F6F6;
		z-index: 3;
	}
	.mobile__menu.active {
		display: flex;
	}
	.mobile__menu-wrapper {
		padding: 24px 24px 88px 24px;
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 24px;
		overflow: auto;
	}
	.mobile__menu-wrapper > * {
		padding: 16px;
		height: fit-content;
		border-radius: 8px;
		background: #FFF;
	} 
	.mobile__menu-wrapper ul {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}
	.mobile__menu-item a {
		font-size: 18px;
		font-weight: 500;
		line-height: 140%;
	}
	.mobile__menu-item._language {
		width: fit-content;
		border-radius: 8px;
		box-shadow: 0px 0px 4px 0px rgba(34, 34, 34, 0.08),1px 2px 8px 0px rgba(34, 34, 34, 0.04);
	}
	.mobile__menu-item._language a {
		display: flex;
		align-items: center;
		gap: 4px;
		padding: 10px;
	}
	.mobile__menu-additional {
		display: flex;
		flex-direction: column;
		gap: 24px;
	}
	.mobile__menu-additional-contacts {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}
	.mobile__menu-additional-buttons {
		display: flex;
		gap: 16px;
	}
	.navbar__buttons-arrow {
		display: flex;
        align-items: center;
        justify-content: center;
		padding: 9px;
        min-width: 48px;
        min-height: 48px;
		background-color: transparent;
		border: 2px var(--blue-main) solid;
		border-radius: 8px;
		transition: all 0.2s ease;
	}



	.banner-content {
		grid-template-columns: 1fr;
		padding: 0 30px;
	}
	.banner-content h1 {
		font-size: 80px;
	}
	.banner-content p {
		font-size: 20px;
	}
	.banner-content p br {
		display: none;
	}
}

@media (max-width: 480px) {
	.banner {
		padding: 22px 0 32px;
		border-radius: 0 0 8px 8px;
	}
	.banner-content {
		gap: 12px;
	}
	.banner-content h1 {
		font-size: 40px;
		line-height: 100%;
	}
	.banner-content h2 {
		font-size: 32px;
		line-height: 110%;
	}
	.banner-content p {
		font-size: 12px;
		font-weight: 700;
		line-height: 16px;
	}
	.banner__blur {
		width: 600px;
		height: 500px;
		top: 50%;
		right: 90%;
		filter: blur(80px);
	}

	.banner.-secondary {
		padding: 24px 0 32px;
	}
	.banner.-secondary .banner-content {
		display: flex;
		flex-direction: column-reverse;
		gap: 24px;
	}
	.banner.-secondary .banner-content p {
		margin-top: 16px;
		font-size: 14px;
		font-weight: 500;
		line-height: 18px;
	}
	.banner.-secondary .banner__blur {
		top: 50%;
	}
}



