@charset "UTF-8";

@font-face {
    font-display: swap;
    font-family: "Play";
    src: local("Play"), url("../fonts/play-v17-latin_cyrillic-regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-display: swap;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Furore";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Furore.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Inter-Regular.woff") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/Inter-Bold.woff") format("woff2");
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    min-height: 100vh;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}

p {
    margin-bottom: 0;
}

a {
	color: #dcdcf0;
}

:root {
  --font-family: "Montserrat", sans-serif;
  --second-family: "Furore", sans-serif;
  --third-family: "Play", sans-serif;
  --font3: "Inter", sans-serif;

	--fon: #0a0019;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background-color: var(--fon);  
  background-image: url("../img/1t/bg/bg-left-top.png"), url("../img/1t/bg/bg-right-top.png"), url("../img/1t/bg/bg-left-top.png"), url("../img/1t/bg/bg-right-top.png"), url("../img/1t/bg/bg-left-internship.png");
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: left top, right 426px, left 1500px, right 1726px, left 3900px;
  color: var(--text);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #fff;
	height: 100vh;
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
	overflow-x: hidden;
}

.wrapper {
  height: 100vh;
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

main {
  flex: 1 1 auto;
}

.container {
  max-width: 1284px;
  padding: 0 30px;
  margin: 0 auto;
}

section {
  padding: 32px 0;
}

.title {
  font-family: var(--second-family);
	font-weight: 400;
	font-size: 48px;
	line-height: 125%;
	letter-spacing: 0.05em;
	text-align: center;
	color: #b4c8ff;
	margin-bottom: 16px;
}

.title span {
	display: block;
}

.subtitle {
	/* font-family: var(--font-family); */
	font-family: "Play", sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 133%;
	text-align: center;
	color: #dcdcf0;
	margin-bottom: 64px;
}

.button, .btn {
	display: inline-block;
	width: auto;
	backdrop-filter: blur(64px);
	/* box-shadow: 0 0 32px 0 rgba(240, 0, 250, 0.5), 0 0 16px 0 rgba(0, 25, 240, 0.5); */
	background: linear-gradient(90deg, #c800c8 0%, #9600ff 100%, #9600ff 100%);
	border-radius: 8px;
	padding: 8px 16px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: #dcdcf0;	
}

.button:hover, .btn:hover {
	background: linear-gradient(90deg, #9600ff 0%, #c800c8 100%, #c800c8 100%);
	cursor: pointer;
}

.header {
	padding-top: 35px;
	padding-bottom: 35px;
}

.header--scroll {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	padding: 10px 0;
	background: rgba(150, 0, 255, 0.1);
	backdrop-filter: blur(64px);
}

.header__row {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
}

.header--scroll .header__logo {
	max-width: 200px;
}
.header__logo img {
	display: block;
}
.header__menu {
	display: flex;
	align-items: center;
	gap: 40px;
	flex: 1 1 auto;
  justify-content: center;
	/* padding-right: 40px; */
}

.header__link:hover,
.header__link--active {
	color: #c800c8;
}

.header__burger {
	display: none;
}

.header__buttons {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header__btn:hover {
	cursor: pointer;
}
.promo {
}

.promo__container {
}
.promo__menu {
	display: flex;
	border-radius: 24px;
	padding: 8px;
	gap: 8px;
	background: rgba(140, 0, 240, 0.1);
	margin-bottom: 32px;
}
.promo__menu li {
	width: 296px;
	height: 64px;
	border-radius: 16px;
	padding: 16px 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Play", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	text-align: center;
	color: #dcdcf0;
}
.promo__menu li:hover,
.promo__menu li.tab_active {
	cursor:pointer;
	backdrop-filter: blur(64px);
	background: #7850f0;
}
.promo__menu li:last-child {
	color:  #50b4f0;
}
.promo__wrapper {
}
.promo .tab-content {
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
	display: none;
}
.promo .tab-content.visible {
	display: flex!important;
}
.promo__info {
	width: 600px;
  max-width: 600px;
}
#tab_03_content .promo__info {
	width: calc(50% - 24px);
  max-width: 50%;
}
.promo__title {
	font-family: "Furore", sans-serif;
	font-weight: 400;
	font-size: 48px;
	line-height: 133%;
	letter-spacing: 0.05em;
	color: #b4c8ff;
	margin-bottom: 16px;
}
.promo__subtitle {
	font-family: "Play", sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 125%;
	color: #dcdcf0;
}
.promo__item {
	border-radius: 32px;
	padding: 8px;
	backdrop-filter: blur(64px);
	background: rgba(140, 0, 240, 0.1);
	display: flex;
	flex-direction: column;
	gap: 0px;
	/* max-width: 392px; */
	max-width: 288px;
}
.promo__item--1 {
	max-width: 288px;
}
.promo__item--2 {
	max-width: 288px;
}
.promo__item--6 {
	max-width: 600px;
}
.promo__link {
	display: flex;
	flex-direction: column;
	gap: 0px;
}
.promo__images {
	border-radius: 24px;
}
.promo__images img {
	transition: height 0.5s ease-in-out;
	display: block;
	border-radius: 24px;
}
.promo__inf {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px;
}
.promo__prog {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	line-height: 133%;
	color: rgba(220, 220, 240, 0.6);
}
.promo__name {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	color: #dcdcf0;
	display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.promo__item--7:hover .promo__name {
	-webkit-line-clamp: inherit;
}
.promo__item--7:hover .promo__images {
	border-radius: 24px;
}
.promo__item--7:hover .promo__images img {
	width: 100%;
	object-fit: cover;
	height: 104px;
	border-radius: 24px;
	object-position: top;
}
#tab_04_content  {
	justify-content: end;
}
.courses-list {
	margin-top: -30px;
	padding-top: 0;
	padding-bottom: 141px;
}
.courses-list__container {
	text-align: center;
}
.courses-list__row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 40px;
}
.courses-list__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: start;
	text-align: left;
	flex: 0 0 281px;
	border: 1px solid rgba(220, 220, 240, 0.1);
	border-radius: 16px;
	padding: 16px 12px;
	min-height: 180px;
	backdrop-filter: blur(64px);
	background-color: rgba(255, 255, 255, 0.05);
	background: linear-gradient(292deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%);
	border: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	background-repeat: no-repeat;
	background-position: right bottom;
}
/* .courses-list__item::before {
	content: '';
	width: 224px;
	height: 197px;
	position: absolute;
	right: -24px;
	bottom: -24px;
} */
.courses-list__title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 26px;
	line-height: 124%;
	color: #dcdcf0;
	/* max-width: 170px; */
}
.number {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
	border-radius: 8px;
	padding: 8px 16px;
	min-width: 118px;
	height: 40px;	
}
.number::after {
	content: '';
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%23DCDCF0' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}

.courses-list__item--1 {
	background-image: url("../img/1t/courses/1.png"), linear-gradient(292deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%);
}
.courses-list__item--2 {
	background-image: url("../img/1t/courses/2.png"), linear-gradient(292deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%);
}
.courses-list__item--3 {
	background-image: url("../img/1t/courses/3.png"), linear-gradient(292deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%);
}
.courses-list__item--4 {
	background-image: url("../img/1t/courses/4.png"), linear-gradient(292deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%);
}
/* .courses-list__item--5 {
	flex: 0 0 392px;
} */
.courses-list__item--5 {
	background-image: url("../img/1t/courses/4.png"), linear-gradient(292deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%);
}
/* .courses-list__item--6 {
	flex: 0 0 392px;
} */
.courses-list__item--6 {
	background-image: url("../img/1t/courses/5.png"), linear-gradient(292deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%);
}
/* .courses-list__item--7 {
	flex: 0 0 392px;
} */
.courses-list__item--7 {
	background-image: url("../img/1t/courses/6.png");
}
.courses-list__btn,
.but-details,
.about-us__but,
.interesting__link,
.interesting__link-hide {
	padding: 8px 16px;
	position: relative;
	background: transparent;
	box-shadow: none;
	display: inline-block;
	color: #dcdcf0;
}
.interesting__link.invisible,
.interesting__link-hide.invisible {
  display: none;
}
.but-details {
	margin: 0 auto;
}
.courses-list__btn::before,
.but-details::before,
.about-us__but::before,
.interesting__link::before,
.interesting__link-hide::before {
	content: "";
	position: absolute;
	border-radius: 8px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border: 1px solid transparent;
  background: linear-gradient(90deg, #C600C9 0%, #9900FB 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);  
  mask-composite: add, add;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.courses-list__btn:hover,
.but-details:hover,
.about-us__but:hover,
.interesting__link:hover,
.interesting__link-hide:hover {
	/* background: transparent; */
	background: linear-gradient(90deg, #9600ff 0%, #c800c8 100%, #c800c8 100%);
	color: #dcdcf0;
	border-radius: 8px;
}
.courses-list__btn:hover::before,
.but-details:hover::before,
.about-us__but:hover::before,
.interesting__link:hover::before,
.interesting__link-hide:hover::before {
	background: linear-gradient(90deg, #9900FB 0%, #C600C9 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: add, add;
  mask-composite: add, add;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.about-us__but {
	box-shadow: inherit!important;
	font-family: var(--font-family)!important;
	font-size: 16px!important;
	padding: 8px 16px!important;
	max-width: 161px;
}
.interesting__link,
.interesting__link-hide {
	box-shadow: inherit!important;
	font-family: var(--font-family)!important;
	font-size: 16px!important;
	padding: 8px 16px!important;
	width: inherit!important;
	height: inherit;
	text-shadow: none;
	filter: none;
}
#category {
	align-items: center;
	flex-wrap: wrap;
}
#category li {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: #dcdcf0;
	border-radius: 8px;
	padding: 8px 16px;
}
#category .tab_active {
	border: 0!important;
  border-radius: 8px;
	padding: 8px 16px;	
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.4);
}
.choice-training {
	padding-top: 64px;
	padding-bottom: 32px;
}

.choice-training__container {
	text-align: center;
}

.choice-training__title {
	/* margin-bottom: 60px; */
}
.choice-training__sub {
	margin-bottom: 64px;
}
.choice-training__row {
	display: flex;
	flex-wrap: wrap;	
	gap: 24px;
	margin-bottom: 40px;
	text-align: left;
}
.choice-training__item {
	flex: 0 0 392px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: start;	
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
	border-radius: 32px;
	padding: 32px;	
	min-height: 320px;
}
.choice-training__item--1 {
	background-image: url("../img/1t/choice-training/1.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	background-repeat: no-repeat;
	background-position: right bottom;
}

.choice-training__information {
	max-width: 216px;
}
.choice-training__subtitle {
	font-family: Play, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	color: #dcdcf0;
	margin-bottom: 16px;
}
.choice-training__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #dcdcf0;
}

.choice-training__item--2 {
	flex: 1 1 808px;
	background-image: url("../img/1t/choice-training/2.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	background-repeat: no-repeat;
	background-position: right bottom;
}
.choice-training__item--3 {
	flex: 1 1 808px;
	background-image: url("../img/1t/choice-training/3.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	background-repeat: no-repeat;
	background-position: right bottom;
}
.choice-training__item--2 .choice-training__information {
	max-width: 352px;
}
.choice-training__item--3 .choice-training__information {
	max-width: 352px;
}
.choice-training__item--4 {
	background-image: url("../img/1t/choice-training/4.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	background-repeat: no-repeat;
	background-position: right bottom;
}

.choice-training__item--4 .choice-training__information {
	max-width: 216px;
}

.greetings {
	backdrop-filter: blur(64px);
	background: rgba(140, 0, 240, 0.1);
	padding-top: 64px;
	padding-bottom: 64px;
}
.greetings__container {
}
.greetings__title {
}
.greetings__subtitle {
}
.greetings__row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;	
	margin-bottom: 24px;
}
.greetings__item {
	border-radius: 32px;
	padding: 32px;
	backdrop-filter: blur(64px);
	background-color: rgba(140, 0, 240, 0.1);
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}
.greetings__item--1 {
	flex: 1 1 100%;	
	background: #50b4f0;
}
.greetings__item--1::before {
	content: "";
	width: 720px;
	height: 360px;
	background: url("../img/1t/greetings/img1.png") no-repeat right bottom;
	position: absolute;
	right: 0;
	bottom: 0;
}
.greetings__item--2 {
	flex: 1 1 808px;
	background-image: url("../img/1t/greetings/bg2.png");
	background-repeat: no-repeat;
	background-position: left top;
}
.greetings__item--2::before {
	content: "";
	width: 420px;
	height: 352px;
	background: url("../img/1t/greetings/img2.png") no-repeat right bottom;
	position: absolute;
	right: 32px;
	bottom: -16px;
}
.greetings__item--3 {
	flex: 1 1 392px;
	background-image: url("../img/1t/greetings/bg3.png"), url("../img/1t/greetings/bg3right.png");
	background-repeat: no-repeat, no-repeat;
	background-position: left top, right top 32px;
	max-width: 392px;
}
.greetings__item--4 {
	flex: 1 1 392px;
	background-image: url("../img/1t/greetings/bg4.png"), url("../img/1t/greetings/bg4right.png");
	background-repeat: no-repeat, no-repeat;
	background-position: left top, right top 30px;
	max-width: 392px;
}
.greetings__item--5 {
	flex: 1 1 808px;
	background-image: url("../img/1t/greetings/bg5.png");
	background-repeat: no-repeat;
	background-position: right top;
	
}
.greetings__item--5::before {
	content: "";
	width: 458px;
	height: 276px;
	background: url("../img/1t/greetings/img5.png") no-repeat right bottom;
	position: absolute;
	right: -32px;
	top: 29px;
}
.greetings__small-title {
	font-family: "Play", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	color: #dcdcf0;	
	border-bottom: 1px solid rgba(30, 30, 40, 0.2);
	padding-bottom: 16px;
	max-width: 564px;
}
.greetings__text {
	font-family: Montserrat, sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 140%;
	color: #dcdcf0;	
	max-width: 320px;
}
.greetings__item--1 .greetings__small-title {
	color: #1e1e28;
}
.greetings__item--1 .greetings__text {
	color: #1e1e28;
}
.greetings__item--2 .greetings__text {
	max-width: 203px;
}
.greetings__item--3 .greetings__text {
	max-width: 236px;
}
.greetings__item--4 .greetings__text {
	max-width: 309px;
}
.greetings__item--5 .greetings__text {
	max-width: 266px;
}
.advantages {
	border-radius: 32px;
	padding: 64px;
	backdrop-filter: blur(64px);
	background: rgba(140, 0, 240, 0.1);
	display: flex;
	align-items: center;
	gap: 40px;
}
.advantages__title {
	font-family: "Play", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	color: #dcdcf0;
}
.advantages__row {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;	
	gap: 16px;
}
.advantages__item {
	display: flex;
	gap: 16px;
}
.advantages__item:nth-child(2) {
	justify-content: end;
}
.advantages__text {
	border-radius: 16px;
	padding: 16px;
	backdrop-filter: blur(64px);
	font-family: Montserrat, sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 140%;
	color: #dcdcf0;
}
.advantages__text--color-pink {
	background: #f000f0;
}
.advantages__text--color-violet {
	background: #7850f0;
}
.advantages__text--color-blue {
	background: #0078f0;
}
.trust {
	padding-top: 32px;
	padding-bottom: 32px;
}

.trust__container {
}

.trust__title {
	margin-bottom: 64px;
}
.trust__row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.trust__item {
	border-radius: 32px;
	padding: 32px;
	max-width: 600px;
	min-height: 224px;
	backdrop-filter: blur(64px);
	background: rgba(140, 0, 240, 0.1);
}
.trust__nubmer {
	font-family: "Furore", sans-serif;
	font-weight: 400;
	font-size: 64px;
	line-height: 125%;
	letter-spacing: 0.05em;
	text-align: center;
	color: #50b4f0;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(220, 220, 240, 0.2);
	margin-bottom: 8px;
}
.trust__text {
	font-family: "Play", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	text-align: center;
	color: #dcdcf0;
}

.training {
}
.training__container {
}
.training__title {
	margin-bottom: 60px;
}
#platform-image {
	position: relative;
	border-radius: 32px;
	/* border: 1px solid rgba(220, 220, 240, 0.20); */
	backdrop-filter: blur(64px);
	background-color: rgba(150, 0, 255, 0.1);
	/* background-color: rgba(255, 255, 255, 0.05); */
	background-image: url("../img/1t/training/bgrow.avif");
	background-repeat: repeat, no-repeat;
	background-position: 0 0, right top;
	padding: 32px;
}
#platform-image.platform__image--personal-account {
	background-color: rgba(150, 0, 255, 0.1);
	background-image: url("../img/1t/training/image1.webp"), url("../img/1t/training/bgrow.png");
	background-repeat: no-repeat, no-repeat, repeat;
	background-position: right 50px bottom, right top, 0 0;
  background-size: auto 104%, auto auto;
}
#platform-image.platform__image--theory {
	background-color: rgba(150, 0, 255, 0.1);	
	background-image: url("../img/1t/training/image2.webp"), url("../img/1t/training/bgrow.png");
	background-repeat: no-repeat, no-repeat, repeat;
	background-position: right 50px bottom, right top, 0 0;
  background-size: auto 104%, auto auto;
}
#platform-image.platform__image--exercise-equipment {
	background-color: rgba(150, 0, 255, 0.1);
	background-image: url("../img/1t/training/image3.webp"), url("../img/1t/training/bgrow.png");
	background-repeat: no-repeat, no-repeat, repeat;
	background-position: right 50px bottom, right top, 0 0;
  background-size: auto 104%, auto auto;
}
#platform-image.platform__image--practice {
	background-color: rgba(150, 0, 255, 0.1);
	background-image: url("../img/1t/training/image4.webp"), url("../img/1t/training/bgrow.png");
	background-repeat: no-repeat, no-repeat, repeat;
	background-position: right 50px bottom, right top, 0 0;
  background-size: auto 104%, auto auto;
}
#platform-image.platform__image--support {
	background-color: rgba(150, 0, 255, 0.1);
	background-image: url("../img/1t/training/image5.webp"), url("../img/1t/training/bgrow.png");
	background-repeat: no-repeat, no-repeat, repeat;
	background-position: right 50px bottom, right top, 0 0;
  background-size: auto 104%, auto auto;
}
#platform-image.platform__image--certification {
	background-color: rgba(150, 0, 255, 0.1);
	background-image: url("../img/1t/training/image6.webp"), url("../img/1t/training/bgrow.png");
	background-repeat: no-repeat, no-repeat, repeat;
	background-position: right 50px bottom, right top, 0 0;
  background-size: auto 104%, auto auto;
}
#platform-image.platform__image--vacancies {
	background-color: rgba(150, 0, 255, 0.1);
	background-image: url("../img/1t/training/image7.webp"), url("../img/1t/training/bgrow.png");
	background-repeat: no-repeat, no-repeat, repeat;
	background-position: right 50px bottom, right top, 0 0;
  background-size: auto 104%, auto auto;
}
.training__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.training__li {
	display: flex;
	max-width: 420px;
	
	align-items: center;
		
}

