/* HEADER */
.header {
	padding: 13px;
	position: relative;
	z-index: 100;
}

.header-inner {
	border-radius: 37px;
	background-color: var(--color-white);
	padding: 10px;
}

.header-right {
	gap: 47px;
}

.header .logo {
	margin-top: -6px;
}

.menu-top {
	gap: 30px;
}

.menu-top a {
	font-size: 14px;
	font-weight: 500;
}

.menu-top .menu-item-has-children {
	position: relative;
}

.menu-top .menu-item-has-children > a:after {
	content: '↓';
	display: inline-block;
	position: absolute;
	top: -2px;
	right: -15px;
}

.menu-top .menu-item-has-children .sub-menu .menu-item .menu-icon {
	display: none;
}

.menu-top .sub-menu {
	position: absolute;
	gap: 10px;
	display: flex;
	flex-direction: column;
	top: 24px;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	background-color: var(--color-white);
	padding: 15px;
	border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 3px 5px 20px 0px #22212121;
}

.menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
}

.menu__link:hover {
	transition: color .2s ease-in-out;
}

.menu-item:hover > .menu__link,
.menu-item.active > .menu__link,
.menu-item:hover:after {
	color: var(--color-light-blue);
}

/* Banner top main */
.banner-top-main {
	padding-top: 58px;
	margin-bottom: 150px;
	/* overflow-x: hidden; */
}

.banner-top-main__inner{
	
}
.banner-top-main h1 {
	margin-bottom: 50px;
}
.banner-main-links {
	gap: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	position: relative;
	z-index: 100;
	margin-right: 14px;
}
.banner-main__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid var(--color-light-gray);
	background-color: var(--color-white);
	padding: 18px;
	border-radius: 52px;
	text-transform: lowercase;
	font-family: 'Montserrat';
	font-weight: bold;
}

.banner-main__link:last-child {
	background-color: var(--color-black);
	color: var(--color-white);
}

.banner-main-content {
	padding: 187px 44px 58px;
	background-color: var(--color-violet-light);
	border-radius: 32px;
	height: 100%;
	position: relative;
}

.banner-main-content .number {
	display: inline-block;
	width: auto;
	font-size: 40px;
	font-weight: bold;
	font-weight: bold;
	background: linear-gradient(90.03deg, #FA0034 9.84%, #A5137C 21.26%, #5025C3 32.67%, #2380FF 53.13%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 22px;
	z-index: 10;
}

.banner-main-content .text {
	font-size: 20px;
	line-height: 32px;
	text-transform: lowercase;
	width: 33%;
	z-index: 10;
}


.banner-top-main-image {
	position: absolute;
    bottom: -91px;
    /* right: -860px; */
	right: -96%;
    width: 170%;
    height: auto;
    z-index: 10;
    max-width: 50000px;
}

.banner-top-main-element-back {
	position: absolute;
	bottom: 0;
	right: -415px;
	z-index: 0;
	width: 1004px;
	display: none;
}

/* TABS - Выберите свое обучение */
.choose-education {
	margin-bottom: 37px;
}
.tabs__header {
	display: flex;
	gap: 20px;
	margin-bottom: 37px;
}

.tabs__header-item {
	cursor: pointer;
	padding: 13px 34px;
	border-radius: 45px;
	transition: all 0.3s ease;
	font-size: 14px;
	line-height: 190%;
	font-weight: 500;
	border: 1px solid var(--color-black);
}

.tabs__header-item:hover,
.tabs__header-item.active {
	color: var(--color-light-blue);
	text-decoration: underline;
}

.tabs__content {
	display: flex;
	flex-wrap: wrap;
	gap: 19px;
	margin-left: -15px;
	margin-right: -15px;
}

.tabs__item-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.tabs__item {
	padding: 35px;
	border-radius: 20px;
	width: calc(33.333% - 13px);
	flex: 0 0 calc(33.333% - 13px);
	height: 253px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-repeat: no-repeat;
	background-position: right center;
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, transform 0.4s ease-in-out;
	pointer-events: auto;
}

.tabs__item.fade-out {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px) scale(0.95);
	pointer-events: none;
	transition-delay: 0s;
}

