button {
  margin: 0;
  padding: 0;
  outline: none;
  cursor: pointer;
  border: none;
  background: none;
}
button.btn {
  --bg:#6A31F6;
  --color:#FFF;
}
button.btn--default {
  display: inline-flex;
  padding: 14px 20px;
  align-items: center;
  border-radius: 16px;
  background: var(--bg);
  gap: 8px;
  color: var(--color);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  transition: all 0.2s ease-in-out;
}
button.btn--default:hover {
  --bg: #290d6c;
}
button.btn--default:disabled, button.btn--default.disabled {
  --bg: #F1F5F9;
  --color:#CAD5E2;
  cursor: none;
  pointer-events: none;
}

.textEditableBlock {
  word-break: break-all;
  padding: 16px 46px 16px 20px;
  field-sizing: content;
  width: 100%;
  height: fit-content;
  resize: none;
  font-size: inherit;
  font-family: inherit;
  outline: none;
  border: none;
  left: 0;
  top: 0;
  overflow: hidden;
  border-radius: 16px;
}

header.header {
  width: 100%;
  height: 90px;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  z-index: 999;
}
header.header .navbar {
  max-width: 1600px;
  padding: 0 40px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1000px) {
  header.header .navbar__buttonWrapper {
    display: none;
  }
}
@media only screen and (min-width: 1001px) {
  header.header .navbar__buttonWrapper {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #5C1FE2;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.14px;
  }
  header.header .navbar__buttonWrapper__content {
    max-width: 200px;
  }
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-inline: 15px;
  gap: 10px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 1000px) {
  .main {
    padding-inline: 14px;
  }
}
.main__section {
  display: flex;
  max-width: 1760px;
  width: 100%;
  margin: 0 auto;
}
.main__title {
  width: 100%;
  max-width: 1760px;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1001px) {
  .main__title {
    padding-inline: 25px;
  }
}
@media only screen and (max-width: 1000px) {
  .main__title {
    padding-inline: 12px;
  }
}
.main__title__wrapper {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: #1E2939;
  font-style: normal;
  line-height: normal;
}
@media only screen and (min-width: 1001px) {
  .main__title__wrapper {
    padding-block: 125px 16px;
    font-size: 48px;
    font-weight: 500;
    border-bottom: 1px solid #D9D4FF;
  }
  .main__title__wrapper .animateSvg {
    margin-bottom: -20px;
  }
}
@media only screen and (max-width: 1000px) {
  .main__title__wrapper {
    flex-direction: column-reverse;
    font-size: 36px;
    font-weight: 400;
    align-items: center;
  }
  .main__title__wrapper span {
    border-top: 1px solid #D9D4FF;
  }
}

@media only screen and (min-width: 1001px) {
  .hideD {
    display: none !important;
  }
}

:root {
  --animationSme1: headNod 5s ease-in-out infinite alternate;
  --animationSme2: translate 5s ease-in-out infinite alternate;
}

@keyframes headNod {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: translateX(15px) rotate(-8deg); /* Nod down */
  }
  100% {
    transform: rotate(0deg); /* Return to original position */
  }
}
@keyframes translate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(15deg) translateX(-10px) translateY(10px);
    transform-origin: center right;
    opacity: 0.1;
  }
  100% {
    transform: rotate(0deg);
  }
}
.requestBlock {
  display: flex;
  min-height: 161px;
  padding: 24px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 24px;
  background: #F1F5F9;
}
@media only screen and (min-width: 1001px) {
  .requestBlock {
    gap: 20px;
  }
}
@media only screen and (max-width: 1000px) {
  .requestBlock {
    flex-direction: column;
    align-items: flex-start;
    padding: 18.5px 20px 24px;
    gap: 14.5px;
  }
}
.requestBlock__title {
  color: #101828;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (min-width: 1001px) {
  .requestBlock__title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1000px) {
  .requestBlock__title {
    font-size: 24px;
  }
}
.requestBlock__content {
  display: flex;
  max-width: 796px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 24px;
  background: #FFF;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
  color: #1D293D;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.18px;
}