.training__link {
	display: flex;
	align-items: center;
	gap: 16px;
	height: 68px;
	padding: 10px 20px;
	font-family: Play, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	color: #dcdcf0;

	transition: all 0.6s ease-out;
	margin-left: -20px;
	border-radius: 16px;
}
.training__link::before {
	content: "";
	width: 10px;
	height: 48px;
}

.training__link:hover,
.training__link--active {
	background: linear-gradient(90deg, rgba(200, 0, 200, 0.40) 0%, rgba(150, 0, 255, 0.00) 100%);
	cursor: pointer;
	padding: 10px;
	margin-left: 0;
}
.training__link:hover::before,
.training__link--active::before {
	content: "";
	width: 10px;
	height: 48px;
	background: url("../img/1t/training/bgli.png") no-repeat 0 0;	
}

.training__item {
	position: absolute;
	right: 32px;
	bottom: 32px;
	display: flex;
	max-width: 560px;
	padding: 16px;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	border-radius: 16px;	
	backdrop-filter: blur(64px);
	background: rgba(140, 0, 240, 0.4);
	/* background: rgba(150, 0, 255, 0.4); */
	display: none;
}
.training__item--personal-account.visible {
	display: flex;
}
.training__subtitle {
	font-family: Play, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	color: #dcdcf0;
	margin-bottom: 16px;
}
.training__text {
	color: #dcdcf0;
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%; 	
}
.training__item--theory.visible {
	display: flex;
}
.training__item--exercise-equipment.visible {
	display: flex;
}
.training__item--practice.visible {
	display: flex;
}
.training__item--support.visible {
	display: flex;
}
.training__item--certification.visible {
	display: flex;
}
.training__item--vacancies.visible {
	display: flex;
}

.free__container {
	text-align: center;
}