.tabs__item.fade-in {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.tabs__item.hidden {
	display: none !important;
	pointer-events: auto;
}

.tabs__item .title {
	font-size: 20px;
	font-weight: 500;
	line-height: 26px;
}

.tabs__item .duration {
	font-size: 14px;
	line-height: 26px;
}

.tabs__item .label {
	display: flex;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	background: black;
	border-radius: 45px;
	width: auto;
	height: auto;
	padding: 8px 10px;
	flex-shrink: 0;
	flex-grow: 0;
	box-sizing: border-box;
	white-space: nowrap;
}

.tabs__item .more-btn {
	font-size: 14px;
	font-weight: 500;
	line-height: 36px;
	border: 1px solid var(--color-white);
	border-radius: 12px;
	flex-shrink: 0;
	flex-grow: 0;
	display: inline-block;
	width: 148px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tabs__item.red {
	background-color: var(--color-red);
	color: var(--color-white);
}

.tabs__item.blue {
	background-color: var(--color-light-blue);
	color: var(--color-white);
}

.tabs__item.lillac {
	background-color: var(--color-lillac);
	color: var(--color-white);
}

.tabs__item.green {
	background-color: var(--color-green);
	color: var(--color-white);
}

.tabs__item.black {
	background-color: var(--color-black);
	color: var(--color-white);
}
.tabs__item.yellow {
	background-color: var(--color-yellow);
}

.tabs__item.yellow .label {
	color: var(--color-white);
}

/* What to start */
.what-to-start {
	position: relative;
	margin-bottom: 150px;
}

.what-to-start__image-wrapper {
	display: block;
	bottom: -55px;
	width: 40%;
}

.what-to-start__image {
	position: absolute;
	bottom: 0;
	min-width: 100%;
	max-width: 300%;
	min-height: 137%;
	width: auto;
	left: -196px;
}

.what-to-start__inner {
	background-color: var(--color-violet-light);
	border-radius: 32px;
	padding: 65px 74px 55px 0;
	background-image: url(../img/what-to-start-bg.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom left;
}

.what-to-start__image-mobile {
	display: none;
}

.what-to-start__content {
	padding-left: 62px;
}

.what-to-start h2 {
	margin-bottom: 30px;
}

.what-to-start__text {
	font-size: 18px;
	line-height: 140%;
	margin-bottom: 30px;
}

.what-to-start__list {
	margin-bottom: 17px;
	padding-left: 30px;
}

.what-to-start__list li {
	display: flex;
	align-items: center;
	background-color: var(--color-white);
	border-radius: 60px;
	padding: 17px 30px;
	margin-bottom: 10px;
	position: relative;
}

.what-to-start__list li .list-item__icon {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	position: absolute;
	left: -30px;
}

.what-to-start__list li:first-child .list-item__icon {
	background: linear-gradient(89.82deg, #D0D91D 0.9%, #7EBA6D 48.32%, #1B64C6 97.61%);
}

.what-to-start__list li:nth-child(2) .list-item__icon {
	background: linear-gradient(90.01deg, #50DDAF 1%, #5591D6 47.49%, #5025C3 97.69%);
}

.what-to-start__list li:nth-child(3) .list-item__icon {
	background: linear-gradient(89.93deg, #5E1E9B 12.14%, #C15D7B 41.25%, #DB7B4A 64.87%, #FFCB00 98.65%);
}

.what-to-start__btn {
	display: inline-block;
	align-items: center;
	justify-content: center;
	width: auto;
	align-self: flex-start;
	flex-shrink: 0;
}

/* New skills */
.new-skills {
	margin-bottom: 150px;
}

.new-skills h2 {
	margin-bottom: 60px;
}

.new-skills .carousel {
	gap: 19px;
}

.new-skills .carousel-item {
	height: 253px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--color-violet-light);
	border-radius: 20px;
	padding: 35px 24px 28px;

	width: calc(33.333% - 13px);
	flex: 0 0 calc(33.333% - 13px);

	background-repeat: no-repeat;
	background-position: top right;
}
.new-skills .carousel-item .title {
	font-size: 20px;
	font-weight: 500;
	line-height: 110%;
}

.new-skills .carousel-item .text {
	font-size: 14px;
	line-height: 26px;
}

.carousel-item__btn {
	text-align: center;
	font-size: 14px;
	line-height: 110%;
	width: 261px;
	height: 53px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.new-skills .carousel-item:nth-child(1) {
	background-image: url('../img/skills/skills-01.png');
}

.new-skills .carousel-item:nth-child(2) {
	background-image: url('../img/skills/skills-02.png');
}

.new-skills .carousel-item:nth-child(3) {
	background-image: url('../img/skills/skills-03.png');
}

.new-skills .carousel-item:nth-child(4) {
	background-image: url('../img/skills/skills-01.png');
}

.new-skills .carousel-item:nth-child(5) {
	background-image: url('../img/skills/skills-02.png');
}

.new-skills .carousel-item:nth-child(6) {
	background-image: url('../img/skills/skills-03.png');
}

.new-skills-carousel-wrapper {
	position: relative;
}

.carousel-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.carousel-nav {
	display: flex;
	gap: 10px;
	margin-top: -48px;
}

.carousel-nav__btn {
	width: 60px;
	height: 50px;
	border-radius: 46%;
	border: 1px solid var(--color-black);
	background-color: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	color: var(--color-black);
}

.carousel-nav__btn:hover {
	opacity: .8;
	transition: .2s;
}


.carousel-nav__btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.carousel-container {
	overflow: hidden;
	width: 100%;
}

.carousel-track {
	display: flex;
	gap: 19px;
	transition: transform 0.5s ease-in-out;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.carousel-track.dragging {
	transition: none;
	cursor: grabbing;
}

.carousel-track.dragging .carousel-item {
	pointer-events: none;
}

.carousel-item {
	height: 253px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--color-violet-light);
	border-radius: 20px;
	padding: 35px 24px 28px;
	width: calc(33.333% - 13px);
	flex: 0 0 calc(33.333% - 13px);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.carousel-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 19px;
	margin-top: 47px;
}

.carousel-pagination__dot {
	width: 42px;
	height: 4px;
	border-radius: 4px;
	background-color: #DEDEDE;
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-pagination__dot.active {
	width: 191px;
	background-color: var(--color-black);
}

/* We help */
.we-help h2 {
	margin-bottom: 70px;
	text-align: center;
}

.we-help__items {
	gap: 32px;
	margin-bottom: 150px;
}

.we-help__item {
	background-color: var(--color-violet-light);
	border-radius: 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	padding-left: 0;
	padding-right: 0;
	width: calc(25% - 30px);
	flex: 0 0 calc(25% - 30px);
}

.we-help__item:nth-child(odd) {
	padding-top: 32px;
	padding-bottom: 0;
}

.we-help__item:nth-child(even) {
	padding-top: 0;
	padding-bottom: 32px;
}

.we-help__item .item-content {
	padding-left: 19px;
	padding-right: 19px;
}

.we-help__item .title {
	font-size: 18px;
	line-height: 120%;
	font-weight: 500;
	margin-bottom: 10px;
}

.we-help__item .text {
	font-size: 14px;
	line-height: 120%;
}

.we-help__item .text p {
	margin-bottom: 9px;
}

.we-help__item .item-image {
	width: 100%;
	display: flex;
	object-fit: cover;
}

.we-help__item .item-image img {
	width: 100%;
}

/* our-students-works */

.our-students-works {
	margin-bottom: 170px;
}

.our-students-works h2 {
	text-align: center;
	margin-bottom: 77px;
}

.our-students-works .container {
	text-align: center;
}

.our-students-works .video-wrapper {
	position: relative;
	margin-bottom: 53px;
	/* overflow: hidden; */
}

.video-wrapper__image {
	position: absolute;
	z-index: -1;
}

.video-wrapper__image__right {
    width: 570px;
    top: -20px;
	right: -182px;
}

.video-wrapper__image__left {
    width: 570px;
    top: -51px;
	left: -171px;
}

.our-students-works .video-wrapper iframe {
	border-radius: 18px;
}

.our-students-works__btn {
	display: inline-block;
	width: auto;
	margin-left: auto;
	margin-right: auto;
	text-transform: uppercase;
}

/* Our courses */

.our-courses {
	margin-bottom: 154px;
}
.our-courses h2 {
	margin-bottom: 50px;
}

.our-courses__items {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	justify-content: space-between;
}

.our-courses__item {
	width: calc(33% - 14px);
	height: 137px;
	border-radius: 32px;
	background-repeat: no-repeat;
	background-position: top right;
	background-size: 122px;
	padding: 78px 49px 0;
}

.our-courses__item .title {
	font-size: 28px;
	font-weight: 500;
	line-height: 120%;
}

/* Our students carousel */
.our-students-carousel {
	margin-bottom: 158px;
}

.our-students-carousel h2 {
	text-align: center;
	margin-bottom: 50px;
}

.our-students-carousel h2 span,
.our-students-carousel h2 strong {
	color: var(--color-light-blue);
	font-weight: 700;
}

.our-students-carousel__wrapper {
	position: relative;
	margin-bottom: 40px;
	max-width: 100%;
}

.our-students-carousel__container {
	overflow: hidden;
	position: relative;
	padding: 0;
}

.our-students-carousel__track {
	display: flex;
	transition: transform 0.5s ease;
	gap: 0;
	align-items: center;
	will-change: transform;
}

.our-students-carousel__track.dragging {
	transition: none;
	cursor: grabbing;
}

.our-students-carousel__track.dragging .our-students-carousel__item {
	pointer-events: none;
}

/* Курсор для перетаскивания только на мобильных устройствах */
@media screen and (max-width: 767px) {
	.our-students-carousel__container {
		cursor: grab;
	}

	.our-students-carousel__container:active {
		cursor: grabbing;
	}
}

.our-students-carousel__item {
	display: flex;
	background-color: #F6F6F6;
	border-radius: 19px;
	overflow: hidden;
	flex: 0 0 calc(66.666667% - 10px);
	max-width: calc(66.666667% - 10px);
	transition: all 0.5s ease;
	height: auto;
	min-height: 308px;
	position: relative;
}

/* Неактивные слайды (слева и справа) */
.our-students-carousel__item:not(.active) {
	height: 308px;
	opacity: 0.6;
	transform: scale(0.9);
	overflow: hidden;
	width: 190px;
	filter: blur(3px);
	transition: filter 0.5s ease;
}

.our-students-carousel__item:not(.active) .item-content .text{
	font-size: 14px;

}

/* Слайд слева от активного */
.our-students-carousel__item.prev {
	right: -500px;
}

/* Слайд справа от активного */
.our-students-carousel__item.next {
	left: -500px;
}

/* Активный слайд */
.our-students-carousel__item.active {
	opacity: 1;
	transform: scale(1);
	z-index: 2;
	position: relative;
}

.our-students-carousel__item .item-content {
	padding: 56px 0px 56px 65px;
	width: 77%;
	padding-right: 110px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
}

.our-students-carousel__item .title {
	font-size: 20px;
	font-weight: bold;
	line-height: 32px;
}

.our-students-carousel__item .desc {
	color: var(--color-light-blue);
	font-size: 14px;
	line-height: 110%;
	font-weight: 500;
	margin-bottom: 21px;
}

.our-students-carousel__item .text {
	font-size: 16px;
	line-height: 24px;
}

.our-students-carousel__item .photo {
	width: 33%;
	flex-shrink: 0;
	display: flex;
	align-items: stretch;
}

.our-students-carousel__item .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Навигация */
.our-students-carousel__nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: -20px;
	position: relative;
	z-index: 100;
}

.our-students-carousel__btn {
	width: 62px;
	height: 50px;
	border-radius: 30px;
	background-color: #DCE6F2;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	color: #333;
	padding: 0;
}

.our-students-carousel__btn:hover:not(:disabled) {
	border-color: var(--color-light-blue);
	color: var(--color-light-blue);
	background-color: rgba(0, 0, 0, 0.02);
}

.our-students-carousel__btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.our-students-carousel__btn:disabled:hover {
	border-color: #E0E0E0;
	color: #333;
	background-color: transparent;
}

.our-students-carousel__btn svg {
	width: 14px;
}

/* Univerium в цифрах и буквах */
.univerium-in-numbers__wrapper {
	background-color: var(--color-violet-light);
	border-radius: 32px;
	padding: 85px 57px;
}

.univerium-in-numbers__wrapper h2 {
	margin-bottom: 53px;
	text-align: center;
}

.univerium-in-numbers-row {
	row-gap: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 24px;
}

.univerium-in-numbers__item {
	background-color: var(--color-white);
	border-radius: 20px;
	padding: 35px;
	position: relative;
	height: 256px;
}

.univerium-numbers-image-mobile {
	display: none;
}

.univerium-in-numbers__item:first-child {
	width: calc(67% - 15px);
}

.univerium-in-numbers__item:not(:first-child) {
	width: calc(34% - 30px);
}

.univerium-in-numbers__item .title {
	font-size: 20px;
	font-weight: 500;
	line-height: 120%;
	position: relative;
}

.univerium-in-numbers__item:not(:first-child) .title svg {
	display: none;
}

.univerium-in-numbers__item .title svg {
	position: absolute;
	bottom: -5px;
	left: 128px;
}

.univerium-in-numbers__item img {
	position: absolute;
	bottom: 0;
	left: 0;
}

.univerium-in-numbers__action {
	padding-left: 15px;
	padding-right: 15px;
}

.univerium-in-numbers__action-inner {
	position: relative;
	background-color: var(--color-light-blue);
	color: white;
	padding: 0;
	border-radius: 20px;
	height: 144px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 36px;
	overflow: hidden;
	padding-right: 43px;
}

.univerium-in-numbers__action .title {
	font-size: 34px;
	line-height: 48px;
	font-weight: bold;
	position: relative;
	z-index: 10;
}

.action-btn {
	display: flex;
	align-items: center;
	height: 64px;
	gap: 42px;
	padding-left: 38px;
	padding-right: 15px;
	flex-wrap: nowrap;
	position: relative;
	z-index: 10;
	white-space: nowrap;
}

.action-btn .icon {
	background: radial-gradient(50% 50% at 50% 50%, rgba(217, 217, 217, 0) 0%, rgba(237, 237, 237, 0) 53.68%, rgba(242, 242, 242, 0.25379) 79.54%, rgba(255, 255, 255, 0.7) 100%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.action-decor-left {
	position: absolute;
	left: -10px;
	z-index: 0;
}

.action-decor-left__image {
	width: 148px;
	height: auto;
}

.action-decor-right {
	position: absolute;
	right: -10px;
	z-index: 0;
}


.univerium-in-numbers {
	margin-bottom: 160px;
}

/* Blog */
.blog h2 {
	text-align: center;
	width: 100%;
}
.blog-row {
	gap: 30px;
	display: flex;
	justify-content: space-between;

}
.blog-item  {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	color: white;
	padding: 18px 20px;
	background: linear-gradient(180deg, rgba(27, 100, 198, 0) 0%, #1B64C6 60.79%, #1B64C6 100%);
	margin-left: -15px;
	margin-right: -15px;
}

.blog-item:nth-child(1) {
	background: linear-gradient(180deg, rgba(27, 100, 198, 0) 0%, #1B64C6 60.79%, #1B64C6 100%)
}

.blog-item:nth-child(2) {
	background: linear-gradient(180deg, rgba(27, 100, 198, 0) 0%, #5025C3 60.79%, #5025C3 100%)
}

.blog-item:nth-child(3) {
	background: linear-gradient(180deg, rgba(27, 100, 198, 0) 0%, #111138 60.79%, #111138 100%)
}


.blog-item .image {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.blog-item .image img {
	width: 100%;
	height: auto;
}

.blog-item .image:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.blog-item .tag {
	font-size: 14px;
	font-weight: 500;
	line-height: 120%;
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.228);
	border-radius: 30px;
	padding: 7px 11px;
	border: 1px solid white;
	margin-bottom: 110px;
}

.blog-item .date {
	font-size: 14px;
	line-height: 130%;
	color: #A4A09B;
	margin-bottom: 17px;
}

.blog-item .title {
	font-size: 24px;
	font-weight: bold;
	line-height: 110%;
	margin-bottom: 16px;
}

.blog-item .text {
	font-size: 14px;
	line-height: 130%;
	margin-bottom: 12px;
}

.blog-item .read-more-btn {
	font-size: 14px;
	line-height: 120%;
	font-weight: 500;
	padding: 15px 20px;
	border: 1px solid var(--color-white);
	border-radius: 46px;
	display: inline-block;
}

.blog {
	margin-bottom: 161px;
}

/* Form */

.form {
	background-color: var(--color-violet-light);
	border-radius: 32px;
	padding-top: 13px;
}

.form-image {
	padding-right: 15px;
	position: relative;
	left: -30%;
	display: flex;
}

.form-image img {
	/* min-height: 100%; */
	width: 800px;
	max-width: 300%;
	bottom: 0;
	position: relative;
}

.form-wrapper {
	margin-top: 26px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50px;
	padding: 41px;
	margin-bottom: 56px;
}

.form-wrapper .title {
	font-size: 36px;
	font-weight: bold;
	line-height: 110%;
	margin-bottom: 16px;
}

.form-wrapper .desc {
	font-size: 18px;
	line-height: 110%;
	margin-bottom: 20px;
}

.form-wrapper .conf {
	color: #111138;
	opacity: .3;
	font-size: 14px;
}

.form-wrapper input:not([type="submit"]) {
	background-color: var(--color-white);
	height: 58px;
	width: 100%;
	padding-left: 24px;
	border-radius: 10px;
	margin-bottom: 14px;
}

.form-wrapper input:not([type="submit"])::placeholder {
	color: #777;
}

.form-wrapper input[type="submit"] {
	background-color: var(--color-light-blue);
	color: var(--color-white);
	font-size: 16px;
	font-weight: bold;
	padding: 26px 75px 26px 37px;
	text-transform: uppercase;
	border-radius: 32px;
	margin-top: 20px;
	background-image: url('../img/submit.png');
	background-repeat: no-repeat;
	background-position: 95% center;
}

/* Footer */
.footer {
	background-color: var(--color-black);
	padding: 87px 0 73px;
}

.footer-top {
	display: flex;
	color: var(--color-white);
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 15px;
	border-bottom: 1px solid #ffffff1a;
}

.footer-nav {
	width: 160px;
}

.footer-nav .title,
.footer-contacts .title {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: bold;
	line-height: 130%;
	margin-bottom: 20px;
}

.footer-nav li {
	margin-bottom: 20px;
}

.footer-nav a {
	font-size: 14px;
	line-height: 130%;
}

.footer-contacts {
	width: 259px;
}

.footer-contacts .email,
.footer-contacts .phone {
	font-size: 18px;
	font-weight: 500;
	line-height: 130%;
	display: block;
	margin-bottom: 15px;
}

.footer-contacts .address {
	font-size: 14px;
	line-height: 130%;
	margin-bottom: 15px;
}

.footer-contacts .links {
	gap: 10px;
	align-items: center;
}

.footer-contacts .links a:last-child {
	margin-left: 7px;
}

.footer-top img {
	width: auto;
	max-width: 100%;
	flex-shrink: 0;
	flex-grow: 0;
}

.footer-bottom {
	color: color(srgb 1 1 1 / 0.50);
	padding-top: 17px;
	font-size: 14px;
	line-height: 140%;
}

.footer-bottom__top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.footer-bottom__bottom {
	display: flex;
	justify-content: space-between;
}

/************************************************************************
*************************** Page About **********************************
*************************************************************************/
.banner-about {
	position: relative;
	margin-bottom: 140px;
}

.banner-about:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100px;
	background-color: var(--color-white);
	bottom: -100px;
	z-index: 10;
}

.banner-about h1 {
	font-size: 60px;
	line-height: 56px;
	margin-bottom: 28px;
}

.banner-about__inner {
	position: relative;
	background-color: var(--color-violet-light);
	border-radius: 32px;
	padding: 128px 65px;
	margin-top: 28px;
}
.banner-about__text {
	font-size: 20px;
	line-height: 130%;
	margin-bottom: 23px;
}

.banner-about__btn {
	text-transform: uppercase;
	padding: 26px 48px;
}

.banner-about__image {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 0;
	height: 100%;
}

.banner-about__image img {
	position: absolute;
}

.banner-about__image-01 {
	position: absolute;
    width: 1100px;
    max-width: 300%;
    bottom: -123px;
    z-index: 1;
    right: -470px;
}

.banner-about__image-02_desktop {
	position: absolute;
	/* bottom: -18px; */
	bottom: -97px;
	right: -631px;
	/* height: 117%; */
	width: 1214px;
	max-width: 300%;
	z-index: 50;
}

.banner-about__element-01 {
	position: absolute;
    right: -94px;
    bottom: -62px;
    z-index: 10;
    width: 374px;
}

.banner-about__element-02 {
	position: absolute;
	left: -44px;
    top: 21px;
}

.banner-about__element-03 {
	position: absolute;
	left: -23px;
	bottom: 73px;
}

/* Why us */
.why-us {
	margin-bottom: 140px;
}

.why-us__items {
	gap: 30px;
}

.why-us__item {
	position: relative;
	padding-top: 38px;
	border-radius: 20px;
	width: calc(50% - 15px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}

.why-us__item.dark {
	background-color: black;
	color: white;
}

.why-us__item.light {
	background-color: var(--color-violet-light);
}

.why-us__item .item-content {
	padding-left: 38px;
	padding-right: 38px;
}
.why-us__item .title {
	font-size: 24px;
	font-weight: bold;
	line-height: 120%;
	margin-bottom: 11px;
}

.why-us__item .text {
	font-size: 16px;
	line-height: 140%;
}

.why-us__item .text span {
	font-weight: 600;
}
.why-us__item.dark .text strong {
	color: var(--color-green);
}
.why-us__item.light .text strong {
	color: var(--color-lillac);
}

.why-us__item img {
	position: relative;
	bottom: 0;
}

/* New skills */
.new-skiils {
	margin-bottom: 134px;
}
.new-skiils__items {
	display: flex;
	gap: 30px;
}

.new-skills__item {
	width: calc(25% - 23px);
}

.new-skills__item img {
	margin-bottom: 14px;
}

.new-skills__item .title {
	font-size: 20px;
	font-weight: bold;
	line-height: 120%;
	margin-bottom: 14px;
}

.new-skills__item .text {
	font-size: 16px;
	line-height: 140%;
}

.about-page-carousel.our-students-carousel {
	margin-bottom: 139px;
}

/* Call to action */
.call-to-action {
	margin-bottom: 83px;
}
.call-to-action .univerium-in-numbers__action-inner {
	background-color: var(--color-violet-light);
	color: var(--color-black);
	justify-content: space-between;
	padding-left: 96px;
	padding-right: 28px;
}

.call-to-action .univerium-in-numbers__action .title {
	font-size: 29px;
	line-height: 110%;
}

.action-btn {
	text-transform: uppercase;
}

/* География учеников */
.geography {
	margin-bottom: 55px;
}
.geography h2 {
	text-align: center;
}

.about-wrapper .univerium-in-numbers__wrapper {
	padding-bottom: 56px;
}

/* Join us */
.join-us__items {
	gap: 30px;
	display: flex;
	flex-wrap: nowrap;
	margin-bottom: 139px;
}
.join-us__item {
	width: 33%;
	display: flex;
	justify-content: space-between;
	font-family: 'Montserrat';
	background-color: var(--color-violet-light);
	border-radius: 20px;
	overflow: hidden;
}

.join-us__item .item-content {
	padding: 35px 0 35px 25px;
}

.join-us__item .count {
	font-size: 30px;
	font-weight: bold;
	line-height: 110%;
	margin-bottom: 8px;
}

.join-us__item .text {
	font-size: 14px;
	line-height: 120%;
	color: #7C8289;
}

/************************************************************************
*************************** Contacts page **********************************
*************************************************************************/
.contacts-page__header h1 {
	font-size: 60px;
	line-height: 56px;
	font-weight: bold;
	margin-top: 70px;
	margin-bottom: 76px;
}

.contacts-page__content .content-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	margin-bottom: 52px;
}

.contacts-page__content .item {
	display: flex;
	flex-direction: column;
}

.contacts-page__content .item .title {
	font-size: 24px;
	font-weight: bold;
	line-height: 56px;
}

.contacts-page__content .item .text {
	font-size: 16px;
	line-height: 130%;
}

.contacts-page__content .address {
	width: 70%;
}

.contacts-page__content .links-items {
	display: flex;
	gap: 17px;
	margin-bottom: 14px;
}

.map {
	position: relative;
}

.map-inner {
	position: relative;
}

#yandex-map {
	width: 100%;
	height: 529px;
	border-radius: 38px;
	overflow: hidden;
	margin-bottom: 22px;
}

/* Адаптивные стили для карты */
@media screen and (max-width: 991px) {
	#yandex-map {
		height: 400px;
	}
}

@media screen and (max-width: 767px) {
	#yandex-map {
		height: 457px;
	}
}


/* Кастомный balloon для Яндекс карты */
.custom-balloon {
	position: relative;
	padding: 20px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	min-width: 250px;
	max-width: 350px;
}

.custom-balloon__close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
	color: #999;
	transition: color 0.2s;
}

.custom-balloon__close:hover {
	color: #333;
}

.custom-balloon__header {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-black);
	margin-bottom: 12px;
	padding-right: 30px;
}

.custom-balloon__body {
	font-size: 14px;
	line-height: 1.5;
	color: #666;
	margin-bottom: 12px;
}

.custom-balloon__footer {
	font-size: 14px;
	padding-top: 12px;
	border-top: 1px solid red;
}

.contacts-wrapper .form {
	padding-top: 34px;
}


/************************************************************************
*************************** Feedback page********************************
*************************************************************************/
.banner-top-feedback-image-desktop {
	display: block;
	position: absolute;
	bottom: -103px;
    right: -503px;
}
.banner-top-feedback-image-mobile {
	display: none;
}
.banner-feedback {
	margin-bottom: 50px;
}

.feedback-wrapper .banner-about__inner {
	background-color: transparent;
}
.banner-about__image-02_mobile {
	display: none;
}
.feedback-wrapper .banner-about__image-02_desktop {
	bottom: -35px;
	height: 110%;
	display: block;
}

.feedback-wrapper .banner-about__content h1 {
	margin-bottom: 38px;
}

.feedbacks-tags {
	position: relative;
	gap: 10px;
	margin-bottom: 24px;
	z-index: 100;
}

.feedbacks-tags .tag {
	font-size: 14px;
	font-weight: 500;
	line-height: 190%;
	border: 1px solid var(--color-black);
	padding: 0 20px;
	border-radius: 30px;
	cursor: pointer;
}

.feedbacks-tags .tag.active {
	background-color: var(--color-light-blue);
	color: var(--color-white);
	border-color: var(--color-light-blue);
}

.feedbacks-items {
	row-gap: 18px;
}

.feedbacks-item {
	display: flex;
	padding: 33px 35px;
	background-color: #F7FAFF;
	border-radius: 50px;
}

.feedbacks-item .photo {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	overflow: hidden;
	min-width: 80px;
	margin-right: 18px;
}

.feedbacks-item .photo img {
	width: 100%;
	min-width: 100%;
	object-fit: cover;
	flex-shrink: 0;
}

.feedbacks-item .stars {
	display: flex;
	gap: 3px;
	margin-bottom: 10px;
}

.feedbacks-item .name {
	font-size: 24px;
	font-weight: bold;
	line-height: 110%;
	margin-bottom: 16px;
}

.feedbacks-item .text {
	font-size: 18px;
	line-height: 140%;
}

.feedbacks-item .content p {
	margin-bottom: 15px;
}

/* Плавное переключение табов для отзывов */
.feedbacks-item {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, transform 0.4s ease-in-out;
	pointer-events: auto;
}

.feedbacks-item.fade-out {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px) scale(0.95);
	pointer-events: none;
	transition-delay: 0s;
}

.feedbacks-item.fade-in {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.feedbacks-item.hidden {
	display: none !important;
	pointer-events: none;
}

/************************************************************************
*************************** Faq page********************************
*************************************************************************/
.faq-row {
	display: flex;
	gap: 30px;
	flex-wrap: nowrap;
	margin-bottom: 142px;
}

.faq-left {
	width: 70%;
	min-width: 70%;
}

.faq-left h1 {
	margin-bottom: 38px;
	font-size: 60px;
	margin-top: 35px;
}

.accordeon-item {
	margin-bottom: 12px;
	background-color: #F7FAFF;
	border-radius: 30px;
	padding: 30px 35px;
}


.accordeon-item .text {
	font-size: 18px;
	line-height: 140%;
}

.faq-right {
	width: auto;
}

.faq-right__banner-mobile {
	display: none;
}

.faq-right__banner-desktop {
	display: block;
	position: absolute;
    bottom: 125px;
    left: -86px;
    width: 800px;
	max-width: 1000%;
}

.banner-faq h1 {
	margin-bottom: 38px;
}

.accordeon-item {
	margin-bottom: 12px;
	background-color: #F7FAFF;
	border-radius: 30px;
	padding: 0 35px;
	height: 77px;
	display: flex;
	flex-direction: column;
	
}

.accordeon-item.active {
	height: auto;
}

.accordeon-item .title {
	font-size: 24px;
	font-weight: 500;
	line-height: 110%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	user-select: none;
	height: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
}

.accordeon-item .title img {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 15px;
}

.accordeon-item.active .title img {
	transform: rotate(180deg);
}

.accordeon-item .text {
	font-size: 18px;
	line-height: 140%;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-10px);
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
	            opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, 
	            transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
	            padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	margin: 0;
	padding-bottom: 0;
}

.accordeon-item.active .text {
	opacity: 1;
	transform: translateY(0);
	margin-bottom: 30px;
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
	            opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
	            transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-wrapper {
	overflow: hidden;
}

.faq-right__content {
	background-color: #EBF3FF;
	border-radius: 50px;
	padding: 30px;
	margin-top: 309px;
	position: relative;
}

.faq-right__title {
	font-size: 28px;
	font-weight: bold;
	line-height: 110%;
	margin-bottom: 18px;
}

.faq-right__text {
	font-size: 14px;
	line-height: 120%;
	margin-bottom: 18px;
}

.faq-right__buttons {
	display: flex;
	justify-content: space-between;
	gap: 7px;
}

.faq-right__button {
	display: flex;
	align-items: center;
	border-radius: 100px;
	width: auto;
	min-width: 141px;
	height: 48px;
	justify-content: flex-start;
	gap: 7px;
	padding: 8px 16px 8px 6px;
}

.faq-right__button .icon {
	width: 36px;
	height: 36px;
	border-radius: 100%;
	align-items: center;
	justify-content: center;
	background-color: #ffffff1c;
	border: 1px solid white;
	min-width: 36px;

}

.faq-right__button .icon {
	flex-grow: none;
	flex-shrink: none;
}

.faq-right__button .text {
	color: white;
	font-size: 14px;
	font-weight: bold;
	line-height: 120%;
}

.faq-right__button.telegram {
	background-color: #29AAED;
}

.faq-right__button.vk {
	background-color: #2380FF;
}

.banner-faq__element-top {
	position: absolute;
	top: 0px;
	right: 0;
	z-index: -1;
}

/************************************************************************
*************************** License page********************************
*************************************************************************/
.license-page__header h1 {
	font-size: 60px;
	line-height: 56px;
	margin-top: 78px;
	margin-bottom: 25px;
}

.license-text {
	font-size: 20px;
	line-height: 140%;
	margin-bottom: 38px;
}

.row-licenses {
	display: flex;
	flex-wrap: nowrap;
	gap: 25px;
	margin-bottom: 78px;
}

.row-licenses__item {
	background-color: #EBF3FF;
	border-radius: 50px;
	padding: 26px 45px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.row-licenses__item img {
	width: 290px;
	height: auto;
	border-radius: 10px;
}

.linceses-left img,
.linceses-right .images {
	margin-bottom: 30px;
}

.row-licenses__item .text {
	font-size: 24px;
	font-weight: 500;
	line-height: 130%;
	text-align: center;
}

.linceses-right .images {
	display: flex;
	flex-wrap: nowrap;
	gap: 30px;
	justify-content: center;
}
/************************************************************************
*************************** Datails page********************************
*************************************************************************/
.details-page__header h1 {
	font-size: 60px;
	line-height: 87%;
	margin-top: 78px;
	margin-bottom: 50px;
}



.details-content {
	padding-bottom: 90px;
}

.details-content,
.details-content p,
.details-content strong,
.details-content li {
	font-size: 20px;
	line-height: 140%;
}

.details-content p,
.details-content li {
	margin-bottom: 22px;
}

img.footer-license {
	max-width: 150px;
	border-radius: 10px;
}

/* course-category-archive  */
.course-category-archive {
	padding-bottom: 150px;
}

.course-category-archive .category-header {
	margin-bottom: 50px;
}

.title-custom-area{
	max-height: 84px !important;
}