:root {
  --font-family: "TWKEverett", sans-serif;
  --color-text: #060606;
  --light-color: #def38c;
  --black-color: #060606;
  --blue-color: #97c3e9;
  --lime-color: #f4fbe2;
  --white-color: #fefefe;
  --light-violet: #e6e3fe;
  --light-grey: #f6f6f6;
  --dark-green: #085c44;
  --dark-red: #ffb09c;
  --light-violet: #e6e3fe;
  --light-blue: #ebf5ff;
  --blue: #005095;
  --red-color: #af001a;
  --red: #ff6666;
}

@font-face {
  font-family: "TWKEverett";
  src: url("/static/fonts/TWKEverett-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "TWKEverett";
  src: url("/static/fonts/TWKEverett-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
body {
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  user-select: none;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1440px) {
  body {
    font-size: 22px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Modal box */
.modal-confirm {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
}

.modal-confirm-content {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-in-out;
}

.modal-confirm h3 {
  margin-bottom: 10px;
}

.modal-confirm p {
  margin-bottom: 20px;
  font-size: 16px;
  margin-top: 20px;
}

.modal-confirm-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-confirm-modal {
  padding: 10px 16px;
  border-radius: 48px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  min-width: 150px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 400;
}

.cancel-btn-confirm-modal {
  background: var(--light-grey);
}

.cancel-btn-confirm-modal:hover {
  opacity: 0.7;
}

.confirm-btn-confirm-modal {
  background: var(--light-color);
  color: var(--dark-green);
}

.confirm-btn-confirm-modal:hover {
  opacity: 0.7;
}

.expired {
  color: red;
  font-weight: bold;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
}

a {
  color: currentColor;
  text-decoration: none;
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  color: currentColor;
}

.app .container {
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .app .container {
    min-width: 768px;
    padding: 0 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .container {
    max-width: 1440px;
    padding: 0 80px;
  }
}

.app .section {
  padding: 24px 0px;
}
@media screen and (min-width: 768px) {
  .app .section {
    padding: 48px 0px;
  }
}
@media screen and (min-width: 1440px) {
  .app .section {
    padding: 64px 0px;
  }
}

.app .header {
  position: fixed;
  top: 16px;
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
  z-index: 999;
}
.app .header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 1px 1px 6px 0px rgba(6, 6, 6, 0.1019607843);
  position: relative;
}
@media screen and (min-width: 768px) {
  .app .header__wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.app .header__navigation {
  display: none;
}
@media screen and (min-width: 1440px) {
  .app .header__navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
  }
}
.app .header__navigation-link {
  padding: 13.5px 16px;
  border: 1px solid #eaeaea;
  border-radius: 48px;
  font-size: 16px;
  transition: all 300ms ease-in-out;
}
.app .header__navigation-link:hover {
  background: var(--light-color);
  border: 1px solid var(--light-color);
}
.app .header__logo {
  display: none;
}
@media screen and (min-width: 1440px) {
  .app .header__logo {
    display: inline-flex;
  }
}
.app .header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1440px) {
  .app .header__menu {
    display: none;
  }
}
.app .header__user-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.app .header__signin {
  padding: 4px;
  border-radius: 100%;
  border: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
}
.app .header__signin:hover {
  background: var(--light-color);
  border: 1px solid var(--light-color);
}
@media screen and (min-width: 768px) {
  .app .header__signin {
    border-color: var(--black-color);
    padding: 13.5px 16px;
    border-radius: 48px;
  }
}
.app .header__signin-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .app .header__signin-text {
    display: inline-flex;
    font-size: 16px;
  }
}
.app .header__free-trial {
  padding: 9px 16px;
  color: var(--text-color);
  font-size: 16px;
  background-image: linear-gradient(135deg, var(--light-color) 0, #F0FFD9 51%, var(--light-color) 100%);
  background-size: 300% auto;
  border-radius: 48px;
  text-decoration: none;
  transition: all 400ms ease-in-out;
}
.app .header__free-trial:hover {
  background-position: 100% center;
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .app .header__free-trial {
    padding: 13.5px 24px;
  }
}
@media screen and (min-width: 768px) {
  .app .header__signin-icon {
    display: none;
  }
}

.app .footer {
  padding: 48px 0;
  background-color: var(--black-color);
  color: var(--white-color);
}
.app .footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1440px) {
  .app .footer__wrapper {
    gap: 48px;
  }
}
.app .footer__navigation-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.app .footer__logo {
  width: 159px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .app .footer__logo {
    width: 159px;
  }
}
@media screen and (min-width: 1440px) {
  .app .footer__logo {
    width: 316px;
    height: 52px;
  }
}
.app .footer__address, .app .footer__email {
  font-style: inherit;
}
.app .footer__info-navigations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 0;
}
@media screen and (min-width: 768px) {
  .app .footer__info-navigations {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 16px;
  }
}
@media screen and (min-width: 1440px) {
  .app .footer__info-navigations {
    grid-template-columns: repeat(6, 1fr);
  }
}
.app .footer__address-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app .footer__address-info-wrapper {
  width: 139px;
  grid-column: span 2;
}
@media screen and (min-width: 768px) {
  .app .footer__address-info-wrapper {
    grid-column: span 3;
    gap: 12px;
  }
}
@media screen and (min-width: 1440px) {
  .app .footer__address-info-wrapper {
    grid-column: span 2;
    gap: 16px;
    width: 316px;
  }
}
@media screen and (min-width: 1440px) {
  .app .footer__address, .app .footer__email {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .footer__company-title, .app .footer__information-title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}
.app .footer__company-navigation, .app .footer__information {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 1440px) {
  .app .footer__company-navigation, .app .footer__information {
    gap: 24px;
  }
}
.app .footer__navigatin, .app .footer__information-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1440px) {
  .app .footer__navigation-item, .app .footer__information-nav-item {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .footer__subscribe-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.app .footer__subscribe {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .app .footer__subscribe {
    grid-column: span 1;
    width: 100%;
  }
}
.app .footer__subscribe-wrapper {
  grid-column: span 2;
  width: 288px;
}
@media screen and (min-width: 768px) {
  .app .footer__subscribe-wrapper {
    grid-column: span 1;
    width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .app .footer__subscribe-wrapper {
    grid-column: span 2;
    margin-left: auto;
    width: 316px;
  }
}
.app .footer__subscribe-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
.app .footer__input-wrapper {
  position: relative;
}
.app .footer__input {
  border: 1px solid var(--white-color);
  border-radius: 48px;
  padding: 11.5px 16px;
  background-color: transparent;
  width: 100%;
}
.app .footer__input::placeholder {
  color: var(--white-color);
}
.app .footer__input-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white-color);
  padding: 0.97px;
  border-radius: 100%;
}
.app .footer__follow-us {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
}
.app .footer__socials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 1440px) {
  .app .footer__socials-wrapper--hidden {
    display: none;
  }
}
.app .footer__socials-title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
.app .footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
}
.app .footer__payments {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 1440px) {
  .app .footer__payments--hidden {
    display: none;
  }
}
.app .footer__line {
  width: 100%;
  height: 1px;
  background-color: #7a7a7a;
}
.app .footer__coopyrihgt {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #7a7a7a;
  align-items: center;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .app .footer__coopyrihgt {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.app .footer__payments-desc {
  display: none;
}
@media screen and (min-width: 1440px) {
  .app .footer__payments-desc {
    display: block;
  }
}
.app .footer__address-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.app .footer__socials-desc {
  display: none;
}
@media screen and (min-width: 1440px) {
  .app .footer__socials-desc {
    display: block;
  }
}

.app .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0;
}

.app .mobile-menu {
  background-color: rgba(6, 6, 6, 0.4);
  backdrop-filter: blur(2px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  transform: translateX(-100%);
  transition: all 300ms ease-in-out;
}
.app .mobile-menu__content {
  background-color: var(--white-color);
  width: 250px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .app .mobile-menu__content {
    padding: 40px;
  }
}
.app .mobile-menu__overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .mobile-menu__overview-name {
  color: #7a7a7a;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
.app .mobile-menu--active {
  transform: translateX(0);
}

@keyframes bounceIn {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px); /* Adjust for desired bounce height */
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.app .hero {
  background-image: url("/static/img/background/background-mob.png");
  background-repeat: repeat;
  padding-top: 63px;
  background-size: contain;
  background-position: top center;
}
@media screen and (min-width: 768px) {
  .app .hero {
    padding-top: 80px;
    background-image: url("/static/img/background/background-tab.png");
  }
}
@media screen and (min-width: 1440px) {
  .app .hero {
    padding-top: 112px;
    background-image: url("/static/img/background/background.png");
  }
}
.app .hero__wrapper {
  padding: 100px 0px 119px 0px;
  max-width: 100%;
  position: relative;
}
.app .hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.app .hero__graphics {
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.app .hero__graphic-item {
  flex: 0 0 14.2857142857%;
  max-width: 14.2857142857%;
  margin-left: -10px;
  z-index: 2;
  transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.app .hero__graphic-item:hover {
  transform: scale(1.2);
}
.app .hero__graphic-item:first-child {
  margin-left: 0;
}
.app .hero__desc-action-wrapper {
  display: flex;
  justify-content: center;
}
.app .hero__title {
  animation: fadeIn 600ms ease;
  font-weight: 500;
  font-size: 64px;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .hero__title {
    font-size: 150px;
  }
}
@media screen and (min-width: 1440px) {
  .app .hero__title {
    font-size: 260px;
  }
}
.app .hero__desc-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .hero__desc-action {
    gap: 40px;
    width: 426px;
  }
}
@media screen and (min-width: 1440px) {
  .app .hero__desc-action {
    gap: 24px;
  }
}
.app .hero__desc {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .hero__desc {
    font-size: 16px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1440px) {
  .app .hero__desc {
    font-size: 24px;
  }
}
.app .graphic-1 {
  animation: bounceIn 1s ease-out;
  animation-delay: 100ms;
}
@media screen and (min-width: 768px) {
  .app .graphic-1 {
    position: absolute;
    top: 81px;
    left: 56px;
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 1440px) {
  .app .graphic-1 {
    width: 130px;
    height: 130px;
    left: 174px;
    top: 80px;
  }
}
.app .graphic-2 {
  animation: bounceIn 1s ease-out;
  animation-delay: 300ms;
}
@media screen and (min-width: 768px) {
  .app .graphic-2 {
    position: absolute;
    top: 278px;
    left: 0px;
    width: 64px;
    height: 64px;
  }
}
@media screen and (min-width: 1440px) {
  .app .graphic-2 {
    width: 64px;
    height: 64px;
    left: 84px;
    top: 367px;
  }
}
.app .graphic-3 {
  animation: bounceIn 1s ease-out;
  animation-delay: 500ms;
}
@media screen and (min-width: 768px) {
  .app .graphic-3 {
    position: absolute;
    top: 102px;
    left: 333px;
    width: 64px;
    height: 64px;
  }
}
@media screen and (min-width: 1440px) {
  .app .graphic-3 {
    width: 88px;
    height: 88px;
    left: 655px;
    top: 101px;
  }
}
.app .graphic-4 {
  animation: bounceIn 1s ease-out;
  animation-delay: 700ms;
}
@media screen and (min-width: 768px) {
  .app .graphic-4 {
    position: absolute;
    top: 278px;
    left: 219px;
    width: 48px;
    height: 48px;
  }
}
@media screen and (min-width: 1440px) {
  .app .graphic-4 {
    width: 95px;
    height: 95px;
    left: 442px;
    top: 367px;
  }
}
.app .graphic-5 {
  animation: bounceIn 1s ease-out;
  animation-delay: 800ms;
}
@media screen and (min-width: 768px) {
  .app .graphic-5 {
    position: absolute;
    top: 271px;
    left: 473px;
    width: 48px;
    height: 48px;
  }
}
@media screen and (min-width: 1440px) {
  .app .graphic-5 {
    width: 130px;
    height: 130px;
    left: 877px;
    top: 351px;
  }
}
.app .graphic-6 {
  animation: bounceIn 1s ease-out;
  animation-delay: 900ms;
}
@media screen and (min-width: 768px) {
  .app .graphic-6 {
    position: absolute;
    top: 153px;
    left: 508px;
    width: 48px;
    height: 48px;
  }
}
@media screen and (min-width: 1440px) {
  .app .graphic-6 {
    width: 95px;
    height: 95px;
    left: 1071px;
    top: 168px;
  }
}
.app .graphic-7 {
  animation: bounceIn 1s ease-out;
  animation-delay: 1000ms;
}
@media screen and (min-width: 768px) {
  .app .graphic-7 {
    position: absolute;
    top: 96px;
    right: 0;
    width: 48px;
    height: 48px;
  }
}
@media screen and (min-width: 1440px) {
  .app .graphic-7 {
    width: 64px;
    height: 64px;
    right: 0px;
    top: 231px;
  }
}

.app .change-question-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  background: var(--light-color);
  background-size: 200% auto;
  padding: 11.5px;
  border-radius: 48px;
  cursor: pointer;
}
.app .change-question-btn:not(:disabled):hover {
  background-position: right center;
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .app .change-question-btn {
    padding: 19.6px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .action {
  width: 100%;
}
.app .action:hover .action__arrow-icon {
  transform: rotate(225deg) scale(1.1);
  transition-delay: 80ms;
}
.app .action:hover .action__btn-item {
  margin-right: 20px;
  background-position: right center;
  transform: scale(1.05);
}
.app .action:hover .action__btn-arrow {
  transform: translateX(-100%) scale(1.05);
}
.app .action__btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.app .action__btn-item {
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-color);
  background-size: 200% auto;
  padding: 11.5px;
  text-transform: uppercase;
  border-radius: 48px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .app .action__btn-item {
    padding: 19.6px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .action__btn-arrow {
  transition: all 400ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
  padding: 8px;
  background-color: var(--black-color);
  border-radius: 100%;
}
@media screen and (min-width: 768px) {
  .app .action__btn-arrow {
    padding: 18px;
  }
}
.app .action__arrow-icon {
  fill: var(--white-color);
  transition: all 300ms ease;
}
.app .change-question-btn {
  background-color: var(--black-color);
  color: var(--white-color);
  border-radius: 48px;
  padding: 11.5px;
  width: 100%;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .app .change-question-btn {
    padding: 11.5px 24px;
    max-width: max-content;
  }
}

@keyframes putBackCardSecond {
  0% {
    transform: translateY(-30px) scale(1.1);
    z-index: 4;
  }
  50% {
    transform: translateY(-60px) translateX(-35%) scale(1.1);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes putOutCardSecond {
  0% {
    transform: translateY(0);
    z-index: 1;
  }
  50% {
    transform: translateY(-60px) translateX(-35%) scale(1.1);
  }
  100% {
    transform: translateY(-30px) scale(1.1);
    z-index: 4;
  }
}
@keyframes putBackCardFirst {
  0% {
    transform: translateY(-30px) scale(1.1);
    z-index: 4;
  }
  50% {
    transform: translateY(-50px) translateX(-30%) scale(1.1);
  }
  100% {
    transform: translateY(0) rotate(-5deg);
  }
}
@keyframes putOutCardFirst {
  0% {
    transform: translateY(0);
    z-index: 1;
  }
  50% {
    transform: translateY(-50px) translateX(-30%) scale(1.1);
  }
  100% {
    transform: translateY(-30px) scale(1.1);
    z-index: 4;
  }
}
@keyframes putOutCardMobile {
  0% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(100%) translateX(-30%);
  }
  100% {
    transform: translateY(0) scale(1.1);
    z-index: 4;
  }
}
@keyframes putBackCardMobile {
  0% {
    transform: translateY(0) scale(1.1);
    z-index: 4;
  }
  50% {
    transform: translateY(100%) translateX(-30%);
  }
  100% {
    transform: translateY(0);
  }
}
.app .platform-for {
  border-radius: 16px;
  position: relative;
}
.app .platform-for__wrapper {
  display: flex;
  background-color: #f6f6f6;
  padding: 24px 16px;
  flex-direction: column;
  border-radius: 16px;
  gap: 21px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .app .platform-for__wrapper {
    padding: 48px 24px;
    gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .platform-for__wrapper {
    padding: 64px;
    gap: 48px;
  }
}
.app .platform-for__list {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 200px;
  padding-bottom: 150px;
}
@media screen and (min-width: 768px) {
  .app .platform-for__list {
    flex-direction: row;
    padding-top: 0;
  }
}
.app .platform-for__list-item {
  position: relative;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 11.9px;
  width: 100%;
  transition: all 300ms ease-in-out;
  touch-action: manipulation;
  /* First card animations */
  /* Second card animations */
}
@media screen and (min-width: 768px) {
  .app .platform-for__list-item {
    gap: 74px;
  }
}
.app .platform-for__list-item--active {
  animation: putOutCardMobile 1s forwards;
}
.app .platform-for__list-item--deactivate {
  animation: putBackCardMobile 1.2s forwards;
}
.app .platform-for__list-item--first {
  transition: all 300ms ease-in-out;
  background-color: var(--light-color);
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .app .platform-for__list-item--first {
    min-width: 443px;
  }
}
@media screen and (min-width: 1440px) {
  .app .platform-for__list-item--first {
    z-index: 1;
  }
}
.app .platform-for__list-item--two {
  transition: all 300ms ease-in-out;
  background-color: var(--blue-color);
  margin-top: -430px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .app .platform-for__list-item--two {
    margin-top: 0;
    min-width: 443px;
    margin-left: -390px;
  }
}
@media screen and (min-width: 1440px) {
  .app .platform-for__list-item--two {
    margin-left: -100px;
  }
}
@media screen and (min-width: 1440px) {
  .app .platform-for__list-item--animate-first-in {
    animation: putBackCardFirst 0.4s ease forwards;
  }
}
@media screen and (min-width: 1440px) {
  .app .platform-for__list-item--animate-first-out {
    animation: putOutCardFirst 0.7s ease forwards;
  }
}
@media screen and (min-width: 1440px) {
  .app .platform-for__list-item--animate-second-in {
    animation: putBackCardSecond 0.4s forwards;
  }
}
@media screen and (min-width: 1440px) {
  .app .platform-for__list-item--animate-second-out {
    animation: putOutCardSecond 0.7s forwards;
  }
}
.app .platform-for__list-item--three {
  background-color: var(--light-violet);
  margin-top: -445px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .app .platform-for__list-item--three {
    margin-top: 0;
    min-width: 443px;
    margin-left: -340px;
  }
}
@media screen and (min-width: 1440px) {
  .app .platform-for__list-item--three {
    z-index: 3;
    margin-left: -123px;
  }
  .app .platform-for__list-item--three:hover {
    transform: translateY(-30px) scale(1.1);
  }
}
.app .platform-for__list-item-number {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .platform-for__list-item-number {
    font-size: 24px;
  }
}
.app .platform-for__list-item-title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .platform-for__list-item-title {
    font-size: 24px;
  }
}
.app .platform-for__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .platform-for__title {
    font-size: 64px;
    letter-spacing: -0.02em;
  }
}
.app .platform-for__desc {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .platform-for__desc {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .platform-for__desc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .app .platform-for__desc-wrapper {
    gap: 16px;
  }
}
.app .platform-for__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.app .platform-for__image {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.app .potential__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  width: 288px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .app .potential__wrapper {
    width: 688px;
    height: 585px;
  }
}
@media screen and (min-width: 1440px) {
  .app .potential__wrapper {
    width: 1312px;
    height: 768px;
  }
}
.app .potential__title {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
  width: 288px;
}
@media screen and (min-width: 768px) {
  .app .potential__title {
    width: 592px;
    font-size: 64px;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 1440px) {
  .app .potential__title {
    width: 1184px;
    font-size: 90px;
  }
}
.app .potential__image {
  position: absolute;
  object-fit: contain;
  transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.app .potential__image:hover {
  transform: scale(1.2);
}
.app .potential__image--one {
  left: 0;
  top: 128px;
}
@media screen and (min-width: 768px) {
  .app .potential__image--one {
    width: 139.48px;
    height: 119px;
    top: 67px;
    left: 196px;
  }
}
@media screen and (min-width: 1440px) {
  .app .potential__image--one {
    width: 184px;
    height: 148px;
    left: 291.69px;
    top: 119.73px;
  }
}
.app .potential__image--two {
  left: 64px;
  top: 48px;
}
@media screen and (min-width: 768px) {
  .app .potential__image--two {
    width: 200.57px;
    height: 145px;
    top: 98px;
    left: 6px;
  }
}
@media screen and (min-width: 1440px) {
  .app .potential__image--two {
    width: 296px;
    height: 156px;
    left: 0;
    top: 64px;
  }
}
.app .potential__image--three {
  right: 0;
  top: 72px;
}
@media screen and (min-width: 768px) {
  .app .potential__image--three {
    width: 160px;
    height: 160px;
    top: 48px;
  }
}
@media screen and (min-width: 1440px) {
  .app .potential__image--three {
    width: 222px;
    height: 222px;
    right: 0;
    top: 82.03px;
  }
}
.app .potential__image--four {
  right: 15.76px;
  top: 166px;
}
@media screen and (min-width: 768px) {
  .app .potential__image--four {
    width: 238.65px;
    height: 70px;
    top: 161px;
    right: 121.35px;
  }
}
@media screen and (min-width: 1440px) {
  .app .potential__image--four {
    width: 432px;
    height: 82px;
    right: 220.63px;
    top: 170px;
  }
}
.app .potential__image--five {
  bottom: 75px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .app .potential__image--five {
    width: 140px;
    height: 140px;
    bottom: 48px;
    left: 1px;
  }
}
@media screen and (min-width: 1440px) {
  .app .potential__image--five {
    width: 249.47px;
    height: 249.45px;
    left: 120px;
    bottom: 103.55px;
  }
}
.app .potential__image--six {
  bottom: 112px;
  left: 103.67px;
}
@media screen and (min-width: 768px) {
  .app .potential__image--six {
    width: 199.54px;
    height: 113px;
    bottom: 86px;
    left: 162.23px;
  }
}
@media screen and (min-width: 1440px) {
  .app .potential__image--six {
    width: 264px;
    height: 143px;
    left: 383px;
    bottom: 82.87px;
  }
}
.app .potential__image--sevev {
  right: 0;
  bottom: 95px;
}
@media screen and (min-width: 768px) {
  .app .potential__image--sevev {
    width: 120px;
    height: 120px;
    bottom: 68px;
    right: 199px;
  }
}
@media screen and (min-width: 1440px) {
  .app .potential__image--sevev {
    width: 210px;
    height: 210px;
    right: 241.81px;
    bottom: 64.81px;
  }
}
.app .potential__image--eight {
  bottom: 48px;
  left: 100px;
}
@media screen and (min-width: 768px) {
  .app .potential__image--eight {
    width: 64px;
    height: 64px;
    bottom: 54px;
    left: 496px;
  }
}
@media screen and (min-width: 1440px) {
  .app .potential__image--eight {
    width: 95px;
    height: 95px;
    left: 1056px;
    bottom: 129px;
  }
}
.app .potential__image--nine {
  bottom: 58px;
  right: 23.92px;
}
@media screen and (min-width: 768px) {
  .app .potential__image--nine {
    width: 200.15px;
    height: 88px;
    bottom: 110px;
    right: -1, 15px;
  }
}
@media screen and (min-width: 1440px) {
  .app .potential__image--nine {
    width: 232px;
    height: 74px;
    right: 31.96px;
    bottom: 214.43px;
  }
}

.app .instruction__wrapper {
  padding: 24px 16px;
  background-color: var(--light-grey);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .app .instruction__wrapper {
    gap: 24px;
    padding: 48px;
  }
}
@media screen and (min-width: 1440px) {
  .app .instruction__wrapper {
    padding: 64px 50px;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px 77px;
  }
}
.app .instruction__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .instruction__title {
    font-size: 64px;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 1440px) {
  .app .instruction__title {
    grid-column: 1/3;
    text-align: left;
  }
}
.app .instruction__video-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-image: url("/static/img/video-image.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .app .instruction__video-wrapper {
    height: 400px;
  }
}
@media screen and (min-width: 1440px) {
  .app .instruction__video-wrapper {
    grid-column: 3/6;
    grid-row: 1/3;
    height: 100%;
  }
}
.app .instruction__video-image {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.app .instruction__video-background {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(6, 6, 6, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.app .instruction__video-btn-play {
  z-index: 3;
  cursor: pointer;
}
.app .instruction__video {
  width: 100%;
  height: 100%;
}
.app .instruction__desc-action {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .app .instruction__desc-action {
    width: 426px;
    gap: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .app .instruction__desc-action {
    width: 100%;
    gap: 48px;
  }
}
@media screen and (min-width: 1440px) and (min-width: 1440px) {
  .app .instruction__desc-action {
    grid-column: 1/3;
  }
}
.app .instruction__desc {
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .app .instruction__desc {
    text-align: left;
  }
}
.app #player-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.app #player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.app .support {
  background-image: url("/static/img/background/background.png");
  background-repeat: repeat;
  background-size: contain;
  background-position: top center;
}
@media screen and (min-width: 768px) {
  .app .support {
    background-image: url("/static/img/background/background-tab.png");
  }
}
@media screen and (min-width: 1440px) {
  .app .support {
    background-image: url("/static/img/background/background.png");
  }
}
.app .support__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .support__wrapper {
    gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .support__wrapper {
    gap: 0;
  }
}
.app .support__wrapper-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .support__wrapper-desc {
    gap: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .app .support__wrapper-desc {
    gap: 48px;
  }
}
.app .support__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .support__title {
    font-size: 64px;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 1440px) {
  .app .support__title {
    text-align: left;
    width: 692px;
  }
}
.app .support__desc {
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .app .support__desc {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    width: 452px;
  }
}
@media screen and (min-width: 1440px) {
  .app .support__desc {
    font-size: 24px;
    text-align: left;
    width: 427px;
    margin-left: 0;
  }
}
.app .support__message-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .support__message-wrapper {
    gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .support__message-wrapper {
    gap: 48px;
  }
}
.app .support__message-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .support__message-list {
    gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .support__message-list {
    gap: 48px;
  }
}
.app .support__message-list-item {
  display: flex;
  align-items: start;
  gap: 12px;
  justify-content: start;
  width: 100%;
}
.app .support__message-list-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .app .support__message-list-item {
    gap: 16px;
  }
  .app .support__message-list-item:nth-child(2n+1) {
    justify-content: end;
  }
}
@media screen and (min-width: 1440px) {
  .app .support__message-list-item {
    padding-right: 111px;
  }
  .app .support__message-list-item:nth-child(even) {
    padding-left: 111px;
  }
}
.app .support__message {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background-color: var(--light-color);
  box-shadow: 1px 1px 6px 0px rgba(6, 6, 6, 0.1019607843);
  width: 100%;
}
.app .support__message--answer {
  background-color: var(--light-grey);
}
@media screen and (min-width: 768px) {
  .app .support__message {
    gap: 16px;
    padding: 24px;
    width: 523px;
  }
}
@media screen and (min-width: 1440px) {
  .app .support__message {
    width: 568px;
  }
}
.app .support__message-avtor {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 1440px) {
  .app .support__message-avtor {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .app .support__message-text {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1440px) {
  .app .support__message-text {
    font-size: 24px;
  }
}
.app .support__image-wrapper {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .app .support__image-wrapper {
    height: 146.15px;
  }
}
@media screen and (min-width: 1440px) {
  .app .support__image-wrapper {
    height: 160px;
  }
}
.app .support__image-message {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .app .support__btn-item {
    width: 366px;
  }
}
@media screen and (min-width: 1440px) {
  .app .support__image-avtor {
    width: 64px;
    height: 64px;
  }
}

.app .reviews__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .reviews__wrapper {
    gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .reviews__wrapper {
    gap: 48px;
  }
}
.app .reviews__title {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .reviews__title {
    font-size: 64px;
    letter-spacing: -0.02em;
  }
}

@media screen and (min-width: 1440px) {
  .app .faq {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.app .faq__wrapper {
  padding: 24px 16px;
  border-radius: 16px;
  background-color: var(--light-grey);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .faq__wrapper {
    gap: 40px;
    padding: 48px 24px;
  }
}
@media screen and (min-width: 1440px) {
  .app .faq__wrapper {
    gap: 48px;
    padding: 64px 221.5px;
  }
}
.app .faq__title {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .faq__title {
    font-size: 64px;
    letter-spacing: -0.02em;
  }
}
.app .faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .app .faq__list {
    gap: 16px;
  }
}
.app .faq__list-item-icon {
  min-width: 24px;
}
.app .faq__item-btn {
  padding: 12px;
  border-radius: 8px;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .app .faq__item-btn {
    gap: 16px;
    padding: 24px;
  }
}
.app .faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .app .faq__question {
    gap: 24px;
  }
}
.app .faq__question-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .app .faq__question-wrapper {
    gap: 16px;
  }
}
.app .faq__question-number {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9.5px;
  background-color: var(--light-color);
  color: var(--dark-green);
  font-size: 10px;
  border-radius: 64px;
}
@media screen and (min-width: 768px) {
  .app .faq__question-number {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    padding: 4px 15px;
  }
}
.app .faq__question-title {
  font-weight: 400;
  text-align: left;
  color: var(--color-text);
}
@media screen and (min-width: 768px) {
  .app .faq__question-title {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease-in-out;
}
.app .faq__answer-text {
  text-align: left;
  color: var(--color-text);
}
@media screen and (min-width: 768px) {
  .app .faq__answer-text {
    font-size: 16px;
  }
}
.app .faq__answer--active {
  max-height: 500px;
}

.app .start__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .start__wrapper {
    gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .start__wrapper {
    gap: 48px;
  }
}
.app .start__title {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .start__title {
    font-size: 64px;
    letter-spacing: -0.02em;
  }
}
.app .start__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 1440px) {
  .app .start__list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.app .start__list-item {
  padding: 16px;
  background-color: var(--lime-color);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.app .start__list-item:nth-child(even) {
  background-color: var(--blue-color);
  color: var(--white-color);
}
@media screen and (min-width: 768px) {
  .app .start__list-item {
    gap: 64px;
    padding: 24px;
  }
}
.app .start__desc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .start__desc-wrapper {
    width: 429.72px;
  }
}
.app .start__list-item-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .app .start__list-item-title {
    font-size: 40px;
    letter-spacing: -0.02em;
  }
}
.app .start__includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app .start__includes-item {
  display: flex;
  align-items: start;
  gap: 16px;
}
.app .start__includes-item-text {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--color-text);
}
.app .start__includes-item-icon {
  min-width: 24px;
  min-height: 24px;
}
.app .start__action-btn {
  justify-content: left;
}
.app .start__action-item {
  color: var(--color-text);
  transition: all 400ms ease-in-out;
}
.app .start__action-item:hover {
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .app .start__action-item {
    width: 343px;
  }
}
.app .start__images-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}
.app .start__image {
  width: 33.96px;
  height: 48px;
}
@media screen and (min-width: 768px) {
  .app .start__image {
    position: absolute;
  }
  .app .start__image--one {
    right: 90px;
    bottom: 150.29px;
    width: 38px;
    height: 53.71px;
  }
  .app .start__image--two {
    right: 129.25px;
    bottom: 110.97px;
    width: 61.75px;
    height: 70.03px;
  }
  .app .start__image--three {
    right: 64.75px;
    bottom: 24px;
    width: 93.25px;
    height: 105px;
  }
  .app .start__image--four {
    width: 45.36px;
    height: 48px;
    right: 125.96px;
    bottom: 151.04px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .app .start__image--four {
    right: 85.96px;
  }
}
@media screen and (min-width: 768px) {
  .app .start__image--five {
    width: 82.56px;
    height: 48px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .app .start__image--five {
    width: 132.22px;
    height: 76.87px;
    right: 64.78px;
    bottom: 67.13px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .app .start__image--five {
    right: 24.78px;
  }
}
@media screen and (min-width: 768px) {
  .app .start__image--six {
    width: 33.06px;
    height: 48px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .app .start__image--six {
    width: 54.86px;
    height: 79.65px;
    right: 65.14px;
    bottom: 24.35px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .app .start__image--six {
    right: 25.15px;
  }
}
@media screen and (min-width: 1440px) {
  .app .start__image--one {
    right: 50px;
  }
  .app .start__image--two {
    right: 89.25px;
  }
  .app .start__image--three {
    right: 24.25px;
  }
}

.app .reviews-list {
  cursor: grab;
  user-select: none;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-right: 16px;
}
.app .reviews-list.dragging {
  cursor: grabbing;
}
.app .reviews-list-item {
  width: 240px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .app .reviews-list-item {
    width: 523px;
  }
}
@media screen and (min-width: 1440px) {
  .app .reviews-list-item {
    width: 686px;
  }
}
.app .reviews-list-item--odd .reviews-list-item__wrapper {
  background-color: var(--light-color);
}
.app .reviews-list-item--odd .reviews-list-item__icon {
  fill: var(--light-color);
}
.app .reviews-list-item--even .reviews-list-item__wrapper {
  background-color: var(--blue-color);
}
.app .reviews-list-item--even .reviews-list-item__icon {
  fill: var(--blue-color);
}
.app .reviews-list-item:first-child::before {
  content: none;
  width: 100%;
  height: 2px;
  background-color: var(--black-color);
}
.app .reviews-list-item__wrapper {
  position: relative;
  padding: 24px 15.5px;
  border-radius: 16px;
}
.app .reviews-list-item__wrapper-text {
  height: 217px;
  line-height: 1.4;
}
.app .reviews-list-item__icon {
  position: absolute;
  left: 16px;
  bottom: -26px;
}
.app .reviews-list-item__avtor-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
  margin-top: 36.84px;
}
.app .reviews-list-item__avtor-name {
  font-weight: 500;
}
.app .slide-divider {
  position: relative;
  width: 32px;
  height: 100%;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .app .slide-divider {
    width: 127px;
  }
}
.app .slide-divider-full {
  max-width: 396px;
}
.app .slide-divider .line {
  height: 2px;
  background-color: #333;
  width: 100%;
  position: relative;
  z-index: 1;
}
.app .slide-divider .circle {
  width: 12px;
  height: 12px;
  background-color: white;
  border: 2px solid #333;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.app .slide-divider .left {
  left: 0;
  transform: translate(-50%, -50%);
}
.app .slide-divider .right {
  right: 0;
  transform: translate(50%, -50%);
}
.app .slide-divider-full {
  width: 16px;
}
@media screen and (min-width: 768px) {
  .app .slide-divider-full {
    width: 127px;
  }
}
@media screen and (min-width: 1440px) {
  .app .slide-divider-full {
    width: 100%;
  }
}

.app .tariffs {
  margin-top: 63px;
}
@media screen and (min-width: 768px) {
  .app .tariffs {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1440px) {
  .app .tariffs {
    margin-top: 104px;
  }
}
.app .tariffs__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .tariffs__wrapper {
    gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .tariffs__wrapper {
    gap: 48px;
  }
}
.app .tariffs__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .tariffs__title {
    font-size: 64px;
    letter-spacing: -0.02em;
  }
}
.app .tariffs__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 1440px) {
  .app .tariffs__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.app .tariffs__list-item {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid #eaeaea;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .app .tariffs__list-item {
    padding: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .app .tariffs__list-item {
    gap: 100px;
  }
}
.app .tariffs__list-item--one {
  background-color: var(--white-color);
}
.app .tariffs__list-item--two {
  background-color: var(--light-grey);
}
.app .tariffs__list-item--three {
  background-color: var(--light-color);
}
.app .tariffs__list-item--four {
  background-color: var(--black-color);
  color: var(--white-color);
}
.app .tariffs__list-item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .tariffs__list-item-wrapper {
    gap: 24px;
  }
}
.app .tariffs__list-item-title-price {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: currentColor;
}
.app .tariffs__list-item-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .app .tariffs__list-item-title {
    font-size: 32px;
  }
}
.app .tariffs__list-item-price {
  display: flex;
  align-items: end;
  gap: 8px;
}
.app .tariffs__list-item-totalPrice {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}
.app .tariffs__list-item-days-wrapp {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
.app .tariffs__list-item-desc {
  color: #7a7a7a;
}
@media screen and (min-width: 768px) {
  .app .tariffs__list-item-desc {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .tariffs__action-btn {
  margin-top: auto;
  padding: 13px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .app .tariffs__action-btn {
    padding: 13.5px;
    width: 284px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1440px) {
  .app .tariffs__action-btn {
    width: 100%;
  }
}
.app .tariffs__action-item {
  width: 100%;
  transition: all 300ms ease-in-out;
}
.app .tariffs__action-item:hover {
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .app .tariffs__action-item {
    width: 284px;
  }
}
@media screen and (min-width: 1440px) {
  .app .tariffs__action-item {
    width: 100%;
  }
}
.app .tariffs__action-item--black {
  background-color: var(--black-color);
  color: var(--white-color);
}

.app .includes__wrapper {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
}
@media screen and (min-width: 768px) {
  .app .includes__wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.app .includes__tabel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  background-color: var(--light-grey);
  width: 586px;
  border-radius: 16px;
}
@media screen and (min-width: 768px) {
  .app .includes__tabel {
    width: 100%;
    pad: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .app .includes__tabel {
    padding: 24px;
  }
}
.app .includes__list-item:nth-child(odd) {
  background-color: var(--light-grey);
}
.app .includes__list-item:nth-child(even) {
  background-color: var(--white-color);
}
.app .includes__list-header {
  border-radius: 16px 16px 0 0;
}
.app .includes__list-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8px;
  padding-right: 8px;
}
@media screen and (min-width: 768px) {
  .app .includes__list-item {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
  }
}
.app .includes__header-item {
  padding: 19.5px 10px;
  width: 100px;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .includes__header-item {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    width: 100%;
    padding: 17.5px 10px;
  }
}
@media screen and (min-width: 1440px) {
  .app .includes__header-item:first-child {
    font-size: 24px;
    text-align: left;
  }
}
.app .includes__body-list-item {
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .app .includes__body-list-item {
    padding: 8px 16px;
  }
}
.app .includes__body-list-item:nth-child(even) {
  background-color: var(--white-color);
  border-radius: 16px;
}
.app .includes__body-list-item:nth-child(odd) {
  background-color: var(--light-grey);
}
.app .includes__body-item {
  padding: 16px 38px;
  width: 100px;
}
.app .includes__body-item:first-child {
  padding: 11px 8px;
  width: 124px;
}
@media screen and (min-width: 1440px) {
  .app .includes__body-item:first-child {
    width: 268px;
    padding: 17.5px 9.5px;
  }
}
@media screen and (min-width: 768px) {
  .app .includes__body-item {
    width: 124px;
  }
}
@media screen and (min-width: 1440px) {
  .app .includes__body-item {
    width: 245px;
    padding: 16px 110.5px;
  }
}
.app .includes__body-item-text {
  text-align: center;
  width: 100%;
}

@keyframes bounceIn {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px); /* Adjust for desired bounce height */
  }
  60% {
    transform: translateY(-15px);
  }
}
.app .hero-about {
  padding-top: 63px;
  background-image: url("/static/img/background/background.png");
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .app .hero-about {
    padding-top: 80px;
    background-image: url("/static/img/background/background-tab.png");
  }
}
@media screen and (min-width: 1440px) {
  .app .hero-about {
    padding-top: 104px;
    background-image: url("/static/img/background/background.png");
  }
}
.app .hero-about__wrapper {
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .hero-about__wrapper {
    padding-top: 170px;
    padding-bottom: 236px;
    position: relative;
  }
}
@media screen and (min-width: 1440px) {
  .app .hero-about__wrapper {
    padding-top: 210px;
    padding-bottom: 221px;
  }
}
.app .hero-about__icons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.app .hero-about__icon {
  flex: 0 0 25%;
  max-width: 25%;
  margin-left: -10px;
  transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.app .hero-about__icon:first-child {
  margin-left: 0;
}
.app .hero-about__icon:hover {
  transform: scale(1.2);
}
@media screen and (min-width: 768px) {
  .app .hero-about__icon {
    position: absolute;
  }
}
.app .hero-about__icon--one {
  animation: bounceIn 1s ease-out;
  animation-delay: 200ms;
}
@media screen and (min-width: 768px) {
  .app .hero-about__icon--one {
    left: 0;
    top: 84px;
  }
}
@media screen and (min-width: 1440px) {
  .app .hero-about__icon--one {
    width: 160px;
    height: 160px;
    left: 142px;
    top: 80px;
  }
}
.app .hero-about__icon--two {
  animation: bounceIn 1s ease-out;
  animation-delay: 100ms;
}
@media screen and (min-width: 768px) {
  .app .hero-about__icon--two {
    width: 40px;
    height: 40px;
    right: 0;
    top: 111px;
    transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .app .hero-about__icon--two:hover {
    transform: scale(1.2);
  }
}
@media screen and (min-width: 1440px) {
  .app .hero-about__icon--two {
    width: 64px;
    height: 64px;
    right: 0;
    top: 231px;
  }
}
.app .hero-about__icon--three {
  animation: bounceIn 1s ease-out;
  animation-delay: 300ms;
}
@media screen and (min-width: 768px) {
  .app .hero-about__icon--three {
    width: 64px;
    height: 64px;
    right: 114px;
    top: 67px;
  }
}
@media screen and (min-width: 1440px) {
  .app .hero-about__icon--three {
    width: 95px;
    height: 95px;
    right: 189px;
    top: 168px;
  }
}
.app .hero-about__icon--four {
  animation: bounceIn 1s ease-out;
  animation-delay: 400ms;
}
@media screen and (min-width: 768px) {
  .app .hero-about__icon--four {
    width: 64px;
    height: 64px;
    right: 207px;
    bottom: 95px;
  }
}
@media screen and (min-width: 1440px) {
  .app .hero-about__icon--four {
    width: 95px;
    height: 95px;
    right: 461px;
    bottom: 80px;
  }
}
.app .hero-about__title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.app .hero-about__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .hero-about__title {
    font-size: 40px;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 1440px) {
  .app .hero-about__title {
    font-size: 64px;
    width: 870px;
  }
}
.app .hero-about__theses-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
}
.app .hero-about__theses {
  display: flex;
  align-items: center;
  gap: 4px;
  width: max-content;
}
.app .hero-about__theses-item {
  border-radius: 48px;
  transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.app .hero-about__theses-item:hover {
  transform: scale(1.2);
}
@media screen and (min-width: 768px) {
  .app .hero-about__theses-item {
    position: absolute;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .hero-about__theses-item--one {
  padding: 15.5px 37px;
  background-color: var(--light-color);
}
@media screen and (min-width: 768px) {
  .app .hero-about__theses-item--one {
    padding: 13.5px 41.5px;
    top: 60px;
    left: 272px;
  }
}
@media screen and (min-width: 1440px) {
  .app .hero-about__theses-item--one {
    padding: 19.5px 51.5px;
    left: 643px;
    top: 85px;
  }
}
.app .hero-about__theses-item--two {
  padding: 15.5px 26.5px;
  background-color: var(--light-violet);
}
@media screen and (min-width: 768px) {
  .app .hero-about__theses-item--two {
    padding: 13.5px 29px;
    left: 0;
    bottom: 164px;
  }
}
@media screen and (min-width: 1440px) {
  .app .hero-about__theses-item--two {
    padding: 19.5px 39px;
    bottom: 343px;
  }
}
.app .hero-about__theses-item--three {
  padding: 15.5px 24px;
  background-color: var(--light-color);
}
@media screen and (min-width: 768px) {
  .app .hero-about__theses-item--three {
    padding: 13.5px 26px;
    left: 184px;
    bottom: 127px;
  }
}
@media screen and (min-width: 1440px) {
  .app .hero-about__theses-item--three {
    padding: 19.5px 46px;
    left: 167px;
    bottom: 154px;
  }
}
.app .hero-about__theses-item--four {
  padding: 15.5px 24px;
  background-color: var(--light-violet);
}
@media screen and (min-width: 768px) {
  .app .hero-about__theses-item--four {
    padding: 13.5px 24px;
    right: 0;
    bottom: 164px;
  }
}
@media screen and (min-width: 1440px) {
  .app .hero-about__theses-item--four {
    padding: 19.5px 54px;
    right: 31px;
    bottom: 237px;
  }
}

@media screen and (min-width: 1440px) {
  .app .knowledge {
    padding-bottom: 0;
  }
}
.app .knowledge__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px 16px;
  background-color: var(--light-grey);
  border-radius: 16px;
}
@media screen and (min-width: 768px) {
  .app .knowledge__wrapper {
    gap: 40px;
    padding: 48px 24.5px;
  }
}
@media screen and (min-width: 1440px) {
  .app .knowledge__wrapper {
    grid-template-columns: 648px 1fr;
    gap: 76px;
  }
}
.app .knowledge__wrapper-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .app .knowledge__wrapper-title {
    gap: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .app .knowledge__wrapper-title {
    gap: 24px;
  }
}
.app .knowledge__title {
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .app .knowledge__title {
    font-size: 64px;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 1440px) {
  .app .knowledge__title {
    text-align: left;
  }
}
.app .knowledge__desc {
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .app .knowledge__desc {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .app .knowledge__btn-item {
    width: 366px;
  }
}
@media screen and (min-width: 1440px) {
  .app .knowledge__swiper {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .app .knowledge__action-mobile {
    display: none;
  }
}
.app .knowledge__action-desc {
  display: none;
}
@media screen and (min-width: 1440px) {
  .app .knowledge__action-desc {
    display: block;
  }
}
@media screen and (min-width: 1440px) {
  .app .knowledge__btn {
    justify-content: start;
  }
}
.app .swiper {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 1440px) {
  .app .swiper {
    max-width: 471px;
    height: 100%;
    overflow: visible;
  }
}
.app .swiper-wrapper {
  display: flex;
}
.app .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: auto;
  box-shadow: 1px 1px 6px 0 rgba(6, 6, 6, 0.1019607843);
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--white-color);
}
.app .swiper-slide__item {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .swiper-slide__item {
    padding: 24px;
    gap: 24px;
  }
}
.app .swiper-slide__item-number {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .app .swiper-slide__item-number {
    font-size: 40px;
    letter-spacing: -0.02em;
  }
}
.app .swiper-slide__image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 140px;
}
@media screen and (min-width: 768px) {
  .app .swiper-slide__image-wrapper {
    width: 378px;
    height: 210px;
  }
}
.app .swiper-slide__image {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.app .swiper-slide__desc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .app .swiper-slide__desc-wrapper {
    gap: 16px;
  }
}
.app .swiper-slide__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .app .swiper-slide__title {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .app .swiper-slide__desc {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .swiper-3d .swiper-slide-shadow {
  background: var(--white-color) !important;
}

@media screen and (min-width: 1440px) {
  .app .mission {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.app .mission__wrapper {
  height: 768px;
  width: 100%;
  background-image: url("/static/img/about/mission-bg.png");
  background-size: 768px 768px;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .app .mission__wrapper {
    background-image: url("/static/img/about/mission-bg-md.png");
  }
}
@media screen and (min-width: 1440px) {
  .app .mission__wrapper {
    background-image: url("/static/img/about/mission-bg-desc.png");
    background-size: 1200px 1200px;
  }
}
.app .mission__image {
  position: absolute;
}
.app .mission__image--one {
  top: 124px;
  left: -19px;
  width: 165.17px;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .app .mission__image--one {
    width: 184.74px;
    height: 112.25px;
    left: 0;
    top: 56.75px;
  }
}
@media screen and (min-width: 1440px) {
  .app .mission__image--one {
    width: 335.38px;
    height: 223.61px;
    left: -17.15px;
    top: 99px;
  }
}
.app .mission__image--two {
  top: 106px;
  left: 104px;
  width: 53px;
  height: 53px;
}
@media screen and (min-width: 768px) {
  .app .mission__image--two {
    left: 156px;
    top: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .mission__image--two {
    width: 95px;
    height: 95px;
    top: 80px;
    left: 264px;
  }
}
.app .mission__image--three {
  top: 58px;
  right: 66.08px;
  height: 48px;
  width: 35.92px;
}
@media screen and (min-width: 768px) {
  .app .mission__image--three {
    width: 48px;
    height: 64.14px;
    right: 235px;
    top: 56px;
  }
}
@media screen and (min-width: 1440px) {
  .app .mission__image--three {
    width: 70px;
    height: 93.53px;
    top: 67.27px;
    right: 370px;
  }
}
.app .mission__image--four {
  top: 167px;
  right: 0;
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 768px) {
  .app .mission__image--four {
    width: 80px;
    height: 80px;
    top: 106px;
  }
}
@media screen and (min-width: 1440px) {
  .app .mission__image--four {
    width: 130px;
    height: 130px;
    right: 47px;
    top: 68px;
  }
}
.app .mission__image--five {
  left: 0;
  bottom: 232px;
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 768px) {
  .app .mission__image--five {
    width: 64px;
    height: 64px;
    bottom: 153px;
  }
}
@media screen and (min-width: 1440px) {
  .app .mission__image--five {
    bottom: 149px;
    left: 118px;
  }
}
.app .mission__image--six {
  bottom: 75px;
  left: 74px;
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 768px) {
  .app .mission__image--six {
    width: 64px;
    height: 64px;
    bottom: 70px;
    left: 272px;
  }
}
@media screen and (min-width: 1440px) {
  .app .mission__image--six {
    bottom: 64px;
    left: 816px;
  }
}
.app .mission__image--one-clone {
  width: 165.17px;
  height: 100px;
  bottom: 123px;
  right: -19.17px;
}
@media screen and (min-width: 768px) {
  .app .mission__image--one-clone {
    width: 184px;
    height: 112.25px;
    right: 0;
    bottom: 72.75px;
  }
}
@media screen and (min-width: 1440px) {
  .app .mission__image--one-clone {
    width: 282px;
    height: 171.34px;
    bottom: 127.66px;
  }
}
.app .mission__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 288px;
}
@media screen and (min-width: 768px) {
  .app .mission__content-wrapper {
    width: 454px;
    gap: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .app .mission__content-wrapper {
    width: 648px;
  }
}
.app .mission__title {
  padding: 9.5px 41.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 48px;
  background-color: var(--light-color);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  width: max-content;
  margin: 0 auto;
}
.app .mission__desc {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .mission__desc {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

.app .improve__form-title-wrapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .improve__form-title-wrapp {
    gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .improve__form-title-wrapp {
    gap: 0;
    position: relative;
  }
}
.app .improve__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1440px) {
  .app .improve__form-wrapper {
    width: 584px;
  }
}
.app .improve__form-title {
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .app .improve__form-title {
    font-size: 64px;
    letter-spacing: -0.02em;
  }
}
.app .improve__form-desc {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .app .improve__form-desc {
    text-align: center;
  }
}
.app .improve__from {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .app .improve__from {
    width: 454px;
  }
}
@media screen and (min-width: 1440px) {
  .app .improve__from {
    width: 400px;
  }
}
.app .improve__form-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .improve__input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .app .improve__input-wrapper {
    gap: 8px;
  }
}
.app .improve__input-name {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .app .improve__input-name {
    font-size: 14px;
  }
}
.app .improve__input {
  padding: 11.5px 24px;
  border-radius: 48px;
  border: 1px solid var(--black-color);
}
.app .improve__input::placeholder {
  color: #7a7a7a;
}
@media screen and (min-width: 768px) {
  .app .improve__input {
    padding: 13.5px 24px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .improve__file-input {
  display: none;
}
.app .improve__file-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.app .improve__images-wrapper {
  overflow: hidden;
  width: 100%;
}
.app .improve__images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .app .improve__images {
    gap: 16px;
  }
}
.app .improve__image {
  width: 85px;
  height: 85px;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .app .improve__image {
    width: 160px;
    height: 160px;
  }
}
.app .improve__image--one-clone {
  width: 100px;
  height: 100px;
  right: 111px;
  top: 11px;
  display: none;
}
@media screen and (min-width: 1440px) {
  .app .improve__image--one-clone {
    display: block;
  }
}
.app .improve__image--clone-one {
  display: none;
}
@media screen and (min-width: 1440px) {
  .app .improve__image--clone-one {
    display: block;
    width: 205px;
    height: 205px;
    top: 200px;
    right: 0;
  }
}
.app .improve__image--clone-two {
  display: none;
}
@media screen and (min-width: 1440px) {
  .app .improve__image--clone-two {
    display: block;
    width: 160px;
    height: 160px;
    bottom: 0;
    right: 156px;
  }
}
@media screen and (min-width: 1440px) {
  .app .improve__image {
    position: absolute;
  }
  .app .improve__image--one {
    top: 11px;
    left: 111px;
  }
  .app .improve__image--two {
    width: 205px;
    height: 205px;
    left: 0px;
    top: 259px;
  }
  .app .improve__image--three {
    width: 100px;
    height: 100px;
    left: 221px;
    bottom: 11px;
  }
  .app .improve__image--four {
    display: none;
  }
  .app .improve__image--five {
    display: none;
  }
}

.app .contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .app .contact__wrapper {
    gap: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .app .contact__wrapper {
    position: relative;
    height: 718px;
    align-items: start;
    gap: 0;
  }
}
.app .contact__title {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .contact__title {
    font-size: 64px;
    letter-spacing: -0.02em;
    width: 688px;
  }
}
@media screen and (min-width: 1440px) {
  .app .contact__title {
    text-align: left;
    width: 536px;
  }
}
.app .contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 0;
}
@media screen and (min-width: 768px) {
  .app .contact__container {
    position: relative;
    overflow: hidden;
    height: 379px;
    width: 688px;
  }
}
@media screen and (min-width: 1440px) {
  .app .contact__container {
    position: static;
    width: 100%;
    height: 100%;
  }
}
.app .contact__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 34.5px;
  padding-bottom: 34.5px;
  width: 144px;
  height: 144px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .app .contact__item {
    padding-top: 0;
    padding-bottom: 0;
    width: 0;
    height: 0;
    position: absolute;
  }
}
.app .contact__item--one {
  background-color: var(--light-color);
}
@media screen and (min-width: 768px) {
  .app .contact__item--one {
    left: 183px;
    bottom: 140px;
    width: 144px;
    height: 144px;
  }
}
@media screen and (min-width: 1440px) {
  .app .contact__item--one {
    width: 205px;
    height: 205px;
    bottom: 261px;
    left: 502px;
  }
}
.app .contact__item--two {
  background-color: var(--blue-color);
}
@media screen and (min-width: 768px) {
  .app .contact__item--two {
    bottom: 0;
    left: 0;
    width: 144px;
    height: 144px;
  }
}
@media screen and (min-width: 1440px) {
  .app .contact__item--two {
    width: 205px;
    height: 205px;
    bottom: 67px;
    left: 261px;
  }
}
.app .contact__item--three {
  background-color: var(--light-violet);
}
@media screen and (min-width: 768px) {
  .app .contact__item--three {
    bottom: 0;
    left: 144px;
    width: 144px;
    height: 144px;
  }
}
@media screen and (min-width: 1440px) {
  .app .contact__item--three {
    width: 205px;
    height: 205px;
    bottom: 62px;
    left: 465px;
  }
}
.app .contact__item--four {
  background-color: var(--light-grey);
}
@media screen and (min-width: 768px) {
  .app .contact__item--four {
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
  }
}
@media screen and (min-width: 1440px) {
  .app .contact__item--four {
    right: -17px;
    width: 316px;
    height: 316px;
    bottom: 64px;
  }
}
.app .contact__item--six {
  background-color: transparent;
  border: 1px solid var(--black-color);
}
@media screen and (min-width: 768px) {
  .app .contact__item--six {
    width: 200px;
    height: 200px;
    bottom: 0;
    right: 200px;
  }
}
@media screen and (min-width: 1440px) {
  .app .contact__item--six {
    width: 316px;
    height: 316px;
    bottom: 64px;
    right: 300px;
  }
}
.app .contact__item--seven {
  background-color: transparent;
  border: 1px solid var(--black-color);
}
@media screen and (min-width: 768px) {
  .app .contact__item--seven {
    width: 200px;
    height: 200px;
    top: 0;
    right: 100px;
  }
}
@media screen and (min-width: 1440px) {
  .app .contact__item--seven {
    width: 316px;
    height: 316px;
    top: 64px;
    right: 142px;
  }
}
.app .contact__item-icon {
  fill: var(--black-color);
}
.app .contact__username {
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .contact__username {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .app .contact__social-name {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .contact__email {
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .contact__email {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .contact__email-name {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .app .contact__email-name {
    font-size: 14px;
  }
}

.app .courses {
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  .app .courses {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1440px) {
  .app .courses {
    margin-top: 104px;
  }
}
.app .courses__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.app .courses__title {
  text-align: center;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .courses__title {
    font-size: 64px;
    letter-spacing: -0.02em;
  }
}
.app .courses__fillter-btn {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 6px 16px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .app .courses__fillter-btn {
    padding: 6px 24px;
    width: max-content;
    margin-left: auto;
  }
}
.app .courses__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .app .courses__list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .app .courses__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.app .courses__list-item {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.app .courses__image-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.app .courses__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app .courses__content-wrapper {
  padding: 16px;
  background-image: url("/static/img/courses/background.png");
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
  flex: 1 1 auto;
}
@media screen and (min-width: 768px) {
  .app .courses__content-wrapper {
    gap: 12px;
  }
}
@media screen and (min-width: 1440px) {
  .app .courses__content-wrapper {
    gap: 12px;
  }
}
.app .courses .action {
  margin-top: auto;
}
.app .courses__topics-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .app .courses__topics-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.app .courses__topics {
  display: flex;
  margin-bottom: auto;
  gap: 8px;
}
.app .courses__class {
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-radius: 48px;
}
.app .courses__topic {
  color: #005095;
  background-color: #ebf5ff;
  padding: 4px 12px;
  border-radius: 48px;
}
.app .courses__lessons {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 4px;
}
.app .courses__title-desc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app .courses__item-title {
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .app .courses__item-title {
    height: 63px;
  }
}
.app .courses__item-desc {
  color: #7a7a7a;
}

.app .login {
  background-image: url("/static/img/background/background.png");
  background-repeat: repeat;
  background-size: contain;
  background-position: top center;
  background-color: #e5eff9;
  padding-top: 64px;
}
@media screen and (min-width: 768px) {
  .app .login {
    background-image: url("/static/img/background/background-tab.png");
    padding-top: 80px;
  }
}
@media screen and (min-width: 1440px) {
  .app .login {
    background-image: url("/static/img/background/background.png");
    padding-top: 104px;
  }
}
.app .login__wrapper {
  padding: 48px 0;
}
@media screen and (min-width: 768px) {
  .app .login__wrapper {
    padding: 58px 0 48px 0;
  }
}
@media screen and (min-width: 1440px) {
  .app .login__wrapper {
    padding: 220px 0 220px 0;
  }
}
.app .login__form-wrapper {
  padding: 16px 24px;
  background-color: var(--white-color);
  border-radius: 24px;
  box-shadow: 2px 2px 10px 0px rgba(6, 6, 6, 0.1019607843);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .app .login__form-wrapper {
    gap: 24px;
    padding: 40px;
    width: 454px;
  }
}
@media screen and (min-width: 1440px) {
  .app .login__form-wrapper {
    width: 648px;
  }
}
.app .login__title {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .login__title {
    font-size: 40px;
    letter-spacing: -0.04em;
  }
}
.app .login__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .login__form {
    gap: 24px;
  }
}
.app .login__form-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .app .login__form-inputs {
    gap: 16px;
  }
}
.app .login__label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app .login__label-title {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .app .login__label-title {
    font-size: 14px;
  }
}
.app .login__lable-required {
  color: #ec0000;
}
.app .login__input {
  border: 1px solid #cecece;
  border-radius: 48px;
  padding: 11.5px 24px;
}
.app .login__input::placeholder {
  color: #7a7a7a;
}
@media screen and (min-width: 768px) {
  .app .login__input {
    padding: 13.5px 24px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .login__forgot-password {
  color: #085c44;
  font-weight: 500;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .app .login__forgot-password {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .login__dont-account-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .app .login__dont-account-wrapper {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .login__register-link {
  font-weight: 500;
}

.app .register {
  background-image: url("/static/img/background/background.png");
  background-repeat: repeat;
  background-size: contain;
  background-position: top center;
  background-color: #e5eff9;
  padding-top: 64px;
}
@media screen and (min-width: 768px) {
  .app .register {
    background-image: url("/static/img/background/background-tab.png");
    padding-top: 80px;
  }
}
@media screen and (min-width: 1440px) {
  .app .register {
    background-image: url("/static/img/background/background.png");
    padding-top: 104px;
  }
}
.app .register__wrapper {
  padding: 46px 0 48px 0;
}
@media screen and (min-width: 768px) {
  .app .register__wrapper {
    padding: 58px 0 48px 0;
  }
}
@media screen and (min-width: 1440px) {
  .app .register__wrapper {
    padding: 58px 0 80px 0;
  }
}
.app .register__form-wrapper {
  padding: 16px 24px;
  background-color: var(--white-color);
  border-radius: 24px;
  box-shadow: 2px 2px 10px 0px rgba(6, 6, 6, 0.1019607843);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .app .register__form-wrapper {
    gap: 24px;
    padding: 40px;
    width: 454px;
  }
}
@media screen and (min-width: 1440px) {
  .app .register__form-wrapper {
    width: 648px;
  }
}
.app .register__title {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .register__title {
    font-size: 40px;
    letter-spacing: -0.04em;
  }
}
.app .register__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .register__form {
    gap: 24px;
  }
}
.app .register__form-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .app .register__form-inputs {
    gap: 16px;
  }
}
.app .register__label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app .register__label-title {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .app .register__label-title {
    font-size: 14px;
  }
}
.app .register__lable-required {
  color: #ec0000;
}
.app .register__input {
  border: 1px solid #cecece;
  border-radius: 48px;
  padding: 11.5px 24px;
}
.app .register__input::placeholder {
  color: #7a7a7a;
}
@media screen and (min-width: 768px) {
  .app .register__input {
    padding: 13.5px 24px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .register__forgot-password {
  color: #085c44;
  font-weight: 500;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .app .register__forgot-password {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .register__dont-account-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .app .register__dont-account-wrapper {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .register__register-link {
  font-weight: 500;
}
.app .register__register-as {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .app .register__register-as {
    gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  .app .register__type-title {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .register__register-as-item input[type=radio] {
  display: none;
}
.app .register__register-as-item input[type=radio]:checked + label::before {
  content: "";
  border-color: #095d45;
  background-color: #095d45;
  box-shadow: inset 0 0 0 3px var(--white-color);
}
.app .register__register-as-item label {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .app .register__register-as-item label {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .register__register-as-item label::before {
  content: "";
  position: relative;
  display: inline-block;
  min-width: 20px;
  height: 20px;
  border: 2px solid #cecece;
  border-radius: 50%;
  vertical-align: middle;
}

.app .dashboard-course-details {
  padding: 46px 16px 48px 16px;
}
@media screen and (min-width: 768px) {
  .app .dashboard-course-details {
    padding: 46px 40px 48px 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-course-details {
    padding: 46px 40px 48px 20px;
  }
}
.app .course-details {
  margin-top: 74px;
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .app .course-details {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1440px) {
  .app .course-details {
    margin-top: 136px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1440px) {
  .app .course-details__wrapper {
    padding: 0 95px;
  }
}
.app .course-details__image-wrapper {
  width: 100%;
  height: 288px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .app .course-details__image-wrapper {
    height: 240px;
  }
}
.app .course-details__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .app .course-details__image {
    object-position: top;
  }
}
.app .course-details__base-info {
  background-color: var(--white-color);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-10px);
  border: 1px solid #eaeaea;
}
@media screen and (min-width: 768px) {
  .app .course-details__base-info {
    margin: 0 16px;
    transform: translateY(-20px);
  }
}
@media screen and (min-width: 1440px) {
  .app .course-details__base-info {
    margin: 0 40px;
  }
}
.app .course-details__info-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.app .course-details__tab {
  padding: 4px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 48px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .app .course-details__tab {
    padding: 6px 12px;
  }
}
.app .course-details__tab--one {
  background-color: var(--light-grey);
}
.app .course-details__tab--two {
  background-color: var(--light-blue);
  color: var(--blue);
}
.app .course-details__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .app .course-details__title {
    font-size: 40px;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 768px) {
  .app .course-details__desc {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    height: 105px;
  }
}
@media screen and (min-width: 1440px) {
  .app .course-details__desc {
    height: 63px;
  }
}
.app .course-details__overview_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .course-details__overview_wrapper {
    gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .course-details__overview_wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.app .course-details__program-wrapper {
  padding: 16px;
  border-radius: 8px;
  background-color: #fefefe;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #eaeaea;
  height: max-content;
  overflow: hidden;
}
@media screen and (min-width: 1440px) {
  .app .course-details__program-wrapper {
    grid-column: 1/span 2;
    grid-row: 1;
  }
}
.app .course-details__course-includes-wrapp {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .course-details__course-includes-wrapp {
    gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .course-details__course-includes-wrapp {
    gap: 24px;
    grid-column: 3;
    grid-row: 1;
  }
}
.app .course-details__course-includes {
  padding: 16px;
  border-radius: 8px;
  background-color: #fefefe;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #eaeaea;
}
.app .course-details__navigation {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 4px 12px;
  background-color: #f9f9f9;
  border-radius: 8px;
  width: 100%;
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .app .course-details__navigation {
    gap: 16px;
    padding: 8px;
  }
}
.app .course-details__assignments-wrapper {
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.app .course-details__navigation-btn {
  padding: 9px 24px;
  color: #7a7a7a;
  font-size: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.app .course-details__navigation-btn--active {
  background-color: var(--white-color);
  color: var(--black-color);
}
@media screen and (min-width: 768px) {
  .app .course-details__navigation-btn {
    padding: 13.5px 41.5px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .course-details__navigation-btn-icon {
  stroke: currentColor;
}
.app .course-details__navigation-line {
  width: 1px;
  background-color: #7a7a7a;
}
.app .course-details__program-desc-wrapp {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .course-details__program-title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .course-details__program-title {
    font-size: 24px;
  }
}
.app .course-details__overview-desc-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .course-details__overview-desc-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.app .course-details__overview-desc-item {
  display: flex;
  align-items: start;
  gap: 8px;
}
.app .course-details__overview-icon {
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
}
@media screen and (min-width: 768px) {
  .app .course-details__overview-desc {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .course-details__includes-title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .course-details__includes-title {
    font-size: 24px;
  }
}
.app .course-details__includes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .course-details__includes-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app .course-details__includes-item-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7a7a7a;
}
@media screen and (min-width: 768px) {
  .app .course-details__includes-item-title {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .course-details__includes-item-number {
  color: #085c44;
}
@media screen and (min-width: 768px) {
  .app .course-details__includes-item-number {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) {
  .app .course-details__action-item {
    padding: 19.5px 100.5px;
    width: max-content;
  }
}
@media screen and (min-width: 1440px) {
  .app .course-details__action-item {
    padding: 19.5px 45px;
    width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .app .course-details__action-item {
    padding: 19.5px;
  }
}
.app .course-details__program {
  display: none;
  flex-direction: column;
  gap: 8px;
}
.app .course-details__program-item {
  padding: 12px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .app .course-details__program-item {
    padding: 16px;
  }
}
.app .course-details__program-lesson {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .course-details__program-lesson {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .course-details__program-lesson-desc {
  position: relative;
  transition: all 300ms ease-in-out;
  max-height: 0px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.app .course-details__program-lesson-desc--active {
  text-wrap: wrap;
  max-height: 500px;
}
.app .course-details__progress {
  width: 100%;
  padding: 16px;
  max-height: max-content;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background-color: #cbe1f3;
}
@media screen and (min-width: 768px) {
  .app .course-details__progress {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    padding: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .app .course-details__progress {
    grid-column: 3;
    grid-row: 1;
    grid-template-columns: 1fr;
    align-self: start;
  }
}
@media screen and (min-width: 1440px) {
  .app .course-details__progress .action {
    display: none;
  }
}
.app .course-details__total-progress {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .course-details__total-progress {
    align-items: start;
  }
}
.app .course-details__progress-title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .course-details__progress-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .app .course-details__progress-title {
    font-size: 16px;
  }
}
.app .course-details__progress-percent-number {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .app .course-details__progress-percent-number {
    display: none;
  }
}
.app .course-details__progress-percent {
  border-radius: 100%;
  width: 100px;
  height: 100px;
  background: #fefefe;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .app .course-details__progress-percent {
    width: 31px;
    height: 31px;
  }
}
.app .course-details__progress-percent-insert {
  width: 90%;
  height: 90%;
  background-color: #cbe1f3;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .app .course-details__progress-percent-insert {
    width: 80%;
    height: 80%;
  }
}
.app .course-details__progress-btn-item {
  padding: 11.5px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .app .course-details__progress-btn-item {
    padding: 13.5px;
  }
}
.app .course-details__progress-btn-arrow {
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .app .course-details__progress-btn-arrow {
    padding: 12px;
  }
}
.app .course-details__progress-percent-wrapp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .app .course-details__progress-percent-wrapp {
    justify-content: start;
  }
}
@media screen and (min-width: 1440px) {
  .app .course-details__progress-percent-wrapp {
    justify-content: end;
  }
}
.app .course-details__progress-number {
  display: none;
}
@media screen and (min-width: 768px) {
  .app .course-details__progress-number {
    display: inline-flex;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .course-details__progress-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.app .course-details__progress-action-desc {
  display: none;
}
@media screen and (min-width: 1440px) {
  .app .course-details__progress-action-desc {
    display: flex;
  }
}
.app .course-details__progress-btn {
  width: 100%;
}
@media screen and (min-width: 1440px) {
  .app .course-details__navigation-btn--start-program {
    display: none;
  }
}
.app .course-details__assigment {
  display: none;
}

@media screen and (min-width: 1440px) {
  .app .dashboard-layout {
    display: flex;
  }
}
.app .dashboard {
  background-color: var(--light-grey);
  width: 100%;
}
.app .dashboard__wrapper {
  padding: 23px 16px 64px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .dashboard__wrapper {
    gap: 16px;
    padding: 23px 40px 64px 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard__wrapper {
    flex-direction: row-reverse;
    justify-content: start;
    gap: 20px;
  }
}
.app .dashboard__statistics-wrapp {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .dashboard__statistics-wrapp {
    flex-direction: row;
    gap: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard__statistics-wrapp {
    flex-direction: column;
    gap: 24px;
    flex: 1;
  }
}
.app .dashboard__lessons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .dashboard__lessons-wrapper {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard__lessons-wrapper {
    grid-column-start: 1;
    flex: 2;
    width: 785px;
  }
}
.app .dashboard-header {
  background-color: var(--white-color);
  border-bottom: 1px solid #eaeaea;
  box-shadow: 1px 1px 6px 0px rgba(6, 6, 6, 0.1019607843);
}
.app .dashboard-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
}
@media screen and (min-width: 768px) {
  .app .dashboard-header__wrapper {
    padding: 8px 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-header__wrapper {
    padding: 18.5px 20px;
  }
}
.app .dashboard-header__mobile-menu {
  padding: 4px;
  border: 1px solid #eaeaea;
  border-radius: 100%;
}
@media screen and (min-width: 768px) {
  .app .dashboard-header__mobile-menu {
    padding: 12px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-header__mobile-menu {
    display: none;
  }
}
.app .dashboard-header__account-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 4px;
  border-radius: 16px;
  background-color: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .app .dashboard-header__account-btn {
    padding: 8px 16px;
  }
}
.app .dashboard-header__account-user {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .app .dashboard-header__account-user {
    width: 261px;
  }
}
.app .dashboard-header__user-name {
  display: none;
  color: var(#14181f);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .app .dashboard-header__user-name {
    display: inline-flex;
  }
}
.app .dashboard-header__title {
  display: none;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 1440px) {
  .app .dashboard-header__title {
    display: inline-flex;
  }
}
.app .activity,
.app .statistics,
.app .lessons,
.app .assignments {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .activity,
  .app .statistics,
  .app .lessons,
  .app .assignments {
    padding: 24px;
    gap: 18px;
  }
}
.app .activity__title-wrapper,
.app .lessons__title-wrapper,
.app .assignments__title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.app .activity__title,
.app .lessons__title,
.app .assignments__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0;
}
.app .activity__more,
.app .lessons__more,
.app .assignments__more {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.app .statistics {
  flex: 1;
  max-height: max-content;
}
.app .statistics__info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.app .statistics__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app .statistics__points, .app .statistics__awwards {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app .statistics__points-title, .app .statistics__awwards-title {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .statistics__points-title, .app .statistics__awwards-title {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .statistics__awwards-number, .app .statistics__coints {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .statistics__awwards-number, .app .statistics__coints {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .statistics__coints {
  display: flex;
  align-items: center;
  gap: 4px;
}
.app .statistics__join-text {
  text-align: center;
}
.app .statistics__join-text {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .app .statistics__action {
    max-width: max-content;
  }
}
.app .statistics__btn-item {
  padding: 11.5px;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .app .statistics__btn-item {
    padding: 9.5px 77.5px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

.app .activity {
  flex: 1;
}
.app .activity__schedule {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.app .activity__schedule-y-axis {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.app .activity__schedule-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.app .activity__chart {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 262px;
}
.app .activity__bar {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: #eaeaea;
  width: 12px;
  height: 100%;
  margin: 0 8px;
}
.app .activity__schedule-days {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.app .activity__bar-fill {
  background-color: var(--light-color);
  height: 0%;
  border-radius: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 1440px) {
  .app .activity {
    max-height: max-content;
  }
}
.app .dashboard-activity {
  padding: 46px 16px 48px 16px;
}
@media screen and (min-width: 768px) {
  .app .dashboard-activity {
    padding: 46px 40px 48px 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-activity {
    padding: 46px 40px 48px 20px;
  }
}
.app .dashboard-activity__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .dashboard-activity__wrapper {
    gap: 16px 40px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-activity__wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.app .dashboard-activity__activity-wrapper {
  padding: 16px;
  border-radius: 16px;
  background-color: var(--white-color);
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .dashboard-activity__activity-wrapper {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-activity__activity-wrapper {
    grid-column: 1/4;
  }
}
.app .dashboard-activity__statistic-grometry {
  padding: 16px;
  border-radius: 16px;
  background-color: var(--white-color);
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .dashboard-activity__activity-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app .dashboard-activity__activity-title {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
.app .dashboard-activity__activity-filter {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 24px;
  border: 1px solid #eaeaea;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
.app .dashboard-activity__grometry-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .app .dashboard-activity__grometry-title-wrapper {
    flex-direction: row;
    gap: 24px;
    margin-left: auto;
  }
}
.app .dashboard-activity__grometry-title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.app .dashboard-activity__grometry-ellipse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.app .dashboard-activity__grometry-ellipse--dark-green {
  background-color: #085c44;
}
.app .dashboard-activity__grometry-ellipse--light-green {
  background-color: #def38c;
}
.app .dashboard-activity__charts {
  position: relative;
  height: 322px;
}
@media screen and (min-width: 768px) {
  .app .dashboard-activity__charts {
    height: 300px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-activity__charts {
    gap: 20px;
  }
}
.app .dashboard-activity__schedule-y-axis {
  height: 304px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .app .dashboard-activity__schedule-y-axis {
    height: 230px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-activity__schedule-y-axis {
    height: 237px;
  }
}
.app .dashboard-activity__schedule-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .app .dashboard-activity__schedule-wrapper {
    gap: 17.14px;
  }
}
.app .dashboard-activity__chart-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  padding-left: 33px;
}
@media screen and (min-width: 768px) {
  .app .dashboard-activity__chart-wrapper {
    padding: 0 26.71px 0 62px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-activity__chart-wrapper {
    padding: 0 44.71px 0 104px;
  }
}
.app .dashboard-activity__chart {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 304px;
}
.app .dashboard-activity__chart--dark-green {
  background-color: #085c44;
  border-radius: 8px;
  width: 8px;
}
@media screen and (min-width: 768px) {
  .app .dashboard-activity__chart--dark-green {
    width: 14.84px;
    border-radius: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-activity__chart--dark-green {
    width: 24.84px;
  }
}
.app .dashboard-activity__chart--light-green {
  background-color: #def38c;
  border-radius: 8px;
  width: 8px;
}
@media screen and (min-width: 768px) {
  .app .dashboard-activity__chart--light-green {
    width: 14.84px;
    border-radius: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-activity__chart--light-green {
    width: 24.84px;
  }
}
@media screen and (min-width: 768px) {
  .app .dashboard-activity__chart {
    gap: 11.87px;
    height: 230px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-activity__chart {
    gap: 19.88px;
    height: 237px;
  }
}
.app .dashboard-activity__chart-day {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .app .dashboard-activity__chart-day {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .dashboard-activity__schedule-y-axis {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .app .dashboard-activity__schedule-y-axis {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .dashboard-activity__lines {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.app .dashboard-activity__chart-item-wrapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4;
}
@media screen and (min-width: 768px) {
  .app .dashboard-activity__chart-item-wrapp {
    gap: 17.14px;
  }
}
.app .dashboard-activity__statistic-grometry-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .dashboard-activity__statistic-grometry-title {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
.app .dashboard-activity__statistic-grometry-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.app .dashboard-activity__statistic-grometry-status-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.app .dashboard-activity__statistic-grometry-status-ellips {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.app .dashboard-activity__statistic-grometry-status-ellips--dark-blue {
  background-color: #3d5690;
}
.app .dashboard-activity__statistic-grometry-status-ellips--light-blue {
  background-color: #97c3e9;
}
.app .dashboard-activity__grometry-diagram {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}
.app .dashboard-activity__grometry-diagram-pie {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#384a87 0% 40%, #92c9f3 40.8% 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.app .dashboard-activity__label {
  position: absolute;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  z-index: 3;
}
.app .dashboard-activity__label-60 {
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  color: black;
}
.app .dashboard-activity__label-40 {
  top: 40%;
  left: 75%;
  transform: translate(-50%, -50%);
  color: white;
}
.app .dashboard-activity__schedule-y-wrapper {
  display: flex;
  align-items: end;
  gap: 10px;
}
.app .dashboard-activity__schedule-y-line {
  width: 100%;
  height: 1px;
  background-color: #eaeaea;
}

.app .sidebar {
  display: none;
  background-color: var(--white-color);
  height: 100vh;
  min-width: 250px;
  max-width: 250px;
  padding: 35px 18px;
  border-right: 1px solid #eaeaea;
}
@media screen and (min-width: 1440px) {
  .app .sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
.app .sidebar__overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 23px;
}
.app .sidebar__overview-title {
  color: #7a7a7a;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
.app .sidebar__navigation {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app .sidebar__navigation-item {
  padding: 12px 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  transition: all 300ms ease-in-out;
}
.app .sidebar__navigation-item:hover {
  background-color: var(--light-color);
  border-radius: 8px;
  transform: scale(1.05) translateX(5px);
}
.app .sidebar__navigation-item--active {
  background-color: var(--light-color);
  border-radius: 8px;
  position: relative;
}
.app .sidebar__navigation-item--active::before {
  content: "";
  height: 100%;
  width: 4px;
  border-radius: 8px;
  background-color: var(--black-color);
  position: absolute;
  left: -2px;
  top: 0;
}
.app .sidebar__navigation-item-icon {
  fill: none;
  stroke: var(--black-color);
}

@media screen and (min-width: 1440px) {
  .app .lessons {
    max-height: 785px;
  }
}
.app .lessons__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 1440px) {
  .app .lessons__cards {
    overflow-y: auto;
  }
}
.app .lessons__card-item {
  padding: 16px;
  border-radius: 8px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #eaeaea;
}
@media screen and (min-width: 768px) {
  .app .lessons__card-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.app .lessons__courses-class {
  background-color: #eaeaea;
}
.app .lessons__lesson-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .app .lessons__lesson-wrapper {
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
}
.app .lessons__image-wrapper {
  position: relative;
  width: 100%;
  height: 75px;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .app .lessons__image-wrapper {
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 768px) {
  .app .lessons__image-wrapper {
    height: 75px;
  }
}
.app .lessons__image {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.app .lessons__info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app .lessons__desc-wrapp {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.app .lessons__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
.app .lessons__desc {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .app .lessons__action {
    display: flex;
    justify-content: end;
  }
}
@media screen and (min-width: 768px) {
  .app .lessons__actrion-btn {
    max-width: max-content;
  }
}
.app .lessons__btn-item {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
  padding: 9.5px;
}
@media screen and (min-width: 768px) {
  .app .lessons__btn-item {
    padding: 9.5px 37.5px;
  }
}
@media screen and (min-width: 1440px) {
  .app .lessons__btn-item {
    padding: 9.5px 57.5px;
  }
}
.app .lessons__topics {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.app .progress-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
}
@media screen and (min-width: 768px) {
  .app .progress-wrapper {
    width: 188px;
    height: 188px;
  }
}
.app .progress-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 300ms ease-in-out;
}
.app .progress-inner {
  width: 95%;
  height: 95%;
  background-color: #f4fbe2;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.app .progress-avatar {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
}

.app .assignments__title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .assignments__title-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.app .assignments__more {
  margin-left: auto;
}
.app .assignments__list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.app .assignments__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .assignments__list {
    gap: 8px;
  }
}
.app .assignments__list-item {
  padding: 16px;
  background-color: #f9f9f9;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .assignments__list-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.app .assignments__item-desc-wrapp {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .app .assignments__item-desc-wrapp {
    width: 200px;
  }
}
@media screen and (min-width: 1440px) {
  .app .assignments__item-desc-wrapp {
    width: 296px;
  }
}
.app .assignments__item-desc {
  color: #7a7a7a;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .app .assignments__item-desc {
    font-size: 14px;
  }
}
.app .assignments__item-title {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .assignments__item-title {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .assignments__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .app .assignments__details {
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
  }
}
.app .assignments__details-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .app .assignments__details-item {
    width: 80px;
  }
}
.app .assignments__poins-number {
  font-size: 18px;
}
.app .assignments__progress-rersents, .app .assignments__poins {
  display: flex;
  align-items: center;
  gap: 4px;
}
.app .assignments__progress {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  overflow: hidden;
  background: conic-gradient(#085c44 0%, #085c44 60%, #cecece 60%, #cecece 100%);
  transform: all 300ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app .assignments__progress-insert {
  width: 60%;
  height: 60%;
  background-color: var(--white-color);
  border-radius: 100%;
}
.app .assignments__btn {
  border-radius: 48px;
  border: 1px solid #cecece;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .app .assignments__btn {
    padding: 0;
    border: none;
  }
}
@media screen and (min-width: 768px) {
  .app .assignments__details-item-name {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .app .assignments__btn-name {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    display: none;
  }
}
.app .assignments__btn-icon {
  display: none;
}
@media screen and (min-width: 768px) {
  .app .assignments__btn-icon {
    display: inline-flex;
    fill: none;
    stroke: var(--black-color);
  }
}
.app .assignments__list-header {
  display: none;
}
@media screen and (min-width: 768px) {
  .app .assignments__list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 16px;
  }
}
.app .assignments__list-header-column {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: start;
}
.app .assignments__list-header-column--item {
  width: 80px;
  color: #7a7a7a;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .app .assignments__list-header-column--item-subject {
    width: 200px;
  }
}
@media screen and (min-width: 1440px) {
  .app .assignments__list-header-column--item-subject {
    width: 296px;
  }
}

.app .my-courses {
  padding: 23px 16px 64px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .app .my-courses {
    padding: 23px 40px 64px 40px;
    gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .my-courses {
    gap: 24px;
  }
}
.app .my-courses__content {
  gap: 16px;
  display: flex;
  flex-direction: column;
}
.app .my-courses__filter-popup {
  flex-direction: column;
  border-radius: 8px;
  top: 150px;
  right: 25px;
  display: none;
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  padding: 10px;
  z-index: 1000;
}
@media screen and (min-width: 1440px) {
  .app .my-courses__filter-popup {
    top: 175px;
  }
}
.app .my-courses__filter-select {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.app .my-courses__filter-btn {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.app .my-courses__filter-btn:hover {
  background-color: var(--light-color);
}
@media screen and (min-width: 768px) {
  .app .my-courses__filter-btn {
    gap: 16px;
    padding: 10px 24px;
  }
}
.app .my-courses__filter-btn-active {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  background-color: var(--light-color);
}
@media screen and (min-width: 768px) {
  .app .my-courses__filter-btn-active {
    gap: 16px;
    padding: 10px 24px;
  }
}
.app .my-courses__filter-name {
  font-size: 16px;
}
.app .my-courses__search-bar {
  background-color: var(--white-color);
  border: 1px solid #eaeaea;
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  min-width: fit-content;
}
@media screen and (min-width: 768px) {
  .app .my-courses__search-bar {
    width: 35%;
    margin-left: auto;
    text-align: end;
  }
}
@media screen and (min-width: 1440px) {
  .app .my-courses__search-bar {
    width: 35%;
    margin-left: auto;
    text-align: end;
  }
}
.app .my-courses__search-bar input {
  border: 1px solid #cecece;
  border-radius: 48px;
  padding: 11.5px 24px;
}
.app .my-courses__search-bar input::placeholder {
  color: #7a7a7a;
}
@media screen and (min-width: 768px) {
  .app .my-courses__search-bar input {
    padding: 13.5px 24px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .my-courses__courses-progress, .app .my-courses__courses-recommendations {
  background-color: var(--white-color);
  border: 1px solid #eaeaea;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .my-courses__courses-recommendations-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .my-courses__courses-recommendations-actions {
    flex-direction: row;
    justify-content: space-between;
  }
}
.app .my-courses__courses-recommendations-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}
.app .my-courses__progress-navigation {
  display: flex;
  align-items: center;
  gap: 16px;
}
.app .my-courses__progress-ongoing-btn, .app .my-courses__progress-completed-btn {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
}
.app .my-courses__progress-btn-active {
  color: #085c44;
}
.app .my-courses__progress-btn-active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #085c44;
}
.app .my-courses__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .app .my-courses__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1440px) {
  .app .my-courses__list {
    gap: 12px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.app .my-courses .action {
  margin-top: auto;
}
.app .my-courses__list-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app .my-courses__hidden {
  display: none !important;
}
.app .my-courses__item-title {
  height: auto;
}
.app .my-courses__btn-item {
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 11.5px;
  font-weight: 400;
  width: 80%;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.app .my-courses__btn-arrow {
  background-color: var(--light-color);
  padding: 8px;
}
.app .my-courses__arrow-icon {
  fill: var(--black-color);
}
.app .my-courses__progress-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.app .my-courses__progress-name {
  display: inline-flex;
}
.app .my-courses__class, .app .my-courses__topic {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.app .start-course {
  padding: 46px 16px 48px 16px;
}
@media screen and (min-width: 768px) {
  .app .start-course {
    padding: 46px 40px 48px 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .start-course {
    padding: 46px 40px 48px 20px;
  }
}
@media screen and (min-width: 1440px) {
  .app .start-course__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.app .start-course__program-desc {
  display: none;
}
@media screen and (min-width: 1440px) {
  .app .start-course__program-desc {
    display: block;
  }
}
.app .start-course__lesson-wrapper {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--white-color);
}
@media screen and (min-width: 1440px) {
  .app .start-course__lesson-wrapper {
    grid-column: 1/3;
  }
}
.app .start-course__aboute-lesson-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .start-course__video {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .start-course__video ul {
  list-style: revert;
  padding: revert;
}
.app .start-course__video ol {
  list-style: revert;
  padding: revert;
}
.app .start-course__video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}
.app .start-course__video-content {
  width: 100%;
  height: 100%;
}
.app .start-course__useful-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .start-course__useful-links-title, .app .start-course__aboute-lesson-title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .start-course__useful-links-title, .app .start-course__aboute-lesson-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .app .start-course__aboute-lesson-desc {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .start-course__useful-links-link {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1d50d9;
}
@media screen and (min-width: 768px) {
  .app .start-course__useful-links-link {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .start-course__btn {
  justify-content: start;
}
@media screen and (min-width: 1440px) {
  .app .start-course__btn {
    justify-content: end;
  }
}
@media screen and (min-width: 768px) {
  .app .start-course__btn-item {
    padding: 11.5px 104px;
    max-width: max-content;
  }
}
.app .start-course__program {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1440px) {
  .app .start-course__program {
    background-color: var(--white-color);
    border: 1px solid #eaeaea;
    border-radius: 8px;
  }
}
.app .start-course__program-title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .start-course__program-title {
    font-size: 24px;
  }
}
.app .start-course__program-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app .start-course__program-btn {
  padding: 11px;
  width: 40%;
}
.app .start-course__program-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app .start-course__program-list-item {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  display: flex;
  align-items: start;
  gap: 8px;
}
.app .start-course__program-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app .start-course__program-title-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.app .start-course__program-progress, .app .start-course__program-parts-progress {
  min-width: 28px;
  max-width: 28px;
  height: 28px;
  background: conic-gradient(#d6f07d 0%, #d6f07d 0%, #cecece 0%, #cecece 0%);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app .start-course__program-progress-insert, .app .start-course__program-parts-progress-insert {
  width: 70%;
  height: 70%;
  background-color: var(--white-color);
  border-radius: 100%;
}
.app .start-course__program-item-title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
.app .start-course__program-parts {
  display: flex;
  flex-direction: column;
  max-height: 0;
  gap: 2px;
  overflow: hidden;
  transition: max-height 300ms ease-in-out;
}
.app .start-course__program-parts-active {
  max-height: 400px;
}
.app .start-course__program-parts-item {
  padding: 6px 0px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
}
.app .start-course__program-parts-tile {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
.app .start-course__program-mob {
  display: none;
}
.app .start-course__theory {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.app .start-course__theory ul {
  list-style: revert;
  padding: revert;
}
.app .start-course__theory ol {
  list-style: revert;
  padding: revert;
}
.app .start-course__theory-desc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .start-course__theory-title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .start-course__theory-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .app .start-course__theory-desc {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .start-course__theory-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.app .start-course__theory-actions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1440px) {
  .app .start-course__theory-actions-wrapper {
    gap: 24px;
  }
}
.app .start-course__theory-useful-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .start-course__theory-useful-title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .start-course__theory-useful-title {
    font-size: 24px;
  }
}
.app .start-course__theory-useful-link {
  color: #1d50d9;
}
@media screen and (min-width: 768px) {
  .app .start-course__theory-useful-link {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .start-course__assignment {
  display: none;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .start-course__assignment {
    gap: 40px;
  }
}
.app .start-course__assignment-list {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 5%;
}
.app .start-course__assignment-list-item {
  padding: 12px;
  border-radius: 8px;
  font-size: 20px;
  border: 1px solid #eaeaea;
  gap: 8px;
  transition: all 200ms ease-in-out;
}
.app .start-course__assignment-list-item:hover {
  background-color: var(--light-color);
  border: 1px solid var(--light-color);
}
.app .start-course__assignment-quiz {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .start-course__assignment-quiz-wrapper {
  position: relative;
}
@media screen and (min-width: 768px) {
  .app .start-course__assignment-quiz-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.app .start-course__assignment-quiz-title {
  color: #085c44;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.app .start-course__assignment-quiz-desc {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.app .start-course__assignment-help-wrapper {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .app .start-course__assignment-help-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9.5px 16px;
    border-radius: 24px;
    border: 1px solid #eaeaea;
    background-color: var(--white-color);
  }
}
.app .start-course__assignment-help-name {
  display: none;
}
@media screen and (min-width: 768px) {
  .app .start-course__assignment-help-name {
    display: inline-flex;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .start-course__assignment-task-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .app .start-course__assignment-task-wrapper {
    gap: 16px;
  }
}
.app .start-course__assignment-task-title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .app .start-course__assignment-task-title {
    font-size: 22px;
  }
}
.app .start-course__assignment-tasks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app .start-course__assignment-tasks-item {
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background-color 200ms ease-in-out;
}
.app .start-course__assignment-tasks-item:hover {
  background-color: var(--light-violet);
}
@media screen and (min-width: 768px) {
  .app .start-course__assignment-tasks-item {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .start-course__assignment-tasks-item-user-correct {
  background-color: var(--light-color);
}
.app .start-course__assignment-tasks-item-user-correct:hover {
  background-color: var(--light-color);
}
.app .start-course__assignment-tasks-item-user-incorrect {
  background-color: var(--dark-red);
}
.app .start-course__assignment-tasks-item-user-incorrect:hover {
  background-color: var(--dark-red);
}
.app .start-course__assignment-tasks-item-correct {
  border: 2px solid var(--light-color);
}
.app .start-course__assignment-tasks-item-correct:hover {
  background-color: #f9f9f9;
}
.app .start-course__assignment-tasks-item-incorrect {
  border: 2px solid var(--dark-red);
}
.app .start-course__assignment-tasks-item-incorrect:hover {
  background-color: #f9f9f9;
}
.app .start-course__assignment-tasks-item-selected {
  background-color: var(--light-violet);
}
.app .start-course__assignment-tasks-item input[type=radio] {
  display: none;
}
.app .start-course__assignment-tasks-item input[type=radio]:checked + label::before {
  content: "";
  border-color: #095d45;
  background-color: #095d45;
  box-shadow: inset 0 0 0 3px var(--white-color);
}
.app .start-course__assignment-tasks-item a {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 16px;
}
.app .start-course__assignment-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .app .start-course__assignment-actions {
    justify-content: end;
    flex-direction: row;
  }
}
.app .start-course__assignment-btn-item {
  padding: 11.5px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0, 2em;
  width: 100%;
  background-image: linear-gradient(135deg, var(--light-color) 0, #F0FFD9 51%, var(--light-color) 100%);
  background-size: 300% auto;
}
.app .start-course__assignment-btn-item:not(:disabled):hover {
  background-position: right center;
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .app .start-course__assignment-btn-item {
    padding: 11.5px 24px;
    max-width: max-content;
  }
}
.app .start-course__assignment-action-btn {
  width: 100%;
}
.app .start-course__btn-arrow {
  padding: 10px;
}
.app .start-course__assignment-action {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .app .start-course__assignment-action {
    max-width: max-content;
  }
}
.app .start-course__assignment-btn-arrow {
  padding: 8px;
}
.app .start-course__assignment-image-wrapper {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .app .start-course__assignment-image-wrapper {
    width: 555px;
    height: 300px;
    margin: 0 auto;
  }
}
.app .start-course__assignment-image {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.app .start-course__assignment-task-input {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 10px;
  font-size: 1.7em;
  color: var(--black-color);
}
.app .start-course__assignment-task-input::placeholder {
  color: #7a7a7a;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
.app .start-course__math-container {
  display: flex;
  width: 100%;
  padding-bottom: 10px;
}
.app .start-course__math-container math-field:first-child {
  flex: 0 0 auto;
}
.app .start-course__math-container math-field:last-child {
  flex: 1;
  min-width: 0;
}

.app .assignment-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
  background-color: rgba(6, 6, 6, 0.4);
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  display: none;
  z-index: 999;
}
.app .assignment-modal__content {
  padding: 16px;
  background-color: var(--white-color);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 600px;
  overflow-y: auto;
}
.app .assignment-modal__title-wrapper {
  position: relative;
}
.app .assignment-modal__title {
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .app .assignment-modal__title {
    font-size: 24px;
  }
}
.app .assignment-modal__close-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
}
.app .assignment-modal__close-icon {
  width: 24px;
  height: 24px;
}
.app .assignment-modal__image-wrapper {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .app .assignment-modal__image-wrapper {
    width: 555px;
    height: 300px;
    margin: 0 auto;
  }
}
.app .assignment-modal__image {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.app .assignment-modal__text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app .assignment-modal__text {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .assignment-modal .assignment-modal__close-btn-green {
  padding: 11.5px;
  border-radius: 48px;
  background-color: var(--light-color);
  color: var(--color-text);
  width: 100%;
  position: relative;
  background-color: var(--light-color);
  border: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .app .assignment-modal .assignment-modal__close-btn-green {
    max-width: max-content;
    padding: 9.5px 97.5px;
    margin: 0 auto;
  }
}

.app .assignment-details {
  padding: 46px 16px 48px 16px;
}
@media screen and (min-width: 768px) {
  .app .assignment-details {
    padding: 46px 40px 48px 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .assignment-details {
    padding: 46px 40px 48px 20px;
  }
}
.app .assignment-details__wrapper {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1440px) {
  .app .assignment-details__wrapper {
    padding: 16px 186px;
  }
}
.app .assignment-details__title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .assignment-details__title {
    font-size: 24px;
  }
}
.app .assignment-details__statistics-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .app .assignment-details__statistics-wrapper {
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.app .assignment-details__statistic-item {
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .app .assignment-details__statistic-item {
    gap: 12px;
  }
}
.app .assignment-details__statistic-item--violet {
  background-color: #e6e3fe;
}
.app .assignment-details__statistic-item--blue {
  background-color: #97c3e9;
}
.app .assignment-details__statistic-item--green {
  background-color: #def38c;
}
.app .assignment-details__statistic-number-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 4px;
}
.app .assignment-details__statistic-progress {
  width: 24px;
  height: 24px;
  background: conic-gradient(var(--black-color) 0%, var(--black-color) 60%, var(--white-color) 60%, var(--white-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .app .assignment-details__statistic-progress {
    width: 31px;
    height: 31px;
  }
}
.app .assignment-details__statistic-progress-insert {
  width: 80%;
  height: 80%;
  background-color: #97c3e9;
  border-radius: 50%;
}
.app .assignment-details__statistic-item-name {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .assignment-details__statistic-item-name {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .assignment-details__statistic-number {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .app .assignment-details__statistic-number {
    font-size: 24px;
  }
}
.app .assignment-details__quiz-options-wrappe {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .assignment-details__quiz-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .assignment-details__quiz-list-item {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 8px;
}
.app .assignment-details__quiz-list-item--error {
  background-color: #fdecec;
}
@media screen and (min-width: 768px) {
  .app .assignment-details__quiz-name {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .assignment-details__quiz-question {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
.app .assignment-details__quiz-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app .assignment-details__quiz-options-item {
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.app .assignment-details__quiz-options-radio {
  border-radius: 50%;
  border: 1px solid var(--black-color);
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .app .assignment-details__quiz-options-answer {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    font-weight: 400;
  }
}

.app .dashboard-settings {
  padding: 46px 16px 48px 16px;
}
@media screen and (min-width: 768px) {
  .app .dashboard-settings {
    padding: 46px 40px 48px 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-settings {
    padding: 46px 40px 48px 20px;
  }
}
.app .dashboard-settings__info {
  display: none;
}
.app .dashboard-settings__wrapper {
  padding: 16px;
  background-color: var(--white-color);
  border-radius: 8px;
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
@media screen and (min-width: 1440px) {
  .app .dashboard-settings__wrapper {
    padding: 26px 16px;
    gap: 26px;
  }
}
.app .dashboard-settings__navigatin {
  padding: 4px 8px;
  background-color: #f9f9f9;
  border-radius: 8px;
  display: flex;
  align-items: stretch;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .app .dashboard-settings__navigatin {
    padding: 8px;
    gap: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-settings__navigatin {
    max-width: max-content;
  }
}
.app .dashboard-settings__navigatin-item {
  padding: 9px 29px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #7a7a7a;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .app .dashboard-settings__navigatin-item {
    padding: 13.5px 48.5px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .dashboard-settings__navigatin-item--active {
  background-color: var(--white-color);
  color: var(--black-color);
}
.app .dashboard-settings__info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .app .dashboard-settings__info-wrapper {
    gap: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-settings__info-wrapper {
    gap: 16px;
  }
}
.app .dashboard-settings__info-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .dashboard-settings__info-form-wrapper {
    gap: 24px;
    width: 367px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-settings__info-form-wrapper {
    flex-direction: row;
    gap: 80px;
    align-items: start;
    width: 100%;
  }
}
.app .dashboard-settings__personal-info-wrapper, .app .dashboard-settings__change-password-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.app .dashboard-settings__personal-info-title, .app .dashboard-settings__change-password-title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .dashboard-settings__personal-info-title, .app .dashboard-settings__change-password-title {
    font-size: 24px;
  }
}
.app .dashboard-settings__personal-info-form, .app .dashboard-settings__change-password-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1440px) {
  .app .dashboard-settings__personal-info-form, .app .dashboard-settings__change-password-form {
    width: 360px;
  }
}
.app .dashboard-settings__personal-info-lable, .app .dashboard-settings__change-password-lable {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .app .dashboard-settings__personal-info-lable, .app .dashboard-settings__change-password-lable {
    gap: 8px;
  }
}
.app .dashboard-settings__personal-info-name, .app .dashboard-settings__change-password-name {
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .app .dashboard-settings__personal-info-name, .app .dashboard-settings__change-password-name {
    font-size: 14px;
  }
}
.app .dashboard-settings__personal-info-input, .app .dashboard-settings__change-password-input {
  border-radius: 48px;
  border: 1px solid #cecece;
  padding: 11.5px 24px;
}
.app .dashboard-settings__personal-info-input::placeholder, .app .dashboard-settings__change-password-input::placeholder {
  color: #7a7a7a;
}
@media screen and (min-width: 768px) {
  .app .dashboard-settings__personal-info-input, .app .dashboard-settings__change-password-input {
    padding: 13.5px 24px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .dashboard-settings__save-btn {
  background-color: var(--light-color);
  border-radius: 48px;
  padding: 11.5px;
  width: 100%;
  border: 2px solid var(--light-color);
  transition: all 300ms ease-in-out;
}
.app .dashboard-settings__save-btn:hover {
  color: var(--dark-green);
  background-color: var(--white-color);
}
@media screen and (min-width: 768px) {
  .app .dashboard-settings__save-btn {
    padding: 13.5px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    width: 367px;
  }
}
@media screen and (min-width: 1440px) {
  .app .dashboard-settings__save-btn {
    width: 260px;
  }
}
.app .dashboard-settings__delete-btn {
  color: var(--white-color);
  width: 100%;
  cursor: pointer;
  margin-top: 10px;
  background-color: var(--red);
  border-radius: 48px;
  padding: 11.5px;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.app .dashboard-settings__delete-btn:hover {
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .app .dashboard-settings__delete-btn {
    padding: 13.5px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .dashboard-settings__payment-method {
  display: none;
}
.app .dashboard-settings__invoices {
  display: none;
}
.app .dashboard-settings__subscription {
  display: none;
}
.app .dashboard-settings__subscription-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .app .dashboard-settings__subscription-wrapper {
    gap: 24px;
  }
}
.app .active {
  display: flex;
}

.app .payment-method {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .app .payment-method {
    gap: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .app .payment-method {
    gap: 24px;
  }
}
.app .payment-method__title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .payment-method__title {
    font-size: 24px;
  }
}
.app .payment-method__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .app .payment-method__cards {
    width: 336px;
  }
}
@media screen and (min-width: 1440px) {
  .app .payment-method__cards {
    width: 814px;
    grid-template-columns: 1fr 1fr;
  }
}
.app .payment-method__cards-item {
  padding: 16px;
  background-color: #97c3e9;
  border-radius: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .payment-method__cards-item {
    gap: 29px;
  }
}
.app .payment-method__cards-item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .payment-method__cards-item-wrapper {
    gap: 34px;
  }
}
.app .payment-method__cards-name-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app .payment-method__cards-name {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--white-color);
}
@media screen and (min-width: 768px) {
  .app .payment-method__cards-name {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .payment-method__cards-number {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--white-color);
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .app .payment-method__cards-number {
    font-size: 32px;
  }
}
.app .payment-method__cards-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white-color);
}
.app .payment-method__cards-data-name, .app .payment-method__cards-data-date {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .app .payment-method__cards-data-name, .app .payment-method__cards-data-date {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    font-weight: 500;
  }
}
.app .payment-method__add-card {
  width: 100%;
  height: 100%;
  padding: 29px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f6f6;
  border: 1px dashed #7a7a7a;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .app .payment-method__add-card {
    padding: 51px 112px;
  }
}
.app .payment-method__add-card-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .payment-method__add-card-btn {
    gap: 16px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

.app .add-card-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
  background-color: rgba(6, 6, 6, 0.4);
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  display: none;
  z-index: 999;
}
.app .add-card-modal__content {
  padding: 16px;
  background-color: var(--white-color);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 399px;
}
@media screen and (min-width: 1440px) {
  .app .add-card-modal__content {
    padding: 40px;
  }
}
.app .add-card-modal__title-wrapper {
  position: relative;
}
.app .add-card-modal__title {
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .app .add-card-modal__title {
    font-size: 24px;
  }
}
.app .add-card-modal__close-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
}
.app .add-card-modal__close-icon {
  width: 24px;
  height: 24px;
}
.app .add-card__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.app .add-card__form-inputs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .add-card__form-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .app .add-card__form-input-lable {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .add-card__form-input {
  border: 1px solid #cecece;
  border-radius: 48px;
  padding: 13.5 24px;
}
.app .add-card__form-input::placeholder {
  color: #7a7a7a;
}
@media screen and (min-width: 768px) {
  .app .add-card__form-input {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .add-card__btn-save {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 11.5px;
  border-radius: 48px;
  background-color: var(--light-color);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .app .add-card__btn-save {
    padding: 13.5px;
  }
}

.app .invoices {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.app .invoices__title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .app .invoices__title {
    font-size: 24px;
  }
}
.app .invoices__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .app .invoices__list {
    gap: 16px;
  }
}
.app .invoices__list-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #7a7a7a;
}
@media screen and (min-width: 768px) {
  .app .invoices__list-header {
    padding: 3px 16px;
  }
}
.app .invoices__list-header span {
  width: 25%;
}
.app .invoices__list-header span:nth-of-type(4) {
  display: none;
}
@media screen and (min-width: 768px) {
  .app .invoices__list-header span:nth-of-type(4) {
    display: inline-flex;
  }
}
.app .invoices__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app .invoices__body-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px;
  border: 1px solid #cecece;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .app .invoices__body-row {
    padding: 16px;
  }
}
.app .invoices__body-row .app .invoices__body-item:nth-child(4) {
  display: none;
}
@media screen and (min-width: 768px) {
  .app .invoices__body-row .app .invoices__body-item:nth-child(4) {
    display: inline-flex;
  }
}
.app .invoices__body .app .invoices__body-item {
  width: 25%;
}
.app .invoices__body-item {
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.app .invoices__body-item--not-paid {
  padding: 6px 12px;
  border-radius: 48px;
  background-color: rgba(236, 0, 0, 0.1019607843);
  color: #ec0000;
  width: max-content;
}
.app .invoices__body-item--paid {
  padding: 6px 12px;
  border-radius: 48px;
  background-color: #f4fbe2;
  color: #085c44;
  width: max-content;
}

.app .subscription {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .app .subscription {
    gap: 24px;
  }
}
.app .subscription__title {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .app .subscription__title {
    font-size: 24px;
  }
}
.app .subscription__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1440px) {
  .app .subscription__list {
    gap: 16px;
  }
}
.app .subscription__list-header {
  display: none;
}
@media screen and (min-width: 768px) {
  .app .subscription__list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    color: #7a7a7a;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
}
.app .subscription__list-header span {
  width: 100%;
}
.app .subscription__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .subscription__body-item {
  padding: 16px;
  border: 1px solid #cecece;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .app .subscription__body-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .subscription__body-info-wrapper {
  display: flex;
  align-items: start;
  gap: 16px;
  justify-content: space-between;
  width: 100%;
}
.app .subscription__body-info-name {
  color: #7a7a7a;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .app .subscription__body-info-name {
    display: none;
  }
}
.app .subscription__body-info-desc {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .app .subscription__body-info-desc {
    width: 100%;
  }
}
.app .subscription__body-info-status {
  padding: 6px 12px;
  border-radius: 48px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: max-content;
}
.app .subscription__body-info-status--active {
  background-color: #f4fbe2;
  color: #085c44;
}
.app .subscription__body-info-status--not-active {
  background-color: rgba(236, 0, 0, 0.1019607843);
  color: #ec0000;
}
.app .other-subscriptions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app .other-subscriptions__action-btn {
  padding: 0;
}
@media screen and (min-width: 1440px) {
  .app .other-subscriptions__tariffs-item {
    width: 316px;
  }
}

.app .online-chat {
  padding: 46px 16px 48px 16px;
  height: 100dvh;
}
@media screen and (min-width: 768px) {
  .app .online-chat {
    padding: 46px 40px 48px 40px;
  }
}
@media screen and (min-width: 1440px) {
  .app .online-chat {
    padding: 46px 40px 48px 20px;
  }
}
.app .online-chat__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px;
  background-color: var(--white-color);
  border-radius: 16px;
}
@media screen and (min-width: 768px) {
  .app .online-chat__wrapper {
    padding: 24px;
  }
}
.app .online-chat__menager-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 16px;
  border-bottom: 1px solid #eaeaea;
}
.app .online-chat__menager {
  display: flex;
  align-items: start;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .app .online-chat__menager {
    gap: 27px;
    align-items: center;
  }
}
.app .online-chat__menager-avatar-wrapper {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .app .online-chat__menager-avatar-wrapper {
    width: 64px;
    height: 64px;
  }
}
.app .online-chat__menager-avatar {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.app .online-chat__menager-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app .online-chat__menager-company {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .app .online-chat__menager-company {
    font-size: 24px;
  }
}
.app .online-chat__menager-role {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.app .online-chat__search {
  padding: 4px;
  border-radius: 50%;
  border: 1px solid #eaeaea;
}
.app .online-chat__messages-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  overflow: hidden;
}
.app .online-chat__messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .app .online-chat__messages {
    gap: 24px;
  }
}
.app .online-chat__messages-item-wrapper {
  display: flex;
  align-items: start;
  gap: 8px;
  width: 236px;
}
.app .online-chat__messages-item-wrapper:nth-child(odd) {
  flex-direction: row-reverse;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .app .online-chat__messages-item-wrapper {
    gap: 16px;
    width: 548px;
  }
}
@media screen and (min-width: 1440px) {
  .app .online-chat__messages-item-wrapper {
    width: 646px;
  }
}
.app .online-chat__messages-item-avatar-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .app .online-chat__messages-item-avatar-wrapper {
    height: 32px;
    height: 32px;
  }
}
.app .online-chat__messages-item-avatar {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.app .online-chat__messages-item {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #f6f6f6;
  border-radius: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .app .online-chat__messages-item {
    gap: 16px;
  }
}
.app .online-chat__messages-item-sender {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
.app .online-chat__messages-item-desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .app .online-chat__messages-item-desc {
    gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  .app .online-chat__messages-item-text {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}
.app .online-chat__messages-item-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .app .online-chat__messages-item-image-wrapper {
    border-radius: 16px;
    height: 160px;
  }
}
.app .online-chat__messages-item-time {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.app .online-chat__input-wrapper {
  overflow: hidden;
  position: relative;
}
.app .online-chat__input-file {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
}
.app .online-chat__input {
  width: 100%;
  padding: 13.5px 48px;
  width: 100%;
  border-radius: 48px;
  border: 1px solid #eaeaea;
  outline: none;
}
@media screen and (min-width: 768px) {
  .app .online-chat__input {
    padding: 17.5px 64px;
  }
}
.app .online-chat__input-btn {
  padding: 4px;
  border-radius: 50%;
  background-color: #060606;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}

.app .pagination__wrapper {
  display: flex;
  margin: auto;
  justify-content: center;
  gap: 8px;
  align-items: center;
  padding: 12px;
  backdrop-filter: blur(8px);
}
.app .pagination__wrapper .pag_button {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: black;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.app .pagination__wrapper .pag_button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.app .pagination__numbers {
  display: flex;
}
.app .pagination__page-current {
  color: var(--dark-green);
  padding-left: 5px;
  padding-right: 5px;
  margin: 0 5px 0 5px;
  text-align: center;
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
}
.app .pagination__page-current .pag_button {
  background: rgba(163, 162, 162, 0.4);
  border-color: rgba(255, 255, 255, 0.6);
}
.app .pagination__page, .app .pagination__page-number {
  padding-left: 5px;
  padding-right: 5px;
  margin: 0 5px 0 5px;
  text-align: center;
  transition: opacity 200ms ease-in-out;
  opacity: 1;
}
.app .pagination__page:hover, .app .pagination__page-number:hover {
  opacity: 0.5;
}
.app .pagination__prev-pages {
  display: flex;
}
.app .pagination__next-pages {
  display: flex;
}
.app .pagination__inactive {
  padding-left: 5px;
  padding-right: 5px;
  margin: 0 5px 0 5px;
  opacity: 0.3;
}

.app .lang-switch {
  position: relative;
  display: inline-block;
  transition: all 300ms ease-in-out;
}
.app .lang-switch:hover {
  border-radius: 48px;
  background-color: var(--light-color);
}
.app .lang-switch:hover .lang-switch__toggle {
  border-color: var(--light-color);
}
.app .lang-switch__toggle {
  transition: all 300ms ease-in-out;
  background: none;
  border: 1px solid #eaeaea;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  padding: 4px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .app .lang-switch__toggle {
    border-color: var(--black-color);
    padding: 13.5px 16px;
    border-radius: 48px;
  }
}
.app .lang-switch__menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  list-style: none;
  z-index: 100;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.app .lang-switch:hover .lang-switch__menu, .app .lang-switch.is-open .lang-switch__menu {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}
.app .lang-switch__item {
  width: 100%;
  transition: all 300ms ease-in-out;
}
.app .lang-switch__item:hover {
  background-color: var(--light-color);
}
.app .lang-switch__form {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
}
.app .lang-switch__button {
  width: 100%;
  padding: 1rem 1rem;
  font-size: 16px;
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
}

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