html {
  font-size: 100%;
}
@media screen and (max-width: 1245px) {
  html {
    font-size: 92%;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 88%;
  }
}
@media screen and (max-width: 895px) {
  html {
    font-size: 80%;
  }
}
@media screen and (max-width: 780px) {
  html {
    font-size: 75%;
  }
}

body {
  font-family: "Roboto", "sans-serif";
  background-color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
}
body ::-moz-selection {
  background-color: rgba(38, 45, 60, 0.4);
}
body ::selection {
  background-color: rgba(38, 45, 60, 0.4);
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
}

ul,
ol,
li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ////// to start animatio the div should take position absolute ////// */
button {
  display: block;
  width: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

@keyframes moveToLeft {
  0% {
    opacity: 0;
    transform: translateX(-3%);
  }
  80% {
    transform: translateX(3%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes moveToRight {
  0% {
    opacity: 0;
    transform: translateX(3%);
  }
  80% {
    transform: translateX(-3%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
.typo-mt-1 {
  margin-top: 3.5rem;
}

.typo-mt-2 {
  margin-top: 2.5rem;
}

.typo-mt-3 {
  margin-top: 2rem;
}

.typo-mt-4 {
  margin-top: 1rem;
}

.typo-pt-1 {
  padding-top: 3.5rem;
}

.typo-pt-2 {
  padding-top: 2.5rem;
}

.typo-pt-3 {
  padding-top: 2rem;
}

.typo-pt-4 {
  padding-top: 1rem;
}

.typo-mb-1 {
  margin-bottom: 3.5rem;
}

.typo-mb-2 {
  margin-bottom: 2.5rem;
}

.typo-mb-3 {
  margin-bottom: 2rem;
}

.typo-mb-4 {
  margin-bottom: 1rem;
}

.typo-pb-1 {
  padding-bottom: 3.5rem;
}

.typo-pb-2 {
  padding-bottom: 2.5rem;
}

.typo-pb-3 {
  padding-bottom: 2rem;
}

.typo-pb-4 {
  padding-bottom: 1rem;
}

.typo-pr-4 {
  padding-right: 0.5rem;
}

.U-center-text {
  text-align: center;
}

.U-center-cap {
  text-transform: capitalize;
}

.U-centerX-block {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.U-centerY-block {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.U-centerXY-block {
  position: absolute;
  top: 50%;
  left: 50%;
  width: -moz-max-content;
  width: max-content;
  transform: translate(-50%, -50%);
}

.U-break-primary {
  position: relative;
}
.U-break-primary::after {
  content: "";
  display: block;
  height: 0.2rem;
  width: 8rem;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #262d3c;
}

.U-break-secondary {
  position: relative;
}
.U-break-secondary::after {
  content: "";
  display: block;
  height: 0.2rem;
  width: 5rem;
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}

.U-break-light {
  position: relative;
}
.U-break-light::after {
  content: "";
  display: block;
  height: 0.2rem;
  width: 5rem;
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
}

.U-break-price {
  position: relative;
}
.U-break-price::after {
  content: "";
  display: block;
  height: 0.2rem;
  width: 3rem;
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%);
  background-color: orange;
}

.U-break-action {
  position: relative;
}
.U-break-action::after {
  content: "";
  display: block;
  height: 0.2rem;
  width: 7rem;
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #198754;
}

.U-circle {
  position: relative;
  display: block;
  background-color: transparent;
}
.U-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  z-index: -1;
}

.U-flex {
  display: flex;
}
.U-flex--jc {
  justify-content: center;
}
.U-flex--ab {
  align-items: baseline;
}

.W-30 {
  width: 40%;
  border: 1px salmon solid;
}

.W-70 {
  width: 60%;
  border: 1px pink solid;
}

.triangle {
  position: relative;
}
.triangle::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
  width: 0;
  height: 0;
  border: solid 1.5rem transparent;
  border-left-color: #198754;
}

.rectangle {
  position: relative;
}
.rectangle::after {
  content: "";
  position: absolute;
  left: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #198754;
  transform: skew(20deg);
}

.close-open {
  visibility: hidden;
}

.delete-open {
  display: none;
}

.disabled-btn {
  opacity: 0.6;
}

.unit-active-pure {
  background-color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025) !important;
}
.unit-active-applied {
  background-color: #198754;
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025) !important;
}

.calendar-active-lesson {
  background-color: rgb(148.4166666667, 21.2023809524, 184.2976190476);
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025) !important;
}
.calendar-active-month {
  background-color: rgb(148.4166666667, 21.2023809524, 184.2976190476);
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025) !important;
}

.menu-active {
  display: block;
}

.class-hidden {
  visibility: hidden;
}

.offer {
  padding-left: 0.5rem;
  background-color: white;
  color: black;
}

.container {
  margin: 0 5%;
}

.com-btn-icon {
  display: block;
  padding-right: 1rem;
}

.com-btn-action {
  position: relative;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  padding: 1rem 3rem;
  font-size: 1.8rem;
  border-radius: 1rem;
  transition: all 0.2s;
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
  background-color: #198754;
}
@media screen and (max-width: 895px) {
  .com-btn-action {
    font-size: 1.6rem;
  }
}
.com-btn-action::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  position: absolute;
  background-color: #198754;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s;
}
.com-btn-action:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.8rem 0.8rem rgba(0, 0, 0, 0.2);
}
.com-btn-action:hover::after {
  transform: scaleX(1.4) scaleY(1.5);
  opacity: 0;
}
.com-btn-action:active {
  transform: translateY(-0.1rem);
  box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.2);
}