.curricula {
  width: 100%;
  border-radius: var(--radius-2xl, 16px);
  background: var(--color-slate-900, #0F172B);
}
@media only screen and (min-width: 1001px) {
  .curricula {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    padding: 26px;
  }
}
@media only screen and (max-width: 1000px) {
  .curricula {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
}
.curricula .blockTitle {
  --color: #F1F5F9;
}
@media only screen and (max-width: 1000px) {
  .curricula .blockTitle {
    padding: 16px 20px;
    margin-top: 0;
  }
}
.curricula__block {
  --bg: #1D293D;
  --titleColor: #90A1B9;
  --contentColor: #F1F5F9;
  background-color: var(--bg);
  flex-direction: column;
}
@media only screen and (min-width: 1001px) {
  .curricula__block {
    border-radius: 24px;
    padding: 28px;
    align-items: flex-start;
    gap: 14px;
  }
}
@media only screen and (max-width: 1000px) {
  .curricula__block {
    padding: 14px 20px;
    align-items: flex-start;
    gap: 14px;
  }
}
.curricula__block-first {
  --bg:#6A31F6;
  --titleColor: #F1F5F9;
  --contentColor: #F1F5F9;
}
.curricula__block-second {
  --bg:#314158;
}
.curricula__block__title {
  color: var(--titleColor);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.curricula__block__content {
  color: var(--contentColor);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.16px;
}

.blockTitle {
  --color:#1E2939;
  --border-color:transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.blockTitle:has(.chevron.close) ~ * {
  display: none;
}
.blockTitle.active {
  --border-color:#D1D5DC;
}
@media only screen and (max-width: 1000px) {
  .blockTitle {
    margin-top: 32px;
    border-radius: 16px;
    width: 100%;
  }
}
.blockTitle__text {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--color);
}
@media only screen and (min-width: 1001px) {
  .blockTitle__text {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1000px) {
  .blockTitle__text {
    font-size: 24px;
  }
}
.blockTitle__icon {
  line-height: 0;
}
@media only screen and (min-width: 1001px) {
  .blockTitle__nav {
    display: none;
  }
}
.blockTitle__nav .chevron {
  transition: all 0.2s ease-in-out;
}
.blockTitle__nav .chevron.close {
  transform: rotate(-90deg);
}

.materials {
  width: 100%;
}
@media only screen and (min-width: 1001px) {
  .materials {
    display: grid;
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 1000px) {
  .materials {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}
@media only screen and (min-width: 1001px) {
  .materials-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1001px) {
  .materials-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.materials__wrapper {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1001px) {
  .materials__wrapper {
    width: 100%;
    padding: 40px 24px;
    align-items: flex-start;
    border-radius: 24px;
    border: 1px solid #D1D5DC;
    background: #FFF;
  }
}
.materials__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  width: 100%;
}
.materials__list--order {
  counter-reset: my-counter;
}
.materials__list--order li {
  counter-increment: my-counter; /* Increments the counter for each li */
}
.materials__list--order .materials__list__content::before {
  content: counter(my-counter) ". "; /* Displays the counter value and a period */
}
@media only screen and (min-width: 1001px) {
  .materials__list {
    gap: 4px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1000px) {
  .materials__list {
    gap: 6px;
    margin-top: 24px;
  }
}
.materials__list__item {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #D1D5DC;
  background: #FFF;
  transition: border 0.2s ease-in-out;
  word-break: break-all;
  min-height: 53px;
  color: #1E2939;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0;
}
.materials__list__item:has(.textEditableBlock) {
  border: 1px solid #BCB1FF;
  background: #F4F2FF;
}
.materials__list__content {
  display: flex;
  gap: 4px;
  padding: 16px 46px 16px 20px;
  width: 100%;
  height: 100%;
  cursor: alias;
  word-break: break-all;
}
.materials__list__menu {
  cursor: pointer;
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  display: flex;
  align-items: flex-start;
  color: #D1D5DC;
}
.materials__list__menu .menu-btn {
  padding: 16px 10px;
}
.materials__button {
  display: flex;
  padding: 16px 20px;
  align-items: center;
  gap: var(--spacing-2, 8px);
  align-self: stretch;
  color: #6A31F6;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
}
@media only screen and (min-width: 1001px) {
  .materials__button {
    margin-top: 4px;
  }
}
@media only screen and (max-width: 1000px) {
  .materials__button {
    margin-top: 6px;
  }
}
.materials__notify {
  display: none;
  margin-top: 12px;
  color: var(--color-red-800, #9F0712);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 171.429% */
}
.materials__notify.show {
  display: block;
}

.materials__list__menu {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  z-index: 20;
  top: 12px;
  right: 24px;
  width: 234px;
  padding: var(--spacing-3-5, 14px);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-3-5, 14px);
  border-radius: 12px;
  border: 1px solid var(--Primary-Color-100, #EAE8FF);
  background: var(--color-white, #FFF);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}

.dropdown.show {
  display: flex;
}

.dropdown button {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 4px 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--spacing-3, 12px);
  align-self: stretch;
}

.dropdown button:disabled {
  color: #aaa;
  cursor: not-allowed;
}

.teachers {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  align-self: stretch;
  border-radius: 24px;
  background: #F5F5F4;
}
@media only screen and (max-width: 1000px) {
  .teachers .blockTitle {
    margin-top: 0;
  }
}
.teachers--vertical {
  flex-direction: column;
}
@media only screen and (min-width: 1001px) {
  .teachers {
    padding: var(--spacing-10, 40px) var(--spacing-6, 24px);
  }
}
@media only screen and (max-width: 1000px) {
  .teachers {
    padding: 20px;
    flex-direction: column;
    align-self: stretch;
  }
}
.teachers__wrapper {
  gap: 10px;
  display: flex;
  flex: 1;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 1000px) {
  .teachers__wrapper {
    flex-direction: column;
  }
}
.teachers__wrapper--vertical {
  flex-direction: column;
}
.teachers__block--default {
  display: flex;
  padding: 16px 20px;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  background: #FFF;
  height: 100%;
}
.teachers__block--default .teachers__content {
  color: #1E2939;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0;
}
.teachers__block--first {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}
.teachers__block--first .teachers__content {
  color: #292524;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.16px;
}
@media only screen and (min-width: 1001px) {
  .teachers__block--first {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--color-stone-400, #A6A09B);
    gap: 14px;
  }
}
@media only screen and (max-width: 1000px) {
  .teachers__block--first {
    gap: 4px;
    padding-block: 24px;
    border-top: 1px solid #D9D4FF;
  }
}
.teachers__title {
  color: #57534D;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.guide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 24px;
  background: #FFF7ED;
}
.guide .blockTitle {
  margin-top: 0;
}
@media only screen and (min-width: 1001px) {
  .guide {
    padding: 40px 24px;
  }
}
@media only screen and (max-width: 1000px) {
  .guide {
    padding: 20px;
  }
}
@media only screen and (max-width: 1000px) {
  .guide--hints {
    padding: 0;
  }
  .guide--hints .blockTitle {
    padding: 16px 20px;
  }
}
.guide__info {
  display: flex;
  padding: 16px 20px;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #D1D5DC;
  background: #FFF;
  color: #1E2939;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}
.guide__wrapper {
  width: 100%;
  height: fit-content;
}
@media only screen and (min-width: 1001px) {
  .guide__wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1000px) {
  .guide__wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
}
.guide__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFEDD4;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1001px) {
  .guide__block {
    padding: 28px;
    gap: 16px;
    border-radius: 24px;
  }
}
@media only screen and (max-width: 1000px) {
  .guide__block {
    padding: 28px 20px;
    gap: 14px;
  }
}
.guide__block__wrapper {
  width: 100%;
  height: 100%;
  display: contents;
}
.guide__element {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
}
.guide__element:not(:first-child) {
  border-top: 1px solid #D1D5DC;
  margin-top: 16px;
}
.guide__title {
  color: var(--color-gray-500, #6A7282);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.guide__content {
  color: var(--color-gray-800, #1E2939);
  /* Plain text */
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.16px;
}
.guide__editable {
  margin-top: 10px;
  position: relative;
  transition: border 0.2s ease-in-out;
  overflow: hidden;
  word-break: break-all;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
  border-radius: 12px;
  border: 1px solid #D1D5DC;
  background: #FFF;
  color: var(--color-gray-800, #1E2939);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.16px;
}
.guide__editable--content {
  padding: 14px 46px 14px 14px;
}
.guide__editable:has(.textEditableBlock) {
  border: 1px solid #BCB1FF;
  background: #F4F2FF;
}

.soft {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1001px) {
  .soft {
    gap: 24px;
    padding: 0 25px;
  }
}
@media only screen and (max-width: 1000px) {
  .soft {
    gap: 10px;
  }
}
@media only screen and (min-width: 1001px) {
  .soft__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px 10px;
    border-bottom: 1px solid #D9D4FF;
    padding: 25px 0;
  }
}
@media only screen and (max-width: 1000px) {
  .soft__wrapper {
    display: flex;
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
.soft__block {
  width: 100%;
  height: 100%;
}
.soft__element {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.soft__element:first-child {
  padding-bottom: 10px;
}
.soft__element:not(:first-child) {
  border-top: 1px solid #D1D5DC;
}
.soft__element:nth-child(2) {
  padding-block: 10px;
}
.soft__element:last-child {
  padding-top: 10px;
}
.soft__id {
  color: var(--color-gray-400, #99A1AF);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.soft__value {
  color: var(--color-gray-500, #6A7282);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media only screen and (min-width: 1001px) {
  .info {
    gap: 24px;
    padding: 0 25px;
  }
}
@media only screen and (max-width: 1000px) {
  .info {
    gap: 10px;
  }
}
.info__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #6A7282;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

svg {
  color: inherit;
}

textarea {
  background: var(--Primary-Color-50, #F4F2FF);
}

input {
  font-size: inherit;
}

body, html {
  /*width: 100%;
  height: 100%;*/
}

body {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  height: 100%;
  background-color: var(--theme);
  color: #1E2939;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.ignore-component {
  display: contents;
}

i {
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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