.free__row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 40px;
	text-align: left;
}
.free__item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 0 1 392px;
	min-height: 440px;
	/* border: 1px solid rgba(220, 220, 240, 0.2); */
	border-radius: 32px;
	padding: 32px;
	background: rgba(255, 255, 255, 0.05), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
}
.free__item--1 {
	background-image: url("../img/1t/free/1.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	background-repeat: no-repeat;
	background-position: right bottom;
}
.free__information {
	max-width: 237px;
}

.free__info {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: rgba(220, 220, 240, 0.8);
}

.free__name {
	font-family: Play, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	color: #fff;
	margin-bottom: 16px;
}
.free__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: rgba(220, 220, 240, 0.8);
}

.free__item--2 {
	background-image: url("../img/1t/free/2.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	background-repeat: no-repeat;
	background-position: right bottom;
}
.free__item--3 {
	background-image: url("../img/1t/free/3.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	background-repeat: no-repeat;
	background-position: right bottom;
}
.free__item--4 {
	flex: 0 1 600px;
	min-height: 320px;
	background-image: url("../img/1t/free/4.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	background-repeat: no-repeat;
	background-position: right bottom;
}
.free__item--5 {
	flex: 0 1 600px;
	min-height: 320px;
	background-image: url("../img/1t/free/5.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	background-repeat: no-repeat;
	background-position: right bottom;
}
.free__item--4 .free__information {
	max-width: 222px;
}

.free__link {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.accompaniment {
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
	border-radius: 40px;
	padding-top: 80px;
	padding-bottom: 80px;
}

.accompaniment__container {
	max-width: 100%;
	padding: 0;
}

.accompaniment__slider {
	margin-bottom: 40px;
}

.accompaniment__slider .slick-track {
	display: flex!important;
	align-items: center;
}

.accompaniment__slider .slick-slide > div {
	text-align: center;
}

.accompaniment__item {
	text-align: center;
	max-width: 392px;
	height: 400px;
	display: flex!important;
	flex-direction: column;
	justify-content: end;
	border: 1px solid rgba(220, 220, 240, 0.2);
	border-radius: 16px;
	padding: 24px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;	
	margin: 0 auto;
}
.accompaniment__slider .slick-current .accompaniment__item {
	height: 500px;
}
.accompaniment__item--1 {
	background-image: url("../img/1t/accompaniment/2.png");
}
.accompaniment__name {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 140%;
	text-align: center;
	color: #fff;
	margin-bottom: 8px;
}
.accompaniment__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: #fff;
}
.accompaniment__item--2 {
	background-image: url("../img/1t/accompaniment/3.png");
}
.accompaniment__item--3 {
	background-image: url("../img/1t/accompaniment/4.png");
}
.accompaniment__item--4 {
	background-image: url("../img/1t/accompaniment/5.png");
}
.accompaniment__item--5 {
	background-image: url("../img/1t/accompaniment/6.webp");
}
.accompaniment__item--6 {
	background-image: url("../img/1t/accompaniment/1.webp");
}
.accompaniment__arrow {
	display: flex;
	justify-content: center;
	gap: 24px;
}

.slick-arrow {
	/* border: 1px solid #f0f; */
	background: transparent;
	/* border-radius: 8px; */
	/* padding: 12px; */
	width: 24px;
	height: 24px;
	position: relative;
	z-index: 99;
}

.slick-arrow:hover {
	/* backdrop-filter: blur(64px); */
	/* box-shadow: 0 0 32px 0 rgba(240, 0, 250, 0.5), 0 0 16px 0 rgba(0, 25, 240, 0.5); */
	/* background: linear-gradient(90deg, #c800c8 0%, #9600ff 100%, #9600ff 100%); */
	/* border-color: transparent; */
}
.slick-dots {
	bottom: -53px;
}
.slick-dots li button {
	display: flex;
	align-items: center;
	justify-content: center;
}
.slick-dots li button:before {
	position: relative;
	font-size: 0;
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(220, 220, 240, 0.6);
	opacity: 1;
}

.slick-dots li.slick-active button:before {	
	background: #f0f;
	opacity: 1;
}

.internship {
	/* padding-top: 140px;
	padding-bottom: 136px; */
}

.internship__title {
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.internship__row {
	display: flex;
	gap: 24px;
	margin-bottom: 24px;
}
.internship__row--numbers {
	margin-bottom: 0;
}
.internship__item {
	flex: 0 1 392px;
	text-align: center;
}
.internship__information {
	min-height: 192px;
	/* border: 1px solid rgba(220, 220, 240, 0.2); */
	border-radius: 32px;
	padding: 32px;
	background: rgba(150, 0, 255, 0.1);
	/* margin-bottom: 70px; */
}
.internship__name {
	font-family: Play, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	text-align: center;
	text-align: center;
	color: #dcdcf0;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(220, 220, 240, 0.2);
	margin-bottom: 10px;
	padding-left: 35px;
	padding-right: 35px;
}
.internship__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: #dcdcf0;
}
.internship__numbers {
	text-align: left;
	display: flex;	
  flex-direction: column;
  /* align-items: center; */
	flex: 0 1 392px;	
	padding: 32px;
	gap: 8px;
}

.numbers:first-child {
	/* padding-left: 79px; */
}
.numbers:last-child {
	/* padding-left: 64px; */
}

.numbers__image {
	margin-bottom: 12px;		
}
.numbers__number {
	display: block;
	font-family: Furore, sans-serif;	
	font-weight: 400;
	font-size: 60px;
	line-height: 133%;
	letter-spacing: 0.05em;
	text-align: center;
	color: #46beff;
	border-bottom: 1px solid rgba(220, 220, 240, 0.2);
	padding-bottom: 8px;	
}
.numbers__text {
	font-family: Play, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	color: #dcdcf0;	
	text-align: center;
}

.projects {
	/* display: none; */
	padding: 32px 0;
}
.projects__container {
	max-width: 1222px;
}
.flipster__button {
	z-index: 99;
}
.projects .flipster {    
	padding-bottom: 90px;
}
.projects .flipster__button--next {
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%23DCDCF0' stroke-opacity='0.6' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
	right: calc(50% - 140px);
	bottom: 25px;
	opacity: 1;
}
.projects .flipster__button--prev {
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 18L9 12L15 6' stroke='%23DCDCF0' stroke-opacity='0.6' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
	left: calc(50% - 137px);
	bottom: 25px;
	opacity: 1;
}
.projects__button-all {
	text-align: center;
}
.button-projects,
.button_type_presentation {
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
	border-radius: 16px;
	padding: 16px 32px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: #dcdcf0;
	width: 184px;
}
.button-projects:hover {
  background: rgba(150, 0, 255, 0.1);    
}
.projects .flipster__nav {    
  bottom: -32px;
}
.projects .flipster__nav__item {    
  margin: 0 .35em;	
}
.projects .flipster__nav__link {
	border-radius: inherit;
	width: 11px;
}
.projects .flipster__nav__link::after {
  background: rgba(220, 220, 240, 0.6);
}
.projects__cover {
  border-radius: 32px;
}
.graduation {
	/* padding-top: 136px;
	padding-bottom: 136px; */
}

.graduation__container {
	max-width: 100%;
	padding: 0;
}
.graduation__title {
	max-width: 88%;
	margin-left: auto;
	margin-right: auto;
}
.subtitle {
}
.graduation__subtitle {
}
.graduation__slider {
}
.graduation__item {
	text-align: center;
}
.graduation__image {
	border-radius: 32px;	
	margin: 0 auto 24px;
	max-height: 200px;
}
.graduation__image:last-child {
	margin-bottom: 0;
}
.graduation__info {
	display: flex;
	justify-content: center;
	align-items: center;	
	border-radius: 32px;
	padding: 20px;
	width: 392px;
	height: 200px;
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);	
	max-width: 100%;
	margin: 0 auto 24px;
}
.graduation__info:last-child {
	/* height: 234px;	 */
	margin-bottom: 0;
}
.graduation__text {
	font-family: Play, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	text-align: center;
	color: #dcdcf0;
}
.graduation__inf {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 140px;
	text-align: center;	
}

.graduation__name {
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 24px;
	line-height: 140%;	
	color: #46beff;
	/* margin-bottom: 25px; */
}

.union {
}
.union__container {
}
.union__title {
	max-width: 809px;
	margin-left: auto;
	margin-right: auto;
}
.union__subtitle {
	/* max-width: 809px;
	margin-left: auto;
	margin-right: auto; */
}
.union__row {
	display: flex;
	align-items: center;
	align-content: center;
	gap: 24px;
	align-self: stretch;
	flex-wrap: wrap;
}
.union__item {
	display: flex;
  align-items: end;
	justify-content: center;
	width: 288px;
	height: 320px;
	aspect-ratio: 1/1;
	padding: 32px;	
	border-radius: 32px;
	/* border: 1px solid rgba(220, 220, 240, 0.20); */
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	backdrop-filter: blur(64px);
	/* transition: all 0.3s; */
	overflow: hidden;
}
.union__item:hover {
	/* background-size: 120%; */
	background-position: center -320px;
}
.union__item--image-1 {
	background-image: url("../img/1t/union/1-sz-big.webp");
}
.union__text {
	color: #FFF;
	font-family: Montserrat, sans-serif;
	font-size: 16px;	
	font-weight: 600;
	line-height: 140%; 
	text-align: center;
	overflow: hidden;
}
.union__text--small {
	font-weight: 400;
	visibility: hidden;
	display: none;
	transform: translateY(50px);
	transition: all 0.6s ease-in-out;
}
.union__item:hover .union__text--small {
	display: block;
	visibility: visible;
	transform: translateY(0);
	margin-top: 8px;
}
.union__item--image-2 {
	background-image: url("../img/1t/union/2-sz-big.webp");		
}

.union__item--image-3 {
	background-image: url("../img/1t/union/3-sz-big.webp");
}
.union__item--image-4 {
	background-image: url("../img/1t/union/4-sz-big.webp");
}

.union__item--image-5 {
	background-image: url("../img/1t/union/5-sz-big.webp");
}

.union__item--image-6 {
	background-image: url("../img/1t/union/6-sz-big.webp");
}
.union__item--image-7 {
	background-image: url("../img/1t/union/7-sz-big.webp");
}

.union__item--image-8 {
	background-image: url("../img/1t/union/8-sz-big.webp");
}

.events {
	/* padding-bottom: 136px; */
}
.events__container {
	/* max-width: 100%; */
	max-width: 1188px;
	padding: 0;
}
.events__title {
	padding-left: 30px;
	padding-right: 30px;
}
.events__subtitle {
	margin-bottom: 64px;
	padding-left: 30px;
	padding-right: 30px;
}

.events__row {
	max-width: 1225px;
	display: flex;
	justify-content: center;
	gap: 86px;
	margin: 0 auto 70px;	
	padding-left: 30px;
	padding-right: 30px;
}
.events__number {
	display: inline-flex;
	flex-direction: column;
	align-items: start;
}
.events__number:first-child {
	max-width: 240px;
}
.events__number:last-child {
	max-width: 190px;
}
.events__image {
	margin: 0 auto;
}
.events__iframe {
	margin: 0 auto;
	aspect-ratio: 1.77778;	
	border-radius: 32px;
}
.events__number .events__image {
	margin: 0;
}
.events__text {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 140%;
	color: #dcdcf0;
}
.events__slider {
	padding-bottom: 50px;
}
.events__slider .flipster__nav {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%)
}
.events__slider .flipster__nav__link {
	padding: 0;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0;
	transform: translateY(0);
	transition-timing-function: inherit;
}
.events__slider .flipster__nav__link::after {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	position: static;
	transform: inherit;
	background: rgba(220, 220, 240, 0.6);
}
.events__slider .flipster__nav__item--current>.flipster__nav__link::after, 
.events__slider .flipster__nav__link:focus::after, 
.events__slider .flipster__nav__link:hover::after {
	background: #f0f;
}
.events__slider .flipster__button--prev,
.events__slider .flipster__button--next {
	top: inherit;
	bottom: 27px;
	width: 24px;
	height: 24px;
	opacity: 1;
}
.events__slider .flipster__button--prev svg,
.events__slider .flipster__button--next svg {
	display: none;
}
.events__slider .flipster__button--prev {
	left: 50%;
	transform: translateX(-140px);
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 18L9 12L15 6' stroke='%23DCDCF0' stroke-opacity='0.6' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center center;
}
.events__slider .flipster__button--next {
	right: 50%;
	transform: translateX(140px);
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%23DCDCF0' stroke-opacity='0.6' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center center;
}
.events__item {
	text-align: center;
}
.events__arrows {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
}

.education {
	/* padding-bottom: 136px; */
}

.education__title {
	/* margin-bottom: 40px; */
}

.education__subtitle {
	/* margin-bottom: 40px; */
}

.education__row {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.education__item {
	/* border: 1px solid rgba(220, 220, 240, 0.2); */
	border-radius: 32px;
	padding: 32px;
	flex: 0 1 600px;
	height: 194px;
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
	text-align: center;
}
.education__number {	
	font-family: Furore, sans-serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 133%;
	letter-spacing: 0.05em;
	text-align: center;
	color: #46beff;
	margin-bottom: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(220, 220, 240, 0.2);
}
.education__image {
	margin-bottom: 24px;
}
.education__text {
	font-family: Play, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	text-align: center;
	color: #dcdcf0;
}

.awards {
	padding-bottom: 64px;
}

.awards__container {
	/* max-width: 100%; */
	padding: 0;
}

.awards__title {
	margin-bottom: 64px;
}
.awards__wrapper {
	display: flex;
	gap: 24px;
}
.awards__info {
	flex: 1 1 auto;
}
.awards .tab-content {
	margin-bottom: 64px;
	text-align: center;
	position: relative;
	display: none;
}
.awards .tab-content.visible {
	display: flex;
}
.awards__foto {
	border-radius: 32px;
	padding: 32px;
	backdrop-filter: blur(64px);
	background: rgba(140, 0, 240, 0.1);
	margin-bottom: 32px;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.awards__image {		
	/* border-radius: 32px; */
	margin: 0 auto;
	display: block;
	max-width: 900px;	
	object-fit: cover;
	max-height: 512px;
	
}
#tab_1_content .awards__foto {
	padding: 0;
}
#tab_1_content .awards__image {
	max-height: 600px;
	width: 100%;
	height: 600px;
	border-radius: 32px;
}
.awards__name {		
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: #dcdcf0;
}
.awards__slider {
	order: 2;
	display: flex;
	flex-direction: column;
	gap: 16px;	
	height: 680px;
	max-width: 402px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(140, 0, 240, 0.6) #0a0019;
}
.awards__slider::-webkit-scrollbar-track {
  background: #0a0019;
}
.awards__slider::-webkit-scrollbar-thumb {
	background-color: rgba(140, 0, 240, 0.6);    /* цвет плашки */
  border-radius: 20px;
}
/* .awards__slider .slick-slide > div {
	padding: 0 12px;
} */
.awards__item,
.awards__slider li {
	display: flex!important;
	align-items: center;
	gap: 16px;
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
	border-radius: 32px;
	padding: 16px;
}
.awards__item:hover,
.awards__item.tab_active,
.awards__slider li.tab_active {
	backdrop-filter: blur(64px);
	background: #7850f0;
}
.awards__images {
	border-radius: 16px;
	background: rgba(140, 0, 240, 0.2);	
}
.awards__item:hover .awards__images {
	background: #915ff0;
}
.awards__img {
	min-width: 120px;
}
.awards__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #dcdcf0;
	max-width: 256px;
	-webkit-line-clamp: 5; 
	display: -webkit-box; 
	-webkit-box-orient: vertical; 
	overflow: hidden;
}
.awards__arrows {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	width: 210px;
	margin: 0 auto;
}

.unification {
	padding-top: 64px;
	padding-bottom: 64px;	
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
}
.unification__subtitle {
	max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.unification__row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.unification__item {
	display: flex;
	align-items: center;
	gap: 32px;	
	border-radius: 32px;
	padding: 32px;
	flex: 0 1 600px;
	height: 184px;
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
}

.unification__images {
	flex-basis: 240px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.unification__icon--1 {
	min-width: 92px;
}
.unification__icon--2 {
	min-width: 200px;
}
.unification__icon--3 {
	min-width: 90px;
}
.unification__icon--4 {
	min-width: 168px;
}
.unification__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #dcdcf0;
	max-width: 264px;
}
.unification__text span {
	white-space: nowrap;
}

.stories {
	padding-top: 32px;
	padding-bottom: 32px;
}
.stories__title {
	margin-bottom: 64px;
	justify-content: center;
}
.stories__slider {
	margin-bottom: 40px;
}
.stories__slider .slick-slide > div {
	padding: 0 12px;
}
.stories-list {
	scrollbar-color: rgba(150, 0, 255, 0.2) transparent;
}
.stories-list__item {
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
	border: 0;
	border-radius: 16px;
	padding: 16px;
}
.stories-list__item:hover {
  background: rgba(255, 0, 255, 0.2);
}
.stories-list__item_active {	
	background: rgba(255, 0, 255, 0.2);
}
.stories-list__name {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	line-height: 133%;
	color: rgba(220, 220, 240, 0.6);
}
.stories-list__subtitle {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	color: #dcdcf0;
}
.stories__player {
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
	border: 0;
	border-radius: 16px;
	padding: 32px;
}
.audio-player__name {
	font-family: Play, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	text-align: center;
	color: #dcdcf0;
	margin-bottom: 32px;
}
.stories__chat {
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
	border: 0;
	border-radius: 16px;
	padding: 32px 10px 0 32px;
}
.chat__title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	color: #dcdcf0;
	padding: 0 0 16px 0;
	border-bottom: 1px solid rgba(220, 220, 240, 0.2);
	margin-bottom: 16px;
}
.chat__list {
	gap: 16px;
	scrollbar-color: rgba(150, 0, 255, 0.2) transparent;
}
.chat__message {
	padding: 0 10px 0 0;
	gap: 16px;
}
.message__info {
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
	border-radius: 16px;
	padding: 16px;
}
.message__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	line-height: 133%;
	color: #dcdcf0;
}
.stories__item {
	border: 1px solid rgba(220, 220, 240, 0.2);
	border-radius: 16px;
	padding: 16px;
	background: linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%), rgba(255, 255, 255, 0.05);
}
.answer .message__info {
	border-radius: 16px;
	backdrop-filter: blur(64px);
	background: rgba(255, 0, 255, 0.2);
}
.stories__img {
	border-radius: 8px;
	margin-bottom: 16px;
}
.stories__text {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 140%;
	color: #dcdcf0;
}
.stories__arrows {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
}
.about-us {
	padding-top: 64px!important;
	padding-bottom: 32px!important;
}
.about-us__card {
	backdrop-filter: blur(64px)!important;
	background: rgba(150, 0, 255, 0.1)!important;	
	border-radius: 32px!important;
	padding: 32px!important;
}
.about-us .slick-next {
	position: absolute;
	bottom: -57px;
	top: inherit;
	right: calc(50% - 80px);
	opacity: 1;
}
.about-us .slick-prev {
	position: absolute;
	bottom: -57px;
	top: inherit;
	left: calc(50% - 80px);
	opacity: 1;
}
.about-us .slick-prev::before {
	content: '';
	font-size: 0;
	display: block;
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 18L9 12L15 6' stroke='%23DCDCF0' stroke-opacity='0.6' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}
.about-us .slick-next::before {
	content: '';
	font-size: 0;
	display: block;
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%23DCDCF0' stroke-opacity='0.6' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}
.card-info__images {
	backdrop-filter: blur(64px)!important;
	background: rgba(150, 0, 255, 0.4)!important;
	
}
.card-info__message {
	display: -webkit-box!important;
  -webkit-line-clamp: 5!important;
  -webkit-box-orient: vertical!important;
	margin-bottom: 5px;
}
.interesting {
	padding: 64px 0 32px;
}
.interesting__item {
	border-radius: 32px;
}
.interesting__info {
	padding: 16px;
}
.interesting__item.main_news .interesting__info {
  padding: 32px;
}
.interesting__subtitle {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #dcdcf0;
	border-radius: 16px;
	padding: 16px;
	bottom: 16px;
	margin: 0 16px;
}
.interesting__item.main_news .interesting__subtitle {
  margin-left: 32px;
  margin-right: 32px;
  bottom: 32px;
	font-family: Play, sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 133%;
	color: #dcdcf0;
	width: calc(100% - 64px);
	padding: 32px;
}
.category {
	border-radius: 16px;
	padding: 8px 16px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	line-height: 133%;
	color: #dcdcf0;
}
.main_news .category, .interesting__item:first-child.main_news .category {
	border-radius: 16px;
	padding: 16px 32px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #dcdcf0;
}


.interesting__images img {
	border-radius: 32px;
}
.feedback {
	padding-left: 30px;
	padding-right: 30px;
}
.feedback__container {
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
	border-radius: 32px;
	padding: 32px;
}
.feedback__title {
	/* text-align: left; */
	margin-bottom: 32px;
}
.feedback__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #dcdcf0;
	margin-bottom: 32px;
	text-align: center;
}
.form__row {
	display: flex;
	gap: 16px;
	/* flex-wrap: wrap; */
	align-items: stretch;
	margin-bottom: 32px;
}
.form__item {
	position: relative;
	flex: 1 1 25%;
}
.form__input {
	width: 100%;	
	border: 1px solid rgba(150, 0, 255, 0.4);
	border-radius: 16px;
	padding: 6px 16px;
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #dcdcf0;
}
.request_forms_modal {
	background-color: rgba(0, 0, 0, 0.8);
}
.form__label {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: rgba(220, 220, 240, 0.4);
	position: absolute;
	left: 20px;
	top: 18px;
	transition: 0.3s;
  pointer-events: none;
}
.modal .form__label {
	width: 100%;
  left: 0;
	top: 0;	
}
.request_forms_modal .form {
	gap: 0;
}
.form__input:focus, .form__input:valid {
  padding-top: 24px;
	padding-bottom: 6px;
}
.form__input:focus + .form__label, .form__input:valid + .form__label {
  top: 8px;
  left: 20px;  
	font-size: 12px;
	line-height: 133%;
	color: rgba(220, 220, 240, 0.4);
}
.form__button {
	flex: 1 1 25%;
}
.form__btn {
	width: 278px;
	border-radius: 16px;
	height: 56px;
	box-shadow: inherit;
}
.form__checkbox-wrap {
	flex: 1 1 100%;
	position: relative;
	display: flex;
	justify-content: center;
	position: relative;
}
.form__checkbox {
	position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form__label--checkbox {
	display: flex;
  align-items: center;
  gap: 10px;
}

.form__checkbox-wrap label::before {
  content: "";
  min-width: 24px;
  height: 24px;
  display: block;
  background: url("../img/1t/checkbox.png") no-repeat 0 0;
  border: 0;
}

.form__checkbox:checked + label::before {
  background: url("../img/1t/checkbox-checked.png") no-repeat 0 0;
}

.support {
	background: url("../img/1t/bgsupport.png") no-repeat center center;
	padding-top: 258px;
	padding-bottom: 297px;
}

.support__container {
	text-align: center;
}
.support__title {
	max-width: 600px;
	margin: 0 auto 25px;
}

.footer {
	padding-top: 64px;
	padding-bottom: 64px;
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
}

.footer__row {
	display: flex;
	justify-content: space-between;
	gap: 24px;
}
.footer__item {
	/* flex-basis: 392px; */
	flex: 1 1 33%;
}
.footer__logo {
	margin-bottom: 32px;
}
.footer__location {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__contacts-item {  
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #F0EFF4;
  background-repeat: no-repeat;
  background-position: left center;
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__contacts-item svg path {
    stroke: #fff;
}
.footer__text {
	margin-bottom: 16px;
}
.footer__link svg {
	display: block;
}
.footer__link--svg {
	color: #B4C8FF;
}
.footer__link:hover {
	color: #c800c8;
}
.footer__link--phone {
	white-space: nowrap;
}
.footer__icons {
	display: flex;
	gap: 20px;	
}
.footer__title {
	font-family: Play, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	color: #dcdcf0;
	margin-bottom: 32px;
}
.footer__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-right: 24px;
}

@media(max-width: 1283px) {
	.header__menu {
		gap: 20px;	
		display: none;
	}
	.promo__logos {
		width: 100%;
	}
	.promo__logo {
		flex: 1 1 22%;
		width: auto;

	}
	.courses-list__row {
		justify-content: space-between;
	}
	.courses-list__item {
		flex: 0 1 23%;
	}
	.courses-list__item--5,
	.courses-list__item--6,
	.courses-list__item--7 {
		/* flex: 0 1 31%; */
	}
	.choice-training__row {
		justify-content: center;
	}
	.choice-training__item {
		flex: 0 1 39%;
	}
	.choice-training__item--2,
	.choice-training__item--3 {
		flex: 1 1 58%;
	}	
	.free__item {
		flex: 1 1 30%;
	}
	.graduation__info {
		min-width: 456px;
		height: 200px;
		/* width: 224px;	
		height: 234px;	
		padding: 16px; */
	}
	.graduation__text {
		/* font-size: 16px; */
	}
	.graduation__image {
		/* width: 224px;
		height: 237px; */
		min-width: 456px;
		height: 200px;
		object-fit: cover;
	}
	.graduation__image--big {
		/* width: 272px;
		height: 300px; */
		object-fit: cover;
	}
	.graduation__name {
		/* font-size: 20px; */
	}
	.graduation__inf {
		/* height: 127px; */
	}
	.events__row {
		flex-wrap: wrap;
		max-width: 954px;
	}
	.events__image {
		/* margin: 0; */
	}
	.events__number:first-child {
		flex: 1 1 387px;
		max-width: 387px;
	}
	.events__number:first-child .events__text {
		max-width: 240px;
	}
	.events__number:nth-child(2) {
		width: 190px;
	}
	.education__item {
		flex: 1 1 45%;
		min-height: 194px;
		height: auto;
	}
	.awards__row {
		padding-left: 30px;
		padding-right: 30px;
	}
	.unification__item {
		flex: 1 1 45%;
	}
	.form__item {
		width: 26%;
	}
	.form__input {
		width: 100%;
	}

	.promo__item {
		max-width: 23%;
	}
	.promo__item--6 {
    max-width: calc(50% - 12px);
	}
}
@media(max-width: 1200px) {
	.promo .tab-content {
		justify-content: center;
	}
	#tab_04_content {
    justify-content: center;
	}
	.promo__item {
		max-width: 33%;
	}
	.promo__item--6 {
    max-width: calc(50% - 12px);
  }
}
@media(max-width: 1187px) {
	.form__item {
		width: 25%;
	}
	
}
@media(max-width: 1162px) {
	.stories-list {
    min-width: 328px;
	}
}
@media(max-width: 1143px) {
	.promo__item--6 .promo__name {
		-webkit-line-clamp: inherit;
	}
}
@media(max-width: 1080px) {
	.courses-list__item {
		flex: 0 1 48%;
	}
}
@media(max-width: 1061px) {
	.form__item {
		width: 24%;
	}
	.union__row {
		justify-content: center;
	}
	#platform-image {
		background-size: 90%, cover, cover;
	}
	.training__link {
		font-size: 18px;
	}
	.training__item {
		left: inherit;
		right: 20px;
		bottom: inherit;
		top: 20px;
		max-width: 400px;
	}
	
	.details {
  	position: relative;
  	display: block;    
  	border-radius: 4px;
  	transition: 0.3s;
  	overflow: hidden;
		margin-bottom: 8px;
	}

	.details::after {
		position: absolute;
		right: 24px;
		top: 21px;
		content: "";
		display: block;
		width: 14px;
		height: 14px;
		border-right: 2px solid #DCDCF0;
		border-bottom: 2px solid #DCDCF0;
		transform: rotate(45deg);
		transform-origin: center;
		transition: .3s;
	}

	.details[open]::after {
		transform: rotate(225deg);
	}

	.details[open] {
		padding-bottom: 60px;
	}

	.details[open] .details__title {
		margin-bottom: 8px;
	}

	.details__title {
		cursor: pointer;
		list-style: none;  
		transition: .3s;
	}

	.details__title::-webkit-details-marker {
		display: none;
	}

	.details__content {
		margin-bottom: -60px;
	}

	.details__content p:last-child {
		margin-bottom: 0;
	}
	.details__content p:first-child {
		margin-top: 0;
	}
	
	
}
@media(max-width: 1012px) {
	body {
		background-image: url("../img/1t/bg/bg-left-top.png"), url("../img/1t/bg/bg-right-top.png"), url("../img/1t/bg/bg-left-top.png"), url("../img/1t/bg/bg-right-top.png"), url("../img/1t/bg/bg-left-internship.png"), url("../img/1t/bg/bgbot.png");
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: left top, right 426px, left 1500px, right 1726px, left 3900px, center bottom 260px;
	}
	
	.header {
		padding-top: 24px;
		padding-bottom: 35px;
	}
	.header--scroll {
		padding: 10px 0;
	}
	.header__buttons {
		position: absolute;
		right: 106px;
	}
	.header__menu {
		display: none;
		background: #221b3f;
    padding: 48px 20px 64px 32px;
    position: fixed;
    right: -100%;
    top: 0;
    width: 40%;
    z-index: 999;
    min-height: 689px;
    height: 100vh;
    transition: all 0.6s ease;
		align-items: start;		
	}
	.header__menu--visible {
    right: 0;
    display: flex;
    flex-direction: column;
  }
	.header__burger {
		display: flex;
		width: 20px;
		height: 15px;
		position: relative;
		transition: all 0.3s;
	}
	.header__burger.open {
		z-index: 999;
		transition: all 0.3s;
	}
	.header__burger:hover {
		cursor: pointer;
	}
	.header__burger::before {
		content: "";
		width: 20px;
		height: 1px;
		background: #fff;
		position: absolute;
		left: 0;
		top: 0;
		transition: all 0.3s;
	}
	.header__burger::after {
		content: "";
		width: 20px;
		height: 1px;
		background: #fff;
		position: absolute;
		left: 0;
		bottom: 0;
		transition: all 0.3s;
	}
	.header__burger span {
		display: block;
		width: 20px;
		height: 1px;
		background: #fff;
		position: absolute;
		left: 0;
		top: calc(50% - 0.5px);
	}
	.header__burger.open::before {
		transform: rotate(45deg);
		top: 10px;
	}
	.header__burger.open::after {
		transform: rotate(-45deg);
		bottom: 9px;
	}
	.header__burger.open span {
		display: none;
	}
	.header__link {
		font-size: 24px;
	}
	.promo__menu li {
		font-size: 18px;
		padding: 16px 8px;
	}
	.courses {
		padding-bottom: 70px;
	}
	.courses-list__row {
		justify-content: center;
	}
	.courses-list__item {
		flex: 0 1 48%;
	}
	/* .choice-training {
		padding-bottom: 70px;
	} */
	.choice-training__item {
		flex: 1 1 100%;
		min-height: 280px;
	}
	.choice-training__item--1 {
		background-image: url("../img/1t/choice-training/1-mob.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	}
	.choice-training__item--2 {
		background-image: url("../img/1t/choice-training/2-mob.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	}
	.choice-training__item--3 {
		background-image: url("../img/1t/choice-training/3-mob.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	}
	.choice-training__item--4 {
		background-image: url("../img/1t/choice-training/4-mob.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	}
	.choice-training__item--4 .choice-training__information {
		max-width: 420px;
	}
	.free .slick-slide > div {
		padding: 0 20px;		
	}
	.free__container {
		padding-left: 0;
		padding-right: 0;
	}
	.free__title {
		padding-left: 16px;
		padding-right: 16px;
	}
	.free__item {
		flex: 0 1 420px; 
		display: flex!important;		
		position: relative;
	}
	.free__item--4 {
		min-height: 440px;
		background-image: url("../img/1t/free/4-mob.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	}
	.free__item--5 {
		min-height: 440px;
		background-image: url("../img/1t/free/5-mob.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
	}
	.free__info {
		position: absolute;
		bottom: 24px;
	}	
	.accompaniment__item {		
		max-width: 296px;
		height: 340px;
	}
	.accompaniment__slider .slick-current .accompaniment__item {
		height: 400px;
	}
	.internship__row {
		flex-direction: column;
	}
	.internship__information {
		min-height: inherit;
	}
	.internship__row--numbers {		
		justify-content: space-between;
	}
	.internship__item {
		flex: 0 1 auto;
	}
	.internship__numbers {
		flex: 1 1 100%;
	}
	
	.numbers__image {
		height: 54px;
	}
	.events__number .events__image {
		height: 54px;
	}
	.events__number:first-child {    
    max-width: 290px;
  }
	.education__row {
		flex-direction: column;
	}
	.education__item {
		text-align: center;
	}
	.awards__title {
		margin-bottom: 60px;
	}
	
	.awards__image {
		height: 600px;
		object-fit: cover;
	}
	.unification {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.unification__item {
		flex-direction: column;
		height: auto;
		justify-content: space-between;
	}
	.unification__text {
		order: -1;
		text-align: center;
	}
	.support {
		background: url("../img/1t/bgsupport-mob.png") no-repeat center center;
		padding-top: 164px;
		padding-bottom: 200px;
	}
	.form__row {
		flex-wrap: wrap;
	}
	.form__item {		
		flex: 1 1 47%;
	}
	.form__button {
		flex: 1 1 47%;
	}
	.projects__title h2 {
		text-align: center;
		padding-right: 0;	
	}
	
}
@media(max-width: 963px) {
	.form {
		flex-direction: column;
	}
	.form__item {
		width: 100%;
	}
	.form__btn {
		width: 100%;
	}
	
}
@media (max-width: 900px) {
	.interesting {
    padding: 32px 0 32px;
	}
    .interesting__row {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(2, 1fr);
				grid-auto-rows: minmax(210px, 1fr);				
    }
		.interesting__item {
			border-radius: 32px;
		}
		.interesting__info,
		.interesting__item.main_news .interesting__info {
			padding: 16px;
		}
		.category,
		.main_news .category, .interesting__item:first-child.main_news .category {
    	border-radius: 16px;
			font-family: var(--font-family);
			font-weight: 400;
			font-size: 12px;
			line-height: 133%;
			color: #dcdcf0;
		}
		.interesting__subtitle,
		.interesting__item.main_news .interesting__subtitle {
			margin: 0 16px;
			font-family: var(--font-family);
			font-weight: 400;
			font-size: 16px;
			line-height: 150%;
			color: #dcdcf0;
			border-radius: 16px;
			padding: 16px;
			backdrop-filter: blur(64px);
			background: rgba(70, 20, 110, 0.8);
		}
		.interesting__item.main_news .interesting__subtitle {
    	margin-left: 16px;
    	margin-right: 16px;
		}
		.interesting__images img,
		.interesting__item.main_news .interesting__image {
      height: 420px;
		}
		.interesting__item.main_news,
		.interesting__item:first-child, .interesting__item:nth-child(5), .interesting__item:nth-child(7), .interesting__item:nth-child(11), .interesting__item:nth-child(13), .interesting__item:nth-child(17), .interesting__item:nth-child(19) {
        grid-column: span 1;
        grid-row: span 1;
    }
		.interesting__item:first-child .interesting__image, .interesting__item:nth-child(5) .interesting__image, .interesting__item:nth-child(7) .interesting__image, .interesting__item:nth-child(11) .interesting__image, .interesting__item:nth-child(13) .interesting__image, .interesting__item:nth-child(17) .interesting__image, .interesting__item:nth-child(19) .interesting__image {
      height: 420px;
    }	
		.interesting__item:first-child .interesting__subtitle h3, .interesting__item:nth-child(5) .interesting__subtitle h3, .interesting__item:nth-child(7) .interesting__subtitle h3, .interesting__item:nth-child(11) .interesting__subtitle h3, .interesting__item:nth-child(13) .interesting__subtitle h3, .interesting__item:nth-child(17) .interesting__subtitle h3, .interesting__item:nth-child(19) .interesting__subtitle h3 {
        font-family: var(--font-family);
				font-weight: 400;
				font-size: 16px;
				line-height: 150%;
				color: #dcdcf0;
    }
		.interesting__item:nth-child(8) .interesting__image, .interesting__item:nth-child(18) .interesting__image, .interesting__item:nth-child(21) .interesting__image {
        height: 420px;
    }
}
@media(max-width: 768px) {
	body {
		background-image: url("../img/1t/bg/bg-left-top.png"), url("../img/1t/bg/bg-right-top.png"), url("../img/1t/bg/bg-left-top.png"), url("../img/1t/bg/bg-right-top.png"), url("../img/1t/bg/bg-left-internship.png"), url("../img/1t/bg/bgbot.png");
		background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
		background-position: left top, right 426px, left 1500px, right 1726px, left 3900px, center bottom 660px;
	}
	
	.choice-training__item .choice-training__information {
		max-width: 380px;
	}
	.courses-list__item {
    flex: 0 1 47%;
  }	

	.numbers__image {
		margin-left: auto;
		margin-right: auto;
	}
	
	.events .slick-slide > div {
		padding: 0 30px;
	}
	.events__iframe {		
		aspect-ratio: 1.77778;
		width: 100%;
		height: auto;
		min-width: 520px;
	}
	.education__item {
		min-height: 174px;
		padding: 16px;
	}
	.education__image {
		height: 58px;
		width: auto;
	}	
	.footer {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.footer__row {
		flex-direction: column;
		gap: 40px;
	}
	
	.footer__text {
		margin-bottom: 12px;
	}
	.footer__title {
		margin-bottom: 20px;
	}
	.footer__list {
		gap: 12px;
	}	
	.training {
		display: none;
	}
	#platform-image {
		padding: 40px 20px;
	}
	.training__item {
		max-width: 300px;
	}
	
	.button {
		padding: 8px 16px;
	}
	.trust__nubmer {
		font-size: 24px;
		line-height: 133%;
	}
	.trust__item {
		min-height: auto;
	}
	.trust__text {
		font-family: Montserrat, sans-serif;
		font-weight: 400;
		font-size: 16px;
		line-height: 150%;
	}
}
@media(max-width: 659px) {
	.union__container {
		padding-left: 0;
		padding-right: 0;
	}
	.union .slick-slide > div {
		padding: 0 12px 24px;
		text-align: center;
	}
	.union .slick-arrow {
		display: none!important;
	}
	.union__item { 
		min-width: 255px;
		max-width: 255px;
		height: 275px;
		object-fit: cover;
		margin: 0 auto;		
	}
	.union__item:hover {
		background-position: center -283px;
	}
	.union__text {
		display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: end;
	}
}
@media(max-width: 626px) {
	.title,
	.interesting__title h2 {		
		font-size: 32px;
	}
	.subtitle {
		font-family: var(--font-family);
		font-size: 16px;
		line-height: 150%;
	}
	/* section {
    padding-top: 50px;
    padding-bottom: 50px;
  } */
	.container {
		padding-left: 16px;
		padding-right: 16px;
	}
	.union__container {
    padding-left: 0;
    padding-right: 0;
  }
	.graduation__container {
		padding-left: 0;
		padding-right: 0;
	}
	.header {
		padding-top: 20px;
		padding-bottom: 32px;
	}
	.header--scroll {
    padding-top: 10px;
    padding-bottom: 10px;
  }
	.header__logo img {
		height: 34px;
	}
	.header__buttons {
		display: none;
	}
	.header__menu {
		width: 100%;
		align-items: center;
	}
	
	.courses-list__row {
		flex-direction: column;
	}
	.courses-list__item::before {
		right: 0;
	}
	.choice-training__item {
		max-width: 328px;
		justify-content: start;
		gap: 24px;
	}
	.choice-training__item--1 {
		background-image: url("../img/1t/choice-training/1-mob-600.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
		padding-bottom: 154px;
	}
	.choice-training__item--2 {
		background-image: url("../img/1t/choice-training/2-mob-600.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
		padding-bottom: 224px;
	}
	.choice-training__item--3 {
		background-image: url("../img/1t/choice-training/3-mob-600.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
		padding-bottom: 172px;
	}
	.choice-training__item--4 {
		background-image: url("../img/1t/choice-training/4-mob-600.png"), linear-gradient(315deg, rgba(160, 100, 255, 0.2) 0%, rgba(10, 0, 25, 0.2) 100%);
		padding-bottom: 182px;
	}
	
	.free__container {
    padding-left: 0;
    padding-right: 0;
  }
	.free .slick-slide > div {
    padding: 0 12px;
  }
	.free__info {
		bottom: inherit;
	}
	.free__information {
		min-width: 248px;
		padding-top: 32px;
	}
	.accompaniment__name {		
		font-size: 20px;
	}
	.internship__information {
		padding: 16px;
	}
	.internship__name {
		font-size: 20px;
	}
	.internship__text {
		font-size: 12px;
		line-height: 133%;
	}
	.numbers__number {
		font-size: 48px;
		line-height: 125%;
	}
	.numbers__text {
		font-family: var(--font-family);
		font-weight: 600;
		font-size: 16px;
		line-height: 150%;
		text-align: center;
		color: #dcdcf0;
	}
	.events__container {
		padding-left: 0;
		padding-right: 0;
	}
	.events__row {
		flex-direction: column;
		gap: 32px;
		padding-left: 0;
		padding-right: 0;
	}
	.events__iframe {
		min-width: 350px;
	}
	.events .slick-slide > div {
    padding: 0;
  }
	.events__number,
	.events__number:first-child {
    flex: 1 1 auto;
  }
	.education {
    padding-bottom: 50px;
  }
	.education__subtitle {
		font-size: 16px;
		font-weight: 400;
	}
	.education__number {
		font-size: 48px;
		line-height: 125%;
	}
	.education__text {
		font-size: 16px;
		line-height: 150%;
	}
	.awards {
		padding-bottom: 100px;
	}
	.awards__title {
		margin-bottom: 32px;
	} 
	.awards__row {
		padding: 0;
	}
	.awards__image {
		height: 440px;
	}
	.awards__name {
		font-family: var(--font-family);
		font-weight: 400;
		font-size: 16px;
		line-height: 150%;
		text-align: center;
		color: #dcdcf0;
		width: calc(100% - 32px);
	}
	.awards__item {
		justify-content: center;
	}
	.unification__subtitle {
		font-size: 16px;
		font-weight: 400;
	}
	.stories {
		padding-top: 100px;
		padding-bottom: 50px;
	}
	.stories__subtitle {
		margin-bottom: 40px;
	}
	.stories .slick-slide > div {
		text-align: center;
	}
	.stories__item {
		max-width: 392px;
		margin: 0 auto;
		text-align: left;
	}
	.feedback__container {
		padding: 24px;
	}
	.feedback__text {
		font-size: 16px;
		font-weight: 400;
		margin-bottom: 24px;
	}
	.support {
		background: url("../img/1t/bgsupport-mob600.png") no-repeat center center;
		padding-top: 135px;
		padding-bottom: 100px;
		margin-bottom: 75px;
	}

	.internship__row--numbers {
		flex-direction: column;
	}
	.internship__numbers {
    /* align-items: center; */
		padding: 16px;
  }
	.form__item {		
		flex: 1 1 100%;
	}
	.form__button {
		flex: 1 1 100%;
	}
	.free__item {
		padding: 16px;
		border-radius: 16px;
	}	
}
@media(max-width: 500px) {
	.graduation__image {
		min-width: 280px;
		max-width: 280px;
		height: 200px;
	}
	.graduation__info {
    min-width: 280px;
    max-width: 280px;
    height: 200px;
  }
	
	.union__title {
		padding-left: 16px;
		padding-right: 16px;
	}
	.union__subtitle {
		padding-left: 16px;
		padding-right: 16px;
	}
	.unification__title {
		font-size: 24px;
		line-height: 133%;
	}
}
@media(max-width: 450px) {
	
}
@media(max-width: 361px) {
	
}
.courses {
	padding: 70px 0;
}
.title {
}
.courses__title {
	color: #B4C8FF;
	font-family: Furore, sans-serif;
	font-size: 48px;
	text-align: left;
	font-weight: 400;
	line-height: 135%;
	letter-spacing: 2.4px;
	margin-bottom: 60px;
	max-width: 100%;
}
.courses__row {
	display: flex;
	gap: 24px;
}
.courses__filters {
	flex: 0 0 392px;
	position: relative;
}
.filters__clear {
	position: absolute;
	right: 0;
	top: 5px;
	color: var(--White-80, rgba(220, 220, 240, 0.80));
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	cursor: pointer;
} 
.filters__clear--invisible {
	display: none;
}
.show-filter {
	display: none;
	border-radius: 16px;
	padding: 16px;
	width: 56px;
	height: 56px;
	backdrop-filter: blur(64px);
	background-color: rgba(150, 0, 255, 0.4);
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='20' viewBox='0 0 22 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 2.6C1 2.03995 1 1.75992 1.10899 1.54601C1.20487 1.35785 1.35785 1.20487 1.54601 1.10899C1.75992 1 2.03995 1 2.6 1H19.4C19.9601 1 20.2401 1 20.454 1.10899C20.6422 1.20487 20.7951 1.35785 20.891 1.54601C21 1.75992 21 2.03995 21 2.6V3.26939C21 3.53819 21 3.67259 20.9672 3.79756C20.938 3.90831 20.8901 4.01323 20.8255 4.10776C20.7526 4.21443 20.651 4.30245 20.4479 4.4785L14.0521 10.0215C13.849 10.1975 13.7474 10.2856 13.6745 10.3922C13.6099 10.4868 13.562 10.5917 13.5328 10.7024C13.5 10.8274 13.5 10.9618 13.5 11.2306V16.4584C13.5 16.6539 13.5 16.7517 13.4685 16.8363C13.4406 16.911 13.3953 16.9779 13.3363 17.0315C13.2695 17.0922 13.1787 17.1285 12.9971 17.2012L9.59711 18.5612C9.22957 18.7082 9.0458 18.7817 8.89827 18.751C8.76927 18.7242 8.65605 18.6476 8.58325 18.5377C8.5 18.4122 8.5 18.2142 8.5 17.8184V11.2306C8.5 10.9618 8.5 10.8274 8.46715 10.7024C8.43805 10.5917 8.39014 10.4868 8.32551 10.3922C8.25258 10.2856 8.15102 10.1975 7.94789 10.0215L1.55211 4.4785C1.34898 4.30245 1.24742 4.21443 1.17449 4.10776C1.10986 4.01323 1.06195 3.90831 1.03285 3.79756C1 3.67259 1 3.53819 1 3.26939V2.6Z' stroke='%23DCDCF0' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
	background-position: center center;
	background-repeat: no-repeat;
}
.filters__title {
	font-family: Play, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	color: #dcdcf0;
	margin-bottom: 32px;
}
.filters__input {
	width: 100%;
	padding: 12px 16px 12px 48px;
	align-items: center;
	gap: 8px;
	align-self: stretch;
	border-radius: 8px;
	background-color:  rgba(180, 200, 255, 0.20);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 21L16.66 16.66M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z' stroke='%23DCDCF0' stroke-opacity='0.4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 16px center;	
	color: rgba(220, 220, 240, 0.6);
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 152%;
	margin-bottom: 40px;
}
.filters__input::placeholder {
	opacity: 1;
	color: rgba(220, 220, 240, 0.6);
}
.filters__name {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 8L12 16L20 8' stroke='%23DCDCF0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right center;
	color: #DCDCF0;
	font-family: Montserrat, sans-serif;
	font-size: 16px;	
	font-weight: 600;
	line-height: 150%;
	margin-bottom: 42px;
	display: block;
	cursor: pointer;
}
.filters__name--open {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 16L12 8L4 16' stroke='%23DCDCF0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	margin-bottom: 25px;
}
.filters__row {
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
	display: none;
}
.filters__row:last-child {
	margin-bottom: 0;
}
.filters__row--visible {
	display: flex;
}
.filters__item {
	display: flex;
	align-items: center;
	gap: 12px;
	align-self: stretch;
	
}
.filters__checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
}
.filters__label {
	color: #DCDCF0;
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	position: relative;
  display: flex;
  align-items: start;
  gap: 12px;
}
.filters__label::before {
  content: "";
  display: block;
  min-width: 24px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Crect x='0.5' y='0.5' width='23' height='23' rx='3.5' stroke='%23DCDCF0' stroke-opacity='0.6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center center;
}
.filters__checkbox:checked + label::before {
	background-color: #f0f; 
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17L4 12' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 4px;
}
.filters__label b {
	color: rgba(220, 220, 240, 0.6);
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}
.courses__list {
	flex: 1 1 auto;
}
.list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.list__quantity {
	color: rgba(220, 220, 240, 0.6);
	text-align: right;
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%; 
	margin: 4px 0;
}
.list__help {
}
.help {
	display: flex;
	padding: 32px;
	justify-content: space-between;
	align-items: center;
	border-radius: 32px;
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.2);
}
.help__information {
}
.help__title {
	color: #DCDCF0;
	font-family: Play, sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 133%; 
	margin-bottom: 16px;
}
.help__text {
	line-height: 150%;
	color: #dcdcf0;
}
.button {
}
.help__button:hover {
	cursor: pointer;
}
.course {
	display: flex;
	padding: 32px;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	border-radius: 32px;
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
	position: relative;
}
.course__information {
	display: flex;
	flex: 1 1 100%;
	gap: 16px;
	width: 100%;
}
.course__image {
	min-width: 119px;
	height: 119px;
	object-fit: cover;
	border-radius: 16px;
}
.course__info {
	display: flex;
	flex-direction: column;
	flex: 1 1 100%;
}
.course__top {
	display: flex;
	flex: 1 1 100%;
	justify-content: space-between;
	gap: 20px;
}
.course__title {
	color:  #DCDCF0;
	font-family: Play, sans-serif;
	font-size: 24px;	
	font-weight: 600;
	line-height: 133%;
	margin-bottom: 8px; 
}
.course__inf {
	color: rgba(220, 220, 240, 0.6);
	font-family: Montserrat, sans-serif;
	font-size: 16px;	
	font-weight: 400;
	line-height: 150%;
	margin-bottom: 16px; 
	display: flex;
  align-items: center;
  gap: 8px;
}
.course__price {
}
.course__free {
	display: flex;
	font-family: Play, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	color: #dcdcf0;
	justify-content: center;
	align-items: center;
	/* gap: 10px;
	border-radius: 100px;
	border: 1px solid rgba(220, 220, 240, 0.20);
	color: #FFF;
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;  */
}
.course__cost {
	font-family: Play, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 133%;
	color: #dcdcf0; 
	text-align: right;
	white-space: nowrap;
}
.course__cost--old {	
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	text-decoration: line-through;
	color: rgba(220, 220, 240, 0.6);
}
.course__cost--old span {
	text-decoration-line: none;
}
.course__tags {
}
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.tags__li {
	display: flex;
	padding: 8px 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	backdrop-filter: blur(64px);
	background: rgba(150, 0, 255, 0.1);
	color: #dcdcf0;
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%; 
}
.tags__li--invisible {
	display: none;
}
.tags__li--quantity {
	cursor: pointer;
}
.course__wrap-text {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}
.course__text {
	overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.course__text--visible {
	-webkit-line-clamp: inherit;
}
.course__buttons {
	display: flex;	
	width: 100%;
	align-items: center;
	justify-content: end;
	gap: 8px;
}
.course__buttons .register_button {
	min-width: 200px;
  border-radius: 8px;
  padding: 8px 16px;      
  backdrop-filter: blur(64px);
  background: linear-gradient(90deg, #c800c8 0%, #9600ff 100%, #9600ff 100%);	
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #dcdcf0;
	cursor: pointer;
}
.course__buttons .register_button:hover {
	background: linear-gradient(90deg, #9600ff 0%, #c800c8 100%, #c800c8 100%);	
}
.course__button {
	display: block;
	display: flex;
	padding: 8px 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 200px;	
	color: var(--White, #DCDCF0);
	text-align: center;
	border-radius: 8px;	
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%; 
	position: relative;
}
.course__button::before {
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  border: 1px solid transparent;
  background: linear-gradient(90deg, #C600C9 0%, #9900FB 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: add, add;
  mask-composite: add, add;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.course__button:hover::before {
	background: linear-gradient(90deg, #9900FB 0%, #C600C9 100%) border-box;
}
.show_modal {
	cursor: pointer;
}
.course__details {
	min-width: 20px;
	height: 20px;
	display: block;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M3.3335 6.66669L10.0002 13.3334L16.6668 6.66669' stroke='%23DCDCF0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
}
.course__details--open {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M16.6668 13.3334L10.0002 6.66669L3.3335 13.3334' stroke='%23DCDCF0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.discount {
	position: absolute;
	left: 12px;
	top: 12px;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52' fill='none'%3E%3Cpath d='M25.3162 0.64068C25.7009 0.280302 26.2991 0.280301 26.6838 0.64068L30.4627 4.1816C30.726 4.42827 31.1017 4.51402 31.4459 4.406L36.387 2.85537C36.8898 2.69756 37.4289 2.95715 37.619 3.44871L39.4874 8.2786C39.6176 8.61506 39.9189 8.85534 40.2759 8.90736L45.4004 9.65414C45.922 9.73015 46.295 10.1979 46.253 10.7233L45.8408 15.8855C45.812 16.2452 45.9793 16.5924 46.2783 16.7941L50.5714 19.6904C51.0083 19.9852 51.1414 20.5685 50.8757 21.0236L48.2644 25.4958C48.0825 25.8073 48.0825 26.1927 48.2644 26.5042L50.8757 30.9764C51.1414 31.4315 51.0083 32.0148 50.5714 32.3096L46.2783 35.2059C45.9793 35.4076 45.812 35.7548 45.8408 36.1145L46.253 41.2767C46.295 41.8021 45.922 42.2699 45.4004 42.3459L40.2759 43.0926C39.9189 43.1447 39.6176 43.3849 39.4874 43.7214L37.619 48.5513C37.4289 49.0429 36.8898 49.3024 36.387 49.1446L31.4459 47.594C31.1017 47.486 30.726 47.5717 30.4627 47.8184L26.6838 51.3593C26.2991 51.7197 25.7009 51.7197 25.3162 51.3593L21.5373 47.8184C21.274 47.5717 20.8983 47.486 20.5541 47.594L15.613 49.1446C15.1102 49.3024 14.5711 49.0429 14.381 48.5513L12.5126 43.7214C12.3824 43.3849 12.0811 43.1447 11.7241 43.0926L6.5996 42.3459C6.07804 42.2699 5.70502 41.8021 5.74697 41.2767L6.15923 36.1145C6.18795 35.7548 6.02074 35.4076 5.72168 35.2059L1.42864 32.3096C0.991714 32.0148 0.858582 31.4315 1.12434 30.9764L3.73558 26.5042C3.91749 26.1927 3.91749 25.8073 3.73558 25.4958L1.12434 21.0236C0.858582 20.5685 0.991714 19.9852 1.42864 19.6904L5.72168 16.7941C6.02074 16.5924 6.18795 16.2452 6.15923 15.8855L5.74697 10.7233C5.70502 10.1979 6.07804 9.73015 6.5996 9.65414L11.7241 8.90736C12.0811 8.85534 12.3824 8.61506 12.5126 8.2786L14.381 3.44871C14.5711 2.95715 15.1102 2.69756 15.613 2.85537L20.5541 4.406C20.8983 4.51402 21.274 4.42827 21.5373 4.1816L25.3162 0.64068Z' fill='%23FF7800'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center center;
	color:  #FFF;
	font-family: Montserrat;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%;
}

@media(max-width: 1030px) {
	.courses__row {
		flex-wrap: wrap;
		justify-content: center;
		position: relative;
	}
	.show-filter {
		display: flex;
		position: absolute;
		right: 0;
		top: -121px;
		cursor: pointer;
	}
	.filters {
		display: none;
		position: absolute;
		top: -50px;
		right: 0;
		border-radius: 32px;
		padding: 32px;
		width: 400px;
		background: #310059;
	}
	.filters.visible {
		display: block;
		z-index: 999;
	}
	.filters__clear {    
    right: 32px;
    top: 37px;
	}
	.greetings__row {
		justify-content: center;
	}
}
@media(max-width: 900px) {
	.advantages {
		flex-direction: column;
	}
	.advantages__title {
		text-align: center;
	}
	.advantages__title br {
		display: none;
	}
	.greetings__item--1::before,
	.greetings__item--5::before,
	.greetings__item--2::before {
		display: none;
	}
}
@media(max-width: 768px) {
	.help {
		flex-direction: column;
		gap: 20px;
		justify-content: center;
		text-align: center;
	}
	.course__information {
		flex-direction: column;
	}
	.advantages__item {
		flex-direction: column;
	}
	.promo__item {
		max-width: 288px;
	}
	.greetings__item {
		flex: 1 1 392px;
		max-width: 392px;
	}
}
@media(max-width: 626px) {
	.courses {
		padding: 32px 0;
	}
	.courses__title {
		font-size: 32px;
		line-height: 125%;
	}
	.show-filter {
		border-radius: 8px;
		padding: 8px;
		width: 40px;
		height: 40px;
		top: -100px;
	}
	.promo__title {
		font-size: 32px;
	}
}
@media(max-width: 420px) {
	.courses__filters {
		flex: 1 1 100%;
		width: 100%;
	}
}

.about-us__title {
	margin-bottom: 64px;	
}
.about-us__slider .slick-dots {
	bottom: -45px;
}
.about-us__slider .slick-dots li button::before {
	font-size: 6px!important;
}
.stories__title .title,
.interesting__title h2 {
	color: #b4c8ff;
}

.modal-bid,
.modal-success,
.modal-information {
	display: none;
	-webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: fixed;
  inset: 0;
	z-index: 999;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  overflow-x: hidden;
  overflow-y: auto;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
.modal-bid.visible,
.modal-success.visible,
.modal-information.visible {
	display: flex!important;
}
.visible {
}
.modal-new__container {	
	display: flex;
	max-width: 600px;
	width: 100%;
	padding: 40px;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	flex-shrink: 0;
	border-radius: 16px;
	background: rgba(150, 0, 255, 0.20);
	
	backdrop-filter: blur(32px);
	height: auto;
	margin: auto;
}
.modal-new__head {
	display: flex;
	gap: 20px;
	align-items: start;
	width: 100%;
	justify-content: space-between;
}
.modal-success .modal-new__head {
	justify-content: space-between;
	width: 100%;
}
.modal-new__title {
	color: #DCDCF0;
	font-family: Montserrat, sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%; 
	margin-bottom: 0;
}
.modal-success .modal-new__title {
	margin-bottom: 20px;
}
.modal__close,
.modal-new__close,
.modal-success__close {
	cursor: pointer;
}
.modal-success .modal-new__text {
	height: auto;
}
.bid {
}
.bid__row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;	
}
.bid__item {
	position: relative;
	width: 100%;
}
.bid__item:nth-child(3) {
	margin-bottom: 40px;
}
.bid__input {	
	display: flex;
	width: 100%;
	padding: 18px 20px;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 8px;
	background:  rgba(150, 0, 255, 0.20);
	color: rgba(220, 220, 240, 0.60);
  border: 1px solid transparent;
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; 
}
.bid__checkbox-wrap {
	margin-bottom: 40px;
	flex: 1 1 100%;
  position: relative;
}
.bid__checkbox {	
	position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bid__label--checkbox {
	display: flex;
  align-items: start;	
  gap: 12px;
	color:  #DCDCF0;

	font-family: Montserrat, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; 
}
.bid__checkbox-wrap label::before {
  content: "";
  min-width: 24px;
  height: 24px;
  display: block;
  background: url(../img/1t/checkbox.png) no-repeat 0 0;
  border: 0;
}
.bid__checkbox:checked + label::before {
    background: url(../img/1t/checkbox-checked2.png) no-repeat 0 0;
}
.bid__btn {
	width: 100%;
	display: flex;
	padding: 16px 40px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 10px;
	background: linear-gradient(90deg, #C800C8 0%, #9600FF 100%, #9600FF 100%);

	box-shadow: 0 0 16px 0 rgba(0, 25, 240, 0.50), 0 0 32px 0 rgba(240, 0, 250, 0.50);
	backdrop-filter: blur(32px);
}
.bid__input.is-invalid{
	border: 1px solid #f0f;
}
.error-message{	
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  color: #f0f;
}
.form__checkbox-wrap .error-message {
	position: absolute;
	/* left: 50%;
	transform: translateX(-50%); */
	bottom: -20px;
}
@media(max-width: 768px) {
	.modal__title {    
    font-size: 18px;
	}
	.modal__container {
		gap: 20px;
	}
	.bid__item:nth-child(3) {
    margin-bottom: 20px;
	}
	
	.bid__checkbox-wrap {
		margin-bottom: 20px;
	}
}

.modal--registration,
.modal--information {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.5s ease;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
	background: rgba(10, 0, 25, 0.7);
}
.modal--registration.visible,
.modal--information.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition: all 0.5s ease;
  display: flex !important;
}
.modal__item--no-marg:nth-child(3) {
	margin-bottom: 0;
}
.modal__item--select {
	margin-bottom: 40px;
	width: 100%;
}
.modal__label--select {
	display: block;
	margin-bottom: 5px;	
}
.modal__select {
	width: 100%;
  color: rgba(220, 220, 240, 0.60);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
	backdrop-filter: blur(40px);
  background: rgba(0, 0, 0, 0.25);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-image: none;
    background-size: auto;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 16px 24px;
    padding-right: 24px;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 143%;
}
.modal__select:not([multiple]) {
  padding-right: 1.2em;
  background-repeat: no-repeat;
  background-position: calc(100% - 1em) 1.55em;
  background-size: 0.85em auto;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='14' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.36982 7.835L13.7998 1.205C14.2008 0.79 13.9578 0 13.4298 0H0.569821C0.0418214 0 -0.201179 0.79 0.199821 1.205L6.62982 7.835C6.84282 8.055 7.15682 8.055 7.36982 7.835Z' fill='%23a5b9f3' /%3E%3C/svg%3E");
}
.modal__select option {
  color: rgb(81, 60, 130);
}