.com-btn-secondary {
  position: relative;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  padding: 1rem 3rem;
  font-size: 1.8rem;
  border-radius: 1rem;
  transition: all 0.2s;
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
  background-color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
@media screen and (max-width: 895px) {
  .com-btn-secondary {
    font-size: 1.6rem;
  }
}
.com-btn-secondary::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  position: absolute;
  background-color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s;
}
.com-btn-secondary:hover {
  background-color: #198754;
  transform: translateY(-0.3rem);
  box-shadow: 0 0.8rem 0.8rem rgba(0, 0, 0, 0.2);
}
.com-btn-secondary:hover::after {
  transform: scaleX(1.4) scaleY(1.5);
  opacity: 0;
}
.com-btn-secondary:active {
  transform: translateY(-0.1rem);
  box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.2);
}

.com-img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .com-img {
    width: 40%;
  }
}
.com-img--gallary {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.com-img--br {
  border-radius: 0.9rem 0.9rem;
}

.header-inrto {
  display: block;
  letter-spacing: 0.04rem;
  font-weight: 700;
  text-shadow: 0.07rem 0.07rem rgb(246.9404907975, 247.3110429448, 247.9595092025);
}
.header-inrto--main {
  font-size: 9.8rem;
  color: #262d3c;
  animation-name: moveToLeft;
  animation-duration: 2.5s;
  animation-timing-function: ease-out;
}
@media screen and (max-width: 933px) {
  .header-inrto--main {
    font-size: 7.4rem;
  }
}
@media screen and (max-width: 745px) {
  .header-inrto--main {
    font-size: 6.1rem;
  }
}
@media screen and (max-width: 550px) {
  .header-inrto--main {
    font-size: 4.8rem;
  }
}
.header-inrto--sub {
  font-size: 3.5rem;
  padding-top: 3rem;
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  animation-name: moveToRight;
  animation-duration: 2.5s;
  animation-timing-function: ease-out;
}
@media screen and (max-width: 895px) {
  .header-inrto--sub {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 780px) {
  .header-inrto--sub {
    font-size: 2.4rem;
  }
}

.header {
  display: block;
  font-weight: 600;
  text-align: center;
}
.header--primary {
  font-size: 3.5rem;
  color: #262d3c;
}
@media screen and (max-width: 895px) {
  .header--primary {
    font-size: 3rem;
  }
}
@media screen and (max-width: 780px) {
  .header--primary {
    font-size: 2.5rem;
  }
}
.header--secondary {
  font-size: 2.5rem;
  color: #262d3c;
}
@media screen and (max-width: 895px) {
  .header--secondary {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 780px) {
  .header--secondary {
    font-size: 1.6rem;
  }
}
.header-sub--secondary {
  font-size: 1.8rem;
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
@media screen and (max-width: 895px) {
  .header-sub--secondary {
    font-size: 1.6rem;
  }
}
.header-sub--light {
  font-size: 1.8rem;
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
}
.header__icon {
  padding-left: 1rem;
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}

.footer {
  background-color: #262d3c;
}
.footer__envelope {
  padding: 1.5rem 0;
  display: grid;
  align-items: center;
  grid-template-columns: max-content 1fr 1fr;
}
@media screen and (max-width: 745px) {
  .footer__envelope {
    grid-template-columns: max-content 1fr;
  }
}
.footer__card__img {
  display: block;
  border-radius: 0.8rem 0.8rem 0.8rem 0.8rem;
  width: 100%;
  height: 6rem;
}
@media screen and (max-width: 745px) {
  .footer__card__img {
    width: 85%;
  }
}
.footer__head {
  text-decoration: underline;
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
  text-align: center;
}
@media screen and (max-width: 550px) {
  .footer__head--fix {
    margin-top: 2rem;
  }
}
.footer__icon {
  display: inline-block;
  padding-left: 0.5rem;
}
.footer__contact-lists {
  padding-top: 1rem;
}
@media screen and (max-width: 745px) {
  .footer__contact-lists {
    grid-column: 2/3;
  }
}
.footer__contact-list {
  margin: 0 auto;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
  text-align: center;
  padding-top: 1em;
  transition: all 0.2s;
}
@media screen and (max-width: 745px) {
  .footer__contact-list {
    width: 100%;
  }
}
.footer__contact-list:hover {
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
.footer__contact-list:active {
  transform: scale(1.01);
  color: #198754;
}

.filter {
  margin-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 895px) {
  .filter {
    display: block;
  }
}
.filter__btnfinal__text {
  text-align: center;
  width: 100%;
  font-weight: 600;
  padding: 0.5rem 0;
  outline: 0.2rem solid #262d3c;
  font-size: 1.6rem;
  background-color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
  box-shadow: 0.3rem 0.3rem rgb(216.9975460123, 218.7447852761, 221.8024539877);
  transition: all 0.1s;
}
.filter__btnfinal__text:hover {
  background-color: #198754;
}
.filter__btnfinal__text:active {
  background-color: orange;
}

.stages,
.grades,
.select-term {
  position: relative;
  border: none;
}

.stages {
  outline: 0.2rem solid #262d3c;
}
@media screen and (max-width: 895px) {
  .stages {
    margin: 2rem 0;
  }
}
.stages__btn {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.8rem;
  text-align: start;
  font-size: 1.6rem;
  font-weight: bold;
  color: #198754;
  background-color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
}
.stages__text {
  font-size: 1.6rem;
  color: #262d3c;
}
.stages__icon {
  font-size: 1.6rem;
  color: #262d3c;
  padding-left: 1rem;
}
.stages__menu {
  position: absolute;
  display: block;
  width: 100%;
  top: 115%;
  border: none;
  outline: 2px solid rgb(246.9404907975, 247.3110429448, 247.9595092025);
  z-index: 1;
}
.stages .stages__menu .stages__btn:hover {
  background-color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
}

.grades__menu-prim, .grades__menu-prep, .grades__menu-sec {
  outline: 2px solid rgb(246.9404907975, 247.3110429448, 247.9595092025);
  z-index: 1;
}
.grades__menu-prim {
  height: 150px;
  overflow-y: scroll;
}
.grades__menu-prim .grades__btn:hover, .grades__menu-prep .grades__btn:hover, .grades__menu-sec .grades__btn:hover {
  color: #262d3c;
  background-color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
}

.nav__envelope {
  border-bottom: 0.1rem solid rgba(38, 45, 60, 0.7);
  background-image: linear-gradient(to bottom, rgb(216.9975460123, 218.7447852761, 221.8024539877), rgb(246.9404907975, 247.3110429448, 247.9595092025));
}
.nav__items {
  padding-top: 1.5rem;
  padding-bottom: 0.8rem;
  display: grid;
  grid-template-columns: 13rem auto max-content max-content;
  align-items: center;
}
@media screen and (max-width: 895px) {
  .nav__items {
    grid-template-columns: 10rem auto max-content max-content;
  }
}
.nav__card {
  grid-column: 1/2;
}
@media screen and (max-width: 745px) {
  .nav__card {
    margin-right: 1.5rem;
  }
}
.nav__card__img {
  display: block;
  border-radius: 0.8rem 0.8rem 0.8rem 0.8rem;
  width: 100%;
  height: 6.2rem;
}
@media screen and (max-width: 895px) {
  .nav__card__img {
    height: 5.7;
  }
}
.nav__item1 {
  margin-right: 5rem;
  grid-column: 3/4;
  display: flex;
  align-items: baseline;
  transition: all 0.1s;
}
@media screen and (max-width: 895px) {
  .nav__item1 {
    height: 5.7;
  }
}
@media screen and (max-width: 550px) {
  .nav__item1 {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 550px) {
  .nav__item1 {
    text-decoration: underline;
  }
}
.nav__item1:hover .nav__item-text {
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  text-decoration: underline;
}
.nav__item1:hover .nav__item-icon {
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
.nav__item2 {
  grid-column: 4/5;
  display: flex;
  align-items: baseline;
  transition: all 0.1s;
}
@media screen and (max-width: 550px) {
  .nav__item2 {
    text-decoration: underline;
  }
}
.nav__item2:hover .nav__item-text {
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  text-decoration: underline;
}
.nav__item2:hover .nav__item-icon {
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
.nav__item-text {
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 895px) {
  .nav__item-text {
    font-size: 1.6rem;
  }
}
.nav__item-icon {
  font-size: 1.8rem;
  font-weight: 600;
  padding-left: 0.6em;
}
@media screen and (max-width: 895px) {
  .nav__item-icon {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 550px) {
  .nav__item-icon {
    display: none;
  }
}

.modal {
  visibility: visible;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(38, 45, 60, 0.9);
  z-index: 1000;
  transition: all 0.8s ease;
}
.modal-hidden {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transform: translateY(-100%);
}
.modal__month {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  color: rgb(148.4166666667, 21.2023809524, 184.2976190476);
}
.modal__month--pin {
  display: inline-block;
  transform: rotate(25deg) translateX(-0.5rem);
  padding-left: 0.5rem;
}
.modal__content {
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38%;
  background-color: rgb(216.9975460123, 218.7447852761, 221.8024539877);
  border-radius: 1rem;
}
@media screen and (max-width: 895px) {
  .modal__content {
    width: 80%;
  }
}
@media screen and (max-width: 745px) {
  .modal__content {
    width: 86%;
  }
}
.modal__head {
  padding-left: 1rem;
}
.modal__head__title {
  font-size: 1.8rem;
  font-weight: 600;
  font-style: italic;
  color: #262d3c;
}
.modal__head__title--class {
  color: rgba(38, 45, 60, 0.6);
  font-size: 1.6rem;
}
.modal__form {
  margin-top: 2rem;
  padding-left: 1rem;
  padding-bottom: 2rem;
}
.modal__form__login {
  padding: 0.2rem 0;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}
.modal__form__lable {
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  font-size: 1.5rem;
  font-weight: 600;
}
.modal__form__lable--icon {
  padding-right: 1rem;
}
.modal__form__lable--applied {
  color: #198754;
}
.modal__form__input {
  display: block;
  border: none;
  padding: 0.3rem 0;
  width: 13rem;
  font-size: 1.5rem;
  font-weight: 600;
  outline: 0.2rem solid #262d3c;
}
.modal__form__input--pure:focus {
  outline: 0.2rem solid rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
.modal__form__input--applied:focus {
  color: #198754;
  outline: 0.2rem solid #198754;
}
.modal__form__btn {
  outline: 0.2rem solid rgba(10.8129496403, 74.4892086331, 156.1870503597, 0.2);
  width: -moz-max-content;
  width: max-content;
  margin-left: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 5% 5%;
  background-color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
  transition: all 0.1s ease;
}
.modal__form__btn--applied {
  background-color: #198754;
}
.modal__form__btn:hover {
  padding-left: 2rem;
}
.modal__form__btn:hover .modal__form__btn__icon {
  transform: translateX(0.7rem);
}
.modal__form__btn:active {
  outline: 0.5rem solid rgba(10.8129496403, 74.4892086331, 156.1870503597, 0.2);
}
.modal__form__btn__link {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
}
.modal__form__btn__link--applied {
  background-color: #198754;
}
.modal__form__btn__icon {
  padding-left: 1rem;
}
.modal__form__warning {
  padding-top: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: red;
}
.modal__btn-close {
  border: 0.1rem solid #262d3c;
  box-shadow: 0 0.1rem 0.1rem #262d3c;
  background-color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
  border-radius: 0 1rem 0 0;
  font-size: 3rem;
  font-weight: 600;
  color: #262d3c;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  padding: 0.3rem 0.6rem;
  top: 0.5rem;
  right: 0.5rem;
  transition: all 0.2s;
}
.modal__btn-close--pure:hover {
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
  background-color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  border: 0.1rem solid rgb(10.8129496403, 74.4892086331, 156.1870503597);
  box-shadow: 0 0.1rem 0.1rem rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
.modal__btn-close--applied:hover {
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
  background-color: #198754;
  border: 0.1rem solid #198754;
  box-shadow: 0 0.1rem 0.1rem rgb(10.8129496403, 74.4892086331, 156.1870503597);
}

.adventages {
  margin-top: 3rem;
  position: relative;
}
.adventages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, rgb(216.9975460123, 218.7447852761, 221.8024539877), rgb(246.9404907975, 247.3110429448, 247.9595092025));
  z-index: -1;
}
.adventages__envelop {
  margin-top: 3.5rem;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: 3fr 2fr;
}
@media screen and (max-width: 1245px) {
  .adventages__envelop {
    display: block;
  }
}
.adventages__list {
  padding: 0 1rem;
}
.adventages__item {
  font-size: 1.8rem;
  font-weight: 700;
  color: #262d3c;
  padding: 1.8rem 0;
}
@media screen and (max-width: 1190px) {
  .adventages__item {
    font-size: 1.6rem;
  }
}
.adventages__item:hover {
  transition: all 1s;
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  transform: scale(1.05);
  transform: skewX(6deg);
  padding-left: 3rem;
}
.adventages__item:hover .U-circle::after {
  background-color: #198754;
}
.adventages__bullet {
  color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
  padding: 0 1rem;
}
.adventages__text {
  padding-left: 1.5rem;
}
.adventages__text--icon {
  padding-left: 0.5rem;
}
.adventages__card {
  position: relative;
  outline: solid 0.03rem rgb(10.8129496403, 74.4892086331, 156.1870503597);
  filter: drop-shadow(0.2rem 0.2rem 0.2rem #262d3c);
  position: relative;
  margin: 0 2rem;
  background-color: rgb(246.9404907975, 247.3110429448, 247.9595092025);
}
@media screen and (max-width: 1245px) {
  .adventages__card {
    margin-top: 2rem;
  }
}
.adventages__card:hover {
  background-color: rgba(246.9404907975, 247.3110429448, 247.9595092025, 0.4);
}
.adventages__card:hover .btn--secondary {
  background-color: #198754;
}
.adventages__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  padding-top: 0.8rem;
  padding-left: 0.8rem;
  border: solid 0.5rem transparent;
  border-top-color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  border-left-color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
.adventages__card::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  padding-top: 0.8rem;
  padding-left: 0.8rem;
  border: solid 0.5rem transparent;
  border-bottom-color: #198754;
  border-right-color: #198754;
}
.adventages__card-head {
  padding: 2rem 2.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #262d3c;
}
.adventages__card-head--text {
  text-align: justify;
  font-weight: 700;
  line-height: 2rem;
  padding-top: 2rem;
  color: #262d3c;
  font-size: 1.6rem;
}
.adventages__card-info {
  color: #262d3c;
  text-align: justify;
  padding: 1.5rem 2.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2rem;
}
.adventages__card-info--decoration {
  padding-top: 2rem;
  text-align: center;
  font-style: italic;
  color: #198754;
}
.adventages__card-btn {
  padding-bottom: 2rem;
}

.book {
  position: relative;
}
.book::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.platforms {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(to right, rgb(246.9404907975, 247.3110429448, 247.9595092025), rgb(10.8129496403, 74.4892086331, 156.1870503597));
}
.platforms__message {
  position: relative;
}
.platforms__message-envelop {
  position: relative;
  outline: solid 0.03rem rgb(10.8129496403, 74.4892086331, 156.1870503597);
  box-shadow: 0.2rem 0.2rem 0.2rem #262d3c;
  padding: 2rem 3rem 2rem 2rem;
  background-image: linear-gradient(to right, rgb(216.9975460123, 218.7447852761, 221.8024539877), rgb(246.9404907975, 247.3110429448, 247.9595092025) 2%);
}
.platforms__message-envelop::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  padding-top: 0.8rem;
  padding-left: 0.8rem;
  border: solid 0.5rem transparent;
  border-top-color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  border-left-color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
.platforms__message-envelop::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  padding-top: 0.8rem;
  padding-left: 0.8rem;
  border: solid 0.5rem transparent;
  border-bottom-color: #198754;
  border-right-color: #198754;
}
.platforms__text {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  color: #262d3c;
  text-align: justify;
  text-indent: 3rem;
  line-height: 3.5rem;
}
@media screen and (max-width: 1245px) {
  .platforms__text {
    font-size: 1.6rem;
  }
}
.platforms__addtext {
  padding-top: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #262d3c;
  text-align: justify;
  line-height: 3.5rem;
}
.platforms__addtext--note {
  font-style: italic;
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
.platforms__addtext--link {
  font-size: 1.6rem;
  font-style: italic;
  text-decoration: underline;
  color: #198754;
}
.platforms__card {
  position: relative;
  grid-column: 3/-1;
  grid-row: 2/3;
}
.platforms__card-header {
  position: relative;
}
.platforms__card-head {
  font-size: 2.5rem;
  font-weight: 600;
  color: #198754;
  text-align: center;
  padding-top: 2rem;
}
.platforms__grades {
  margin-top: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
.platforms__grades-title {
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  text-decoration: underline;
  color: #198754;
}
.platforms__grades-title--fade {
  opacity: 0.3;
}
.platforms__grade {
  display: flex;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  top: 0;
  left: 110%;
  outline: solid 0.03rem #198754;
}
.platforms__header {
  margin: 2.5rem 0;
}
.platforms__head {
  font-size: 1.8rem;
}

.platform__info {
  display: flex;
  width: 100%;
  align-items: center;
}
.platform__teacher {
  width: 25%;
}
@media screen and (max-width: 1190px) {
  .platform__teacher {
    width: 40%;
  }
}
.platform__stage {
  width: 75%;
}
@media screen and (max-width: 1190px) {
  .platform__stage {
    width: 60%;
  }
}
.platform__content {
  margin: 3rem 0;
  display: flex;
}

.teacher {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.teacher__info {
  padding-top: 1rem;
}
.teacher__img {
  width: 100%;
  height: 10rem;
  border-radius: 0.8rem 0.8rem 0.8rem 0.8rem;
  box-shadow: 0 0.5rem 0.2rem rgb(216.9975460123, 218.7447852761, 221.8024539877);
  display: block;
}
.teacher__name {
  font-size: 1.6rem;
  color: #262d3c;
  font-weight: 600;
}
.teacher__name--title {
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}

.unit-title {
  color: #262d3c;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5rem 2.5rem;
  font-style: italic;
  box-shadow: 0 0 0.5rem 0.3rem rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
@media screen and (max-width: 1245px) {
  .unit-title {
    font-size: 1.6rem;
  }
}
.unit-title--pure {
  box-shadow: 0 0 0.5rem 0.3rem rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
.unit-title--applied {
  box-shadow: 0 0 0.5rem 0.3rem #198754;
}
.unit-title--modal {
  margin: 2.5rem auto;
}

.lesson__container {
  padding-left: 2rem;
  margin-bottom: 5rem;
}
.lesson__head {
  text-align: start;
  font-size: 1.8rem;
  font-weight: 600;
  border-bottom: 0.1rem solid rgb(10.8129496403, 74.4892086331, 156.1870503597);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1245px) {
  .lesson__head {
    font-size: 1.6rem;
  }
}
.lesson__head-title {
  color: #262d3c;
}
.lesson__head-pure {
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
.lesson__head-applied {
  color: #198754;
}
.lesson__class {
  margin-top: 1.5rem;
  display: flex;
  background-color: rgb(216.9975460123, 218.7447852761, 221.8024539877);
  align-items: center;
  transition: all 0.5s ease;
}
.lesson__class--pdf {
  background-color: rgb(216.9975460123, 218.7447852761, 221.8024539877);
}
.lesson__class:hover {
  opacity: 0.65;
}
.lesson__class:active {
  outline: 0.1rem solid #262d3c;
}
.lesson__class__btn {
  display: block;
  width: 100%;
  text-align: start;
  font-size: 1.8rem;
  font-weight: 600;
  padding-left: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 1245px) {
  .lesson__class__btn {
    font-size: 1.6rem;
  }
}
.lesson__class__btn--pure {
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
.lesson__class__btn--applied {
  color: #198754;
}
.lesson__class__icon {
  font-size: 1.8rem;
  font-weight: 600;
  padding-right: 1rem;
}
@media screen and (max-width: 1245px) {
  .lesson__class__icon {
    font-size: 1.6rem;
  }
}
.lesson__class__icon--pure {
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
.lesson__class__icon--applied {
  color: #198754;
}

.aside-left {
  margin-bottom: 2rem;
  width: 25%;
  border-right: 0.2rem solid #262d3c;
  min-height: 90vh;
}
@media screen and (max-width: 1190px) {
  .aside-left {
    width: 35%;
  }
}
.aside-left--coursecontent {
  width: 20%;
  min-height: -moz-fit-content;
  min-height: fit-content;
  margin-bottom: 0;
}
@media screen and (max-width: 745px) {
  .aside-left--coursecontent {
    width: 40%;
    margin-left: auto;
  }
}
.aside-left-envelope {
  margin-right: 1rem;
}
@media screen and (max-width: 895px) {
  .aside-left-envelope {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 780px) {
  .aside-left-envelope {
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 895px) {
  .aside-left-envelope--coursecontent {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 745px) {
  .aside-left-envelope--coursecontent {
    margin-right: 0;
    width: 100%;
  }
}
.aside-right {
  margin-bottom: 2rem;
  width: 75%;
  min-height: 90vh;
}
@media screen and (max-width: 1190px) {
  .aside-right {
    width: 65%;
  }
}
.aside-right--coursecontent {
  width: 80%;
  margin-bottom: 0rem;
}
@media screen and (max-width: 745px) {
  .aside-right--coursecontent {
    box-sizing: border-box;
    padding: 0 2.5rem;
    width: 100%;
    margin-top: 2rem;
  }
}
.aside__head {
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: underline;
}
@media screen and (max-width: 895px) {
  .aside__head {
    font-size: 1.6rem;
  }
}
.aside__branch {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-content: center;
  border: 0.2rem solid rgb(216.9975460123, 218.7447852761, 221.8024539877);
  margin-top: 1rem;
  padding: 0.2rem;
}
.aside__branch--coursecontent {
  margin-top: 0;
  max-width: 100%;
}
.aside__subhead {
  font-size: 1.8rem;
  font-weight: 600;
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
@media screen and (max-width: 895px) {
  .aside__subhead {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 550px) {
  .aside__subhead--extrasmall {
    display: none;
  }
}
.aside__subhead--applied {
  color: #198754;
}
.aside__subhead--distribution {
  color: rgb(148.4166666667, 21.2023809524, 184.2976190476);
}
.aside__subhead--coursecontent {
  color: #262d3c;
}
.aside__menu {
  margin: 0 0.8rem;
  margin-top: 1rem;
  outline: 0.1rem solid rgb(216.9975460123, 218.7447852761, 221.8024539877);
  box-shadow: 0.1rem 0.1rem rgb(216.9975460123, 218.7447852761, 221.8024539877);
}
.aside__menu-envelope {
  display: none;
  border-bottom: 0.1rem solid rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
.aside__head-unit {
  border-bottom: 0.1rem solid rgb(10.8129496403, 74.4892086331, 156.1870503597);
  padding: 0.5rem;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  cursor: pointer;
}
.aside__head-unit--applied {
  color: #198754;
}
.aside__unit-btn {
  border-bottom: 0.1rem solid rgb(10.8129496403, 74.4892086331, 156.1870503597);
  padding: 0.8rem;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  transition: all 0.2s;
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 1.6rem;
  color: #262d3c;
}
.aside__unit-btn--applied {
  border-bottom: 0.1rem solid #198754;
}
.aside__unit-menu {
  transition: all 0.2s;
}

.calendar__pure, .calendar__applied {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 895px) {
  .calendar__pure, .calendar__applied {
    grid-template-columns: repeat(5, 1fr);
  }
}
.calendar__unit {
  text-align: center;
  font-size: 1.6rem;
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
  font-weight: 600;
  border-bottom: 0.1rem #262d3c solid;
  border-right: 0.1rem #262d3c solid;
}
@media screen and (max-width: 895px) {
  .calendar__unit {
    font-size: 1.5rem;
  }
}
.calendar__unit--applied {
  color: #198754;
}
.calendar__lesson {
  font-size: 1.6rem;
  color: #262d3c;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 895px) {
  .calendar__lesson {
    font-size: 1.5rem;
  }
}

.coursecontent__main {
  margin: 3rem 0;
}
.coursecontent__header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
}
.coursecontent__lecture__flex {
  display: flex;
  justify-content: space-between;
}
.coursecontent__lecture__header {
  display: inline-block;
  border-bottom: 0.2rem solid #262d3c;
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  color: #262d3c;
}
@media screen and (max-width: 1190px) {
  .coursecontent__lecture__header {
    font-size: 1.6rem;
  }
}
.coursecontent__lecture__pdf {
  border: 0.2rem solid rgb(10.8129496403, 74.4892086331, 156.1870503597);
  background-color: white;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem;
}
@media screen and (max-width: 1190px) {
  .coursecontent__lecture__pdf {
    font-size: 1.6rem;
  }
}
.coursecontent__lecture__bullet {
  color: rgb(10.8129496403, 74.4892086331, 156.1870503597);
}
.coursecontent__lecture__bullet--alfabetic {
  padding-left: 2.5rem;
}
.coursecontent__lecture__bullet--applied {
  color: #198754;
}
.coursecontent__lecture__youtube {
  margin: 2.5rem auto;
  border: 0.4rem solid #262d3c;
  margin: 1rem auto;
  width: 60%;
  height: 60vh;
}
@media screen and (max-width: 745px) {
  .coursecontent__lecture__youtube {
    height: 40vh;
    width: 80%;
  }
}
.coursecontent__lecture__youtube-iframe {
  width: 100%;
  height: 100%;
}
.coursecontent__menu {
  margin-top: 1rem;
  box-shadow: 0.1rem 0.1rem rgb(216.9975460123, 218.7447852761, 221.8024539877);
}
.coursecontent__menu-envelope {
  margin-bottom: 1.5rem;
}
.coursecontent__menu-item {
  text-decoration: underline;
  padding: 0.6rem;
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  color: #262d3c;
  transition: all 0.2s;
}
.coursecontent__menu-item:hover {
  color: orange;
}
.coursecontent__menu-item:active {
  color: #262d3c;
}
.coursecontent__angle-icon {
  color: rgb(216.9975460123, 218.7447852761, 221.8024539877);
}/*# sourceMappingURL=main.css.map */