.dev-mark {
    position: fixed;
    right: 1em;
    bottom: 1em;
    padding: 0.5em;
    font-family: Verdana;
    border-radius: 0.5em;
    background-color: rgba(248, 215, 218, .3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Bold.eot');
  src: local(''), local('Rubik-Bold'),
    url('../fonts/Rubik-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Rubik-Bold.woff2') format('woff2'),
    url('../fonts/Rubik-Bold.woff') format('woff'),
    url('../fonts/Rubik-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'NotoSansJP';
  src: url('../fonts/NotoSansJP-Medium-Alphabetic.eot');
  src: local(''), local('NotoSansJP-Medium-Alphabetic'),
    url('../fonts/NotoSansJP-Medium-Alphabetic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/NotoSansJP-Medium-Alphabetic.woff2') format('woff2'),
    url('../fonts/NotoSansJP-Medium-Alphabetic.woff') format('woff'),
    url('../fonts/NotoSansJP-Medium-Alphabetic.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'NotoSansJP';
  src: url('../fonts/NotoSansJP-Bold-Alphabetic.eot');
  src: local(''), local('NotoSansJP-Bold-Alphabetic'),
    url('../fonts/NotoSansJP-Bold-Alphabetic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/NotoSansJP-Bold-Alphabetic.woff2') format('woff2'),
    url('../fonts/NotoSansJP-Bold-Alphabetic.woff') format('woff'),
    url('../fonts/NotoSansJP-Bold-Alphabetic.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'NotoSansJP';
  src: url('../fonts/NotoSansJP-Regular-Alphabetic.eot');
  src: local(''), local('NotoSansJP-Regular-Alphabetic'),
    url('../fonts/NotoSansJP-Regular-Alphabetic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/NotoSansJP-Regular-Alphabetic.woff2') format('woff2'),
    url('../fonts/NotoSansJP-Regular-Alphabetic.woff') format('woff'),
    url('../fonts/NotoSansJP-Regular-Alphabetic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NotoSansJP';
  src: url('../fonts/NotoSansJP-Black-Alphabetic.eot');
  src: local(''), local('NotoSansJP-Black-Alphabetic'),
      url('../fonts/NotoSansJP-Black-Alphabetic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/NotoSansJP-Black-Alphabetic.woff2') format('woff2'),
      url('../fonts/NotoSansJP-Black-Alphabetic.woff') format('woff'),
      url('../fonts/NotoSansJP-Black-Alphabetic.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}


@font-face {
  font-family: 'NotoSans';
  src: url('../fonts/NotoSans-Regular.eot');
  src: local(''), local('NotoSans-Regular'),
    url('../fonts/NotoSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'NotoSans';
  src: url('../fonts/NotoSans-Medium.eot');
  src: local(''), local('NotoSans-Medium'),
    url('../fonts/NotoSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'NotoSans';
  src: url('../fonts/NotoSans-Bold.eot');
  src: local(''), local('NotoSans-Bold'),
    url('../fonts/NotoSans-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'NotoSans';
  src: url('../fonts/NotoSans-Black.eot');
  src: local(''), local('NotoSans-Black'),
    url('../fonts/NotoSans-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Quicksand';
  src: local(''), local('Quicksand-SemiBold'),
    url('../fonts/Quicksand-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

:root {
  --yellow: #ecc01c;
	--black: #2c3339;
	--black-light: #3c444a;
	--blue: #2577ca;
	--grey: #d4d6d7;
	--grey2: #e8e9ea;
	--grey1: #838688;
	--grey-blue: #e6eaec;
	--grey4: #eceff1;
	--grey5: #c3c7c9;
	--grey-6: #616567;
	--error: #f94141;
	--grey7: #b5b8b9;
	--grey5: #c3c7c9;
	--black-light: #3c444a;

  --yellow-hover: #F2CF4D;
  --blue-hover: #408EDD; 
 
  --links-transition: .15s;
  --button-transition: .15s;
  --svg-transition: .15s;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,
*::after,
*::before {
  box-sizing: inherit;
}
body {
  font-family: 'NotoSansJP', sans-serif;
  font-weight: 400;
  font-size: 18px;
  width: 100%;
  margin: 0;
  color: var(--black);
  -webkit-text-size-adjust: auto;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  display: flex;
  flex: 1;
}
section {
  width: 100%;
}
h1, h2, h3, h4, h5 {
  margin: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--links-transition) ease-in-out;
}
a:focus-visible {
  outline: none;
}
a:hover {
  color: inherit;
}
button {
  font-family: 'NotoSansJP', sans-serif !important ;
  padding: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  transition: var(--button-transition);
}
button:focus {
  outline: none;
}
p {
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
address {
  margin: 0;
}
svg,
svg path,
svg circle {
  transition: var(--svg-transition);
}
textarea:focus,
input:focus,
input:focus-visible {
  outline: none;
}
.container {
  max-width: 1344px;
  padding: 0 24px;
  margin: 0 auto;
}
.section-title {
  margin-bottom: 3vh;
  font-size: 32px;
  font-weight: 900;
  line-height: normal;
  text-align: center;
}
.input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.input-wrapper label {
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  color: rgb(44, 51, 57);
}
.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid rgb(212, 214, 215);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--black);

  transition: .15s ease-in-out;
}
.input-wrapper input:focus-visible,
.input-wrapper textarea:focus-visible {
  border-color: var(--blue);
}
.input-wrapper input.invalid,
.input-wrapper textarea.invalid {
  border-color: var(--error);
}
.input-info {
  font-size: 12px;
  color: var(--grey5);
  display: flex;
  flex-wrap: wrap;
}
.input-info > p {
  margin-left: auto;
}
.select::after {
  content: '';
  position: absolute;
  top: 38px;
  right: 13px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #C3C7C9;
  border-top: 2px solid #C3C7C9;
  transform: rotate(135deg);

  transition: .15s ease-in-out;
}
.select-body {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 75px;
  z-index: 500;
  width: 100%;
  padding: 5px 5px 5px 10px;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0px 2px 20px 0px rgba(131, 134, 136, 0.2);

  transition: .15s ease-in-out;
}
.select-list {
  padding-right: 10px;
  max-height: 234px;
  overflow: auto;
}
.select-item {
  padding: 7px 10px;
  transition: .15s ease-in-out;
}
.select-item label {
  display: inline-block;
  width: 100%;
  color: var(--grey1);
  font-weight: 400;
  font-size: 13px;
  cursor: pointer;
  transition: .15s ease-in-out;
}
.select-item:not(:last-child) {
  border-bottom: 1px solid #D4D6D7;
}
.select-item input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  user-select: none;
}
.select-item:first-child {
  padding: 0;
  border: 0;
  opacity: 0;
  visibility: hidden;
  user-select: none;
  position: absolute;
}
.select-item:hover {
  background: rgba(236, 239, 241, 0.4);
}
.select-item:hover label {
  color: #2C3339;
}
.select.open {
  border-color: var(--blue);
}
.select.open .select-body {
  opacity: 1;
  visibility: visible;
}
.select.open::after {
  transform: rotate(315deg);
  bottom: 20%;
}
.error {
  color: var(--error);
  font-size: 12px;
}
.hint {
  position: absolute;
  top: 32px;
  right: 10px;
}
.hint:hover::after {
  opacity: 1;
  visibility: visible;
}
.hint::after {
  opacity: 0;
  visibility: hidden;
  content: 'В пароле должно находится минимум шесть символов, минимум одна строчная буква, минимум одна заглавная буква, минимум одна цифра, минимум один специальный символ. Для пароля используются только буквы из латинского алфавита.';
  position: absolute;
  right: -10px;
  top: 140%;
  display: block;
  padding: 15px;
  width: 291px;
  border-radius: 5px;
  box-shadow: 0px 2px 20px 0px rgba(131, 134, 136, 0.2);
  background-color: white;
  color: var(--grey7);
  font-size: 12px;
  z-index: 50;

  transition: .15s ease-in-out;
}
.account-settings-btns {
  display: flex;
  align-items: center;
  gap: 15px;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  border-radius: 200px;
}
.blue-btn {
  background-color: var(--blue);
  color: white;
  padding: 10px 15px;
}
.blue-btn:hover {
  background-color: var(--blue-hover);
}
.blue-border-btn {
  line-height: 100%;
  padding: 8px 15px;
  border: 2px solid var(--blue);
  color: var(--blue);
}
.blue-border-btn:hover,
.blue-border-btn:focus-visible {
  color: var(--blue-hover);
  border-color: var(--blue-hover);
}
.yellow-btn {
  padding: 10px 15px;
  background-color: var(--yellow);
  color: var(--black);
}
.yellow-btn:hover,
.yellow-btn:focus-visible {
  background-color: #f2cf4d;
}
.yellow-border-btn {
  padding: 8px 15px;
  border: 2px solid var(--yellow);
  color: var(--black);
}
.yellow-border-btn:hover,
.yellow-border-btn:focus-visible {
  color: #E9C22E !important;
}
.blue-link {
  display: inline-block;
  width: max-content;
  font-size: 12px;
  text-decoration: underline;
  color: var(--blue);
}
.checkbox-wrapper {
  position: relative;
}
.checkbox-wrapper input {
  position: absolute;
  left: -4px;
  width: 16px;
  opacity: 0;
}
.checkbox-wrapper label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  user-select: none;
  font-weight: 400;
  font-size: 14px;
  color: #2c3339;
}
.checkbox-wrapper label::before {
  content: '';
  display: block;
  margin-bottom: 2px;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid #2c3339;
  
  background-repeat: no-repeat;
  background-position: center;
  transition: .15s ease-in-out;
}
.invalid-checkbox + label::before {
  border-color: var(--error);
}
.checkbox-wrapper input:checked + label::before {
  background-image: url('../images/check-active.svg');
  border-color: #2577ca;
}
.checkbox-wrapper label:hover::before {
  background-image: url('../images/check-hover.svg');
  border-color: #2577ca;
}
.checkbox-wrapper label:active::before {
  border-color: #2c3339;
}
.input-file {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}
.input-file .btn {
  cursor: pointer;
  border-radius: 7px;
  width: 100%;
}
.input-file .btn:hover {
  opacity: 0.9;
}
.input-file input {
  display: none;
}
.input-file-text {
  font-weight: normal;
  text-align: center;
  font-size: 12px;
}
/* HEADER */

.header {
  background-color: var(--grey-blue);
  height: 85px;
} 
.header-wrapper {
  display: flex;
  align-items: center;
  padding: 12px 21px 12px 0px;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  margin-right: 129px;
}
.header .logo-title {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: 400;
  line-height: 139%;
  text-transform: uppercase;
  color: var(--black);
}
.header .logo-title > span:nth-child(2) {
  font-size: 32px;
  font-weight: 600;
}
.header-list {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-menu {
  display: flex;
  width: 100%;
  align-items: center;
}
.header-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: 24px;
  font-size: 19px;
  text-align: center;
  height: 55px;
  font-style: normal;
  font-weight: 900;
  line-height: 105%;
  text-transform: uppercase;
  background: var(--grey4);
  box-shadow: -4px -3px 13px 0px #FFF, 8px 8px 16px 0px #D6DBE0;
}
.header-list li:first-child .header-nav-link {
  padding-left: 12px;
}
.header-nav-link:hover,
.header-nav-link:focus {
  background: #EFF3F5;
}
.header-nav-link:hover svg,
.header-nav-link:focus-visible svg {
  fill: var(--yellow);
}
.header-nav-link:active,
.header-nav-link.active {
  background: radial-gradient(535.78% 462.36% at 107.52% -383.33%, rgba(236, 192, 28, 0.30) 0%, rgba(236, 192, 28, 0.00) 100%), #D7DADD;
  box-shadow: -3px 4px 6px 0px rgba(255, 255, 255, 0.20), 1px 5px 10px 0px rgba(201, 207, 212, 0.50) inset, 1px 3px 3px 0px rgba(201, 207, 212, 0.70) inset;
}
.header-nav-link:active svg,
.header-nav-link.active svg {
  fill: var(--yellow);
}
.header-control {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.header-control .header-control-list {
  height: 100%;
}
.header-control-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-control-list li {
  position: relative;
}
.header-control-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
  height: 64px;
  white-space: nowrap;
}
.header-control a:hover,
.header-control button:hover {
  color: var(--black);
}
.header-profile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  user-select: none;
  cursor: pointer;
  font-weight: 600;

  font-size: 14px;
  color: rgba(0, 0, 0, 0.45)
}
.header-profile-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-45%);
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 2px 6px 0px rgba(131, 134, 136, 0.20);
  z-index: 1000;
  overflow: hidden;

  transition: .15s ease-in-out;
}
.header-profile-menu-item {
  padding: 7px 20px 7px 10px;
  transition: .15s ease-in-out;
}
.header-profile-menu-item:not(:last-child) {
  border-bottom: 1px solid #D4D6D7;
}
.header-profile-menu-link {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; 
  color: #838688;

  transition: .15s ease-in-out;
}
.header-profile-menu-item:hover {
  background: rgba(236, 239, 241, 0.4);
}
.header-profile-menu-item:hover .header-profile-menu-link {
  color: #2C3339;
}
.header-profile-menu-item:hover .header-profile-menu-link svg path {
  stroke: #2C3339;
}
.header-profile-menu.active {
  opacity: 1;
  visibility: visible;
}
.header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.burger {
  display: none;
}
.site-is-updating {
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(6px)
}
.site-is-updating-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 114%;
  color: rgba(83, 82, 82, 1);
}
.site-is-updating-text span {
  text-align: end;
}
.site-is-updating-mob {
  display: none;
}
.settings-popup-title {
  display: none;
}
.settings-overlay {
  opacity: 0;
  visibility: hidden;
}
.settings-popup {
  position: absolute;
  top: 140%;
  right: 0;
  z-index: 600;
  padding: 20px;
  width: 261px;
  border-radius: 20px;
  background-color: white;

  opacity: 0;
  visibility: hidden;
  user-select: none;

  transition: .15s ease-in-out;
}
.settings-popup.active {
  opacity: 1;
  visibility: visible;
  user-select: auto;
}
.settings-popup h4 {
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}
.settings-swiitcher {
  margin-bottom: 15px;
}
.settings-swiitcher input {
  display: block;
  border: 0;
  width: 56px;
  height: 30px;
  margin: 0;
  border-radius: 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: -4px -3px 10px 0px rgba(255, 255, 255, 0.5),inset 0px 2px 8px 0px rgba(131, 134, 136, 0.6),inset 0px 1px 2px 0px rgba(131, 134, 136, 0.3);
  background-color: rgb(214, 214, 216);
  cursor: pointer;

  background-image: url('../images/switcher.svg');
  background-repeat: no-repeat;
  background-position: left 1px top 3px;
  background-size: 28px 28px;

  transition: .2s ease-in-out;
}
.settings-swiitcher input:checked {
  background-color: rgba(37, 119, 202, 0.6);
  background-position: right 1px top 3px;
}
.settings-volume {
  display: flex;
  align-items: center;
  gap: 10px;
}
.settings-volume input {
  -webkit-appearance: none;
  appearance: none; 
  width: 100%;
  cursor: pointer;
  outline: none;
  border-radius: 10px;
  height: 5px;
  background: var(--grey2);
}
.settings-volume input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none; 
  height: 16px;
  width: 16px;
  background-color: var(--blue);
  border-radius: 50%;
  border: none;
  box-shadow: 0px 0px 4px 0px rgba(131, 134, 136, 0.4);

  transition: .2s ease-in-out;
}
.settings-volume input::-moz-range-thumb {
  height: 16px;
  width: 16px;
  background-color: var(--blue);
  border-radius: 50%;
  border: none;
  
  transition: .2s ease-in-out;
}
.settings-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.file-item {
  display: flex;
  align-items: center;
  margin: 5px 0;
  padding: 8px;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.file-name {
  flex: 1;
  margin-right: 10px;
  word-break: break-word;
}

.remove-file {
  cursor: pointer;
  color: #dc3545;
  font-weight: bold;
  font-size: 25px;
  line-height: 1;
  transition: color 0.2s;
}
.remove-file:hover {
  color: #c82333;
}

/* FOOTER */

.footer {
  margin-top: auto;
}
.footer-top {
  height: 85px;
  /* padding: 40px 0 50px; */
  background-color: var(--black);
}
.footer-top .container {
  height: 100%;
}
.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.footer-wrapper .logo {
  margin: 0;
}
.logo {
  display: flex;
  gap: 3px;
}
.logo-title {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
  color: #929292;
}
.logo-title > span:nth-child(2) {
  font-size: 20px;
  font-weight: 600;
}
.footer-nav {
  margin: 0 auto;
}
.footer-nav-list {
  display: flex;
  align-items: center;
  gap: 65px;
}
.footer-nav-link {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #FFF;
  opacity: 0.7;

  transition: .15s ease-in-out;
}
.footer-nav-link:hover,
.footer-nav-link:focus-visible {
  opacity: 0.5;
  color: #FFF;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 12px 0 13px;
  background-color: #23292E;
}
.footer-bottom a {
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  color: #FFF;
  opacity: .4;
}

/* MODALS */
.graph-modal__container {
  border-radius: 20px;
  padding: 50px 45px 40px 45px;
  box-shadow: 0px 2px 20px 0px rgba(131, 134, 136, 0.2);
}
.graph-modal__close {
  background-image: none;
  width: 20px;
  height: 20px;
  top: 15px;
  right: 15px;
}
.modal-title {
  margin-bottom: 40px;
  font-size: 20px;
  text-align: center;
}
.modal-descr {
  text-align: center;
  font-size: 16px;
}
.signin-modal {
  width: 406px;
}
.modal-fields {
  margin-bottom: 35px;
}
.signin-modal .modal-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.signup-modal {
  width: 737px;
}
.modal-set-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}
.modal-avatar {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
}
.modal-set-avatar-control {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.modal-set-avatar-control input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.modal-set-avatar-control span {
  display: inline-block;
  padding-left: 15px;
  font-size: 10px;
  color: var(--grey7);
}
.signup-modal .modal-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.forgot-psw-modal {
  padding-left: 75px;
  padding-right: 75px;
  width: 466px;
}
.forgot-psw-success-modal {
  width: 334px;
}
.change-psw-modal .modal-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.feedback-modal {
  width: 757px;
  overflow-y: auto;
  overflow-x: clip;
}
.feedback-modal .modal-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 35px;
}
.feedback-modal .modal-fields .input-wrapper:last-of-type {
  grid-column: span 2;
}
.comment-bottom {
  display: flex;
  align-content: center;
  justify-content: space-between;
  margin-top: 10px;
}
.feedback-success-modal {
  width: 384px;
  padding: 30px 45px 45px 45px;
  background: linear-gradient(-14.68deg, rgba(236, 192, 28, 0.2) -79.173%,rgba(236, 192, 28, 0) 64.127%),rgb(255, 255, 255);
}
.feedback-success-modal svg {
  display: flex;
  margin: 0 auto 20px;
}
.policy-modal {
  width: 649px;
}
.policy-modal-wrapper {
  padding-right: 48px;
  max-height: 700px;
  overflow: auto;
  margin-bottom: 30px;
}
.background-image {
  position: absolute;
  inset: 0;
  top: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.background-image picture {
  height: 100%;
  position: relative;
}
.background-image img {
  max-width: 36.385vw;
  max-height: 36.385vw;
  width: 100%;
  height: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  object-fit: contain;
  /* transform: translate(-17px, -2px); */
}
.single-checker {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-72%);
}
/* HOME */
#home {
  overflow: hidden;
}
.home-wrapper {
  position: relative;
  background-image: url('../images/home-background.jpg');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding: 85px 0;
  height: 100%;
}
.home-content {
  position: relative;
  display: flex;
  gap: 85px;
  z-index: 100;
  padding-left: 98px;
}
.home-left {
  display: flex;
  flex-direction: column;
  gap: 115px;
  max-width: 505px;
}
.home-left > .home-text-block:last-of-type {
  padding-right: 14px;
}
.home-text-block {
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(225, 228, 231, 0.6) 0%, rgba(255, 255, 255, 0.6) 47.92%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 16px;
  padding: 16px 16px 16px 24px;
}
.home-text-block p {
  font-size: 23px;
  color: #3c444a;
  font-weight: 600;
  line-height: 147%;
  font-family: 'NotoSans', sans-serif;
}
.home-text-block p span {
  font-size: 28px;
  color: #ecc01c;
  letter-spacing: 0.8px;
}
.home-title-wrapper {
  display: flex;
  flex-direction: column;
  padding: 18px 0 0 36px;
  margin-bottom: 40px;
  width: 557px;
  height: 233px;

  background-image: url('../images/title-gradient.png');
  background-repeat: no-repeat;
}
.home-title {
  font-family: 'NotoSansJP', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase 
}
.home-title-mob {
  display: none;
}
.yellow {
  color: var(--yellow);
}
.home-title-wrapper > .home-title:nth-child(1) {
  border-radius: 20px 20px 20px 0px;
}
.home-title-wrapper > .home-title:nth-child(2) {
  border-radius: 0px 20px 20px 0px;
}
.home-title-wrapper > .home-title:nth-child(3) {
  border-radius: 20px 20px 20px 20px;
}
.home-advantages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 10px 18px 30px;
  max-width: 560px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(225, 228, 231, 0.60) 0%, rgba(255, 255, 255, 0.60) 47.92%, rgba(255, 255, 255, 0.60) 100%);
  backdrop-filter: blur(14.5px);
}
.home-advantages-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
}
.home-advantages-image {
  position: relative;
  flex-shrink: 0;
  width: 115px;
  height: 115px;
}
.home-advantages-bage {
  position: absolute;
  z-index: 10;
}
.home-advantages-descr {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.home-right {
  transform: translateY(75px);
  display: flex;
  align-items: flex-end;
}
.policy-mob {
  opacity: 0;
  visibility: hidden;
  user-select: none;
}
.home-control-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home-control-button {
  font-family: 'NotoSans';
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 25px 10px 10px;
  width: max-content;
  border-radius: 200px;
  /* backdrop-filter: blur(10px); */

  letter-spacing: 0.2px;
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
.home-control-icon {
  display: flex;
  align-items: center;
  justify-content: center ;
  height: 76px;
  width: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);

  transition: .2s ease;
}
.home-control-icon svg {
  width: 56px;
  height: 56px;
}
.yellow-button {
  background: rgba(236, 192, 28, 0.98);
}
.yellow-button:hover,
.yellow-button:focus-visible,
.yellow-button:active {
  background: #ECC01C;
}

.yellow-button:hover .home-control-icon,
.yellow-button:focus-visible .home-control-icon,
.yellow-button:active .home-control-icon,
.blue-button:hover .home-control-icon,
.blue-button:focus-visible .home-control-icon,
.blue-button:active .home-control-icon {
  background: #FFF;
}

.yellow-button:focus-visible svg path,
.yellow-button:active svg path {
  stroke: #ECC01C !important;
}

.yellow-button:hover .home-control-icon svg path {
  stroke: #ECC01C !important;
}

.home-control-panel .home-control-button:first-of-type:hover svg path {
  fill: #ECC01C !important;
}
.blue-button {
  background: rgba(37, 119, 202, 0.98);
  color: #FFF;
}
.blue-button:hover,
.blue-button:focus-visible,
.blue-button:active {
  background: var(--blue);
  color: white;
}
.blue-button:hover .home-control-icon svg path {
  stroke: var(--blue) !important;
}
.blue-button:hover .home-control-icon-assignments svg path:nth-child(1),
.blue-button:hover .home-control-icon-assignments svg path:nth-child(2) {
  fill: var(--blue) !important;
}
.home-checkers-bg {
  position: absolute;
  right: -11.146vw;
  top: -20.635vw;
  z-index: 1;
  height: 65.302vw;
  width: 66.667vw;
}
.hidden {
  display: none;
}
@media (min-width: 1200px) {
  .home-control-panel {
    gap: 1.042vw;
  }
  .home-right {
    transform: translateY(7.3vw);
  }
  .single-checker {
    width: 50.833vw;
    height: 11.302vw;
  }
  .home-container {
    max-width: 70vw;
    width: 100%;
    padding: 0 1.25vw;
  }
  .home-control-button {
    gap: 0.781vw;
    padding: 0.521vw 1.302vw 0.521vw 0.521vw;
    border-radius: 10.417vw;

    font-size: 1.042vw;
  }
  .home-control-icon {
    height: 3.958vw;
    width: 3.958vw;
  }
  .home-control-icon svg {
    width: 2.917vw;
    height: 2.917vw;
  }

  .home-wrapper {
    padding: 4.427vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home-content {
    gap: 4.427vw;
    padding-left: 5.104vw;
    transform: translateY(-3.3vw);
  }
  .home-left {
    gap: 4.8vw;
    max-width: 26.302vw;
  }
  .home-left > .home-text-block:last-of-type {
    padding-right: 0.729vw;
  }
  .home-text-block {
    border-radius: 0.833vw;
    padding: 0.833vw 0.833vw 0.833vw 1.25vw;
  }
  .home-text-block p {
    font-size: 1.198vw;
  }
  .home-text-block p span {
    font-size: 1.458vw;
  }
  .home-title-wrapper {
    padding: 0.938vw 0 0 1.875vw;
    margin-bottom: 2.083vw;
    width: 29.01vw;
    height: 12.135vw;
  }
}

.has-game {
  box-shadow: 0px 4px 25px 0px rgba(236, 192, 28, 0.8);
}
/* ACCOUNT */
#account {
  padding: 40px 0 70px;
  background-image: url('../images/bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 800px;
  overflow: hidden;
}
#account .section-title {
  text-align: start;
}
.account-header {
  display: flex;
  margin-bottom: 40px;
}
.account-persone {
  display: grid;
  grid-template-columns: 150px 244px;
  gap: 0 20px;
  margin-right: 60px;
}
.account-avatar {
  position: relative;
  grid-row: span 2;
  width: 150px;
  height: 150px;
  border-radius: 5px;
  overflow: hidden;
}
.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.account-avatar > form:first-of-type {
  position: absolute;
  left: 3px;
  bottom: 3px;
}
.account-avatar > form:last-of-type {
  position: absolute;
  right: 3px;
  bottom: 3px;
}
.account-change-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 2px 8px;
  border-radius: 5px;
  cursor: pointer;

  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-6);
  background: rgba(255, 255, 255, 0.7);

  transition: .15s ease-in-out;
}
.account-change-avatar:hover {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.8);
}
.account-delete-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.7);
  transition: .15s ease-in-out;
}
.account-delete-avatar:hover {
  background: rgba(255, 255, 255, 0.8);
}
.account-persone-data {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.account-nickname p {
  font-weight: 600;
  font-size: 24px;
  color: var(--black);
}
.account-fullname {
  font-weight: 400;
  font-size: 16px;
  color: var(--grey-6);
}
.accoutn-created {
  font-weight: 400;
  font-size: 12px;
  color: var(--grey7);
}
.account-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(37, 119, 202, 0.1);
  border-radius: 200px;
  background: linear-gradient(5.06deg, rgb(37, 119, 202) -342.141%,rgba(37, 119, 202, 0) 74.407%),radial-gradient(174.98% 165.51% at 98% 206%,rgb(236, 190, 28),rgba(236, 178, 28, 0) 100%), linear-gradient(270.00deg, rgb(236, 192, 28) -136.829%,rgba(236, 192, 28, 0) 52.439%),rgb(255, 255, 255);;
  padding: 0px 25px 0px 35px;
  width: max-content;
  height: 48px;
}
.account-rating > span:first-of-type {
  font-weight: 400;
  font-size: 16px;
  color: var(--black);
}
.account-rating > span:last-of-type {
  font-weight: 600;
  font-size: 24px;
  color: var(--blue);
  line-height: 100%;
}
.account-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-right: 36px;
  width: 243px;
}
.account-stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.account-stat-item > p:first-of-type {
  font-weight: 400;
  font-size: 16px;
  color: var(--grey-6);
}
.account-stat-item > p:last-of-type {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 900;
  font-size: 16px;
  color: var(--grey5);
}
.account-stat-item > p:last-of-type span {
  font-weight: 900;
  font-size: 16px;
  color: var(--black);
}
.account-alerts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.account-subscribe-alert {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 10px;
  border-radius: 10px;
  background: rgba(236, 192, 28, 0.1);
  color: #deb109;
  font-weight: 400;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.02em;
  width: max-content;
}
.account-email-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px;
  border-radius: 10px;
  background: rgb(222, 223, 224, .4);
  font-weight: 600;
  font-size: 14px;
  color: var(--grey1);
}
.no-email {
  padding: 10px 20px;
  flex-wrap: wrap;
}
.no-email a {
  margin-left: 15px;
  color: #2C3339;
  line-height: 95%;
}
.account-tabs {
  display: flex;
  gap: 10px;
}
.account-tab {
  padding: 15px 30px;
  min-width: 202px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  background: rgba(212, 214, 215, 0.5);
  color: #616567;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.account-tab:hover {
  background: rgba(230, 234, 236, 0.9)
}
.account-tab.active {
  background-color: white;
  color: var(--yellow);
}
.account-tab-body {
  padding: 35px 40px 30px 40px;
  background-color: white;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.account-table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.account-table thead th {
  padding: 15px 0;
  background: rgba(230, 234, 236, 0.4);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: var(--grey-6);
}
.account-table thead th:first-of-type {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.account-table thead th:last-of-type {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.account-table tbody td {
  padding: 15px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--grey-6);
  border-bottom: 1px solid #E8E9EA;
}
.account-table-user {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.account-table-user span {
  display: inline-block;
  width: 183px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.account-table tbody td b {
  font-weight: 600;
  margin-right: 15px;
}
.game-table {
  margin-bottom: 32px;
}
.pagination {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pagination p {
  font-weight: 400;
  font-size: 12px;
  color: var(--grey1);
}
.pagination p:last-of-type {
  display: none;
}
.pagination ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pagination ul li a,
.pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  color: var(--black);
}
.pagination ul li.active span {
  background-color: var(--yellow);
  color: white;
}
.table-wrapper {
  overflow: auto;
}
.table-wrapper table {
  width: 1216px;
}
.account-tab-item:not(.active) {
  display: none;
}
.payments-table-wrapper {
  margin-top: 10px;
  padding: 0 15px 0 15px;
  max-height: 320px;
  overflow: auto;
}
.payments-table thead th {
  text-align: start;
  padding-left: 35px;
}
.payments-table tbody td {
  text-align: start;
  padding: 10px 20px;
}
.payments-table tbody td span {
  float: right;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: #C3C7C9;
  border-radius: 10px;
}
*::-webkit-scrollbar-thumb {
  background: #E8E9EA;
  border-radius: 10px;
  border: 1px solid #C3C7C9;
}
.account-settings > form:first-of-type {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #D4D6D7;
}
.account-settings-fields {
  display: grid;
  grid-template-columns: repeat(3, 316px);
  gap: 15px;
  margin-bottom: 20px;
}
.account-settings > form h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0%;
  color: var(--grey5);
}

/* LESSONS CATEGORIES */
.lessons-categories-breadcrumb-wrapper .breadcrumb {
  margin-bottom: 0;
}
.background-gradient {
  width: 340px;
  height: 153px;
  position: absolute;
  border-radius: 10px;
  top: 15px;
  left: 28px;
  z-index: 1;

  background: linear-gradient(99.53deg, #FFFFFF 37.09%, rgba(255, 255, 255, 0) 103.55%),
  radial-gradient(135.92% 176.46% at 9.5% 171.6%, #ECC01C 0%, rgba(236, 192, 28, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */,
  radial-gradient(64.08% 64.08% at 53.93% -25.24%, #ECC01C 0%, rgba(236, 192, 28, 0) 100%),
  radial-gradient(112.76% 451.43% at -27.21% -30.39%, #1CEC88 0%, rgba(236, 192, 28, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
}
#categories {
  padding: 20px 0 70px;
  background-color: rgb(238 239 239);
  background-image: url('../images/lessons-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.levels {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.levels-inner {
  display: flex;
  flex-direction: column;
  gap: 4vh;
  /* max-width: 833px; */
  margin: 0 auto;
  position: relative;
}
.level {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.point-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(238 239 239);
}
 .trengle {
  width: 0; 
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-top: 110px solid red;
  border-radius: 50%;
 }
.point-wrapper::after {
  content: '';
  position: absolute;
  width: 177px;
  height: 177px;
  background-size: contain;
  z-index: 999;
}
.level-2 .point-wrapper::after {
  background-image: url('../images/circle-begin.png');
}
.level-3 .point-wrapper::after {
  background-image: url('../images/circle-middle.png');
}
.level-4 .point-wrapper::after {
  background-image: url('../images/circle-advance.png');
}
.categories-wrapper {
  position: relative;
  padding: 15px 15px 15px 24px;
  border-radius: 15px;
  /* max-width: 766px; */
  width: max-content;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (min-width: 576px) {
  .categories-wrapper {
    border: none !important;
  }
}
.level-name {
  position: absolute;
  top: -17px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgba(44, 51, 57, 0.30);
  padding: 0 5px;
  background-color: rgb(238 239 239);
}
.level-arrow {
  display: none;
  position: absolute;
  left: -10px;
  top: 37px;
  width: 15px;
  height: 106px;
  background-color: rgb(238 239 239);
}
.level-arrow img {
  width: 100%;
  height: 100%;
}
.categories-blocks {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 24px;
}
.categories-block {
  padding: 2.5vh 20px;
  width: 17.71vw;
  min-height: 14.6vh;
  border-radius: 14px;

  background-size: cover;
  background-position: center;
}
.categories-block-title {
  margin-bottom: 10px;
  font-size: clamp(16px, 2vh, 20px);
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
.category-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.category-info-block {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 5px;
  width: 100%;
}
.category-descr {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #838688;
}
.category-number {
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  color: #2C3339;
}

@media (min-width: 1200px) {
  .gradient-line {
    width: 0.104vw !important;
    left: 0.677vw !important;
    top: 4.688vw !important;
  }
  .point-wrapper img {
    width: 1.406vw;
    height: 1.406vw;
  }
  .background-gradient {
    width: 17.708vw;
    height: 7.969vw;
    border-radius: 0.521vw;
    top: 0.781vw;
    left: 1.458vw;
  }
  #categories {
    padding: 20px 0 70px;
  }
  .levels {
    gap: 2.083vw;
  }
  .levels-inner {
    gap: 4vh;
  }
  .level {
    gap: 1.042vw;
  }
  .point-wrapper::after {
    width: 9.219vw;
    height: 9.219vw;
  }
  .categories-wrapper {
    padding: 0.781vw 0.781vw 0.781vw 1.25vw;
    border-radius: 0.781vw;
  }
  .level-name {
    top: -0.6vw;
    left: 1.823vw;
    font-size: 0.833vw;
    padding: 0 0.26vw;
  }
  .categories-blocks {
    gap: 1.25vw;
  }
  .categories-block {
    padding: 2.5vh 1.042vw;
    width: 17.71vw;
    min-height: 14.6vh;
    border-radius: 0.729vw;
  }
  .categories-block-title {
    margin-bottom: 0.521vw;
    font-size: 0.885vw;
  }
  .category-info-block img {
    width: 1.354vw;
    height: 1.354vw;
  }
  .lessons-section-title {
    font-size: 1.667vw;
  }
  .category-info {
    gap: 0.26vw;
  }
  .category-info-block {
    gap: 0.26vw;
  }
  .category-descr {
    font-size: 0.833vw;
  }
  .category-number {
    font-size: 1.042vw;
  }
  .categories-content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* LESSONS */
#lessons {
  padding: 20px 0 70px;
  background-image: url('../images/lessons-detailed-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 800px;
}
.lessons-container {
  padding: 0;
  max-width: 60.8vw;
}
.lessons-total-mob {
  display: none;
}
.lessons-item-progress svg {
  display: none;
}
.lessons-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.042vw;
  width: 61.8vw;
  margin: 0 auto;
}
.lessons-info {
  display: none;
  flex-direction: column;
  align-items: start;
  max-width: 770px;
  margin-bottom: 49px;
  margin: 0 auto 50px auto;
  transform: translateX(-33px);
}
.lessons-info-head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lessons-title {
  font-family: 'NotoSansJP', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0em;
  text-align: left;
  text-transform: uppercase;
}
.lessons-info-head .transpanent {
  font-family: 'NotoSansJP', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;

  color: #83868866;
}
.lessons-info-body {
  display: block;
  margin-top: 10px;

  font-family: 'NotoSansJP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  max-width: 635px;
}
.lessons-item {
  position: relative;
}
.lessons-item-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding: 0.781vw;
  gap: 0.156vw;
  border-radius: 1.042vw;

  background-color: #ffffff;
}
.lessons-item-image {
  width: 100%;
  /* height: 214px; */
  height: 11.14vw;
  border-radius: 0.521vw;
  object-fit: cover;
  object-position: center;
}
.lessons-item-info {
  margin-top: 0.521vw;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
}
.lessons-item-name {
  font-family: 'NotoSansJP', sans-serif;
  font-size: 1.042vw;
  font-weight: 900;
  line-height: 1.25vw;
  letter-spacing: 0em;
  text-align: left;

  color: #2c3339;
  width: 100%;
}
.lessons-item-time-progress {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  width: 100%;
  margin-top: 0.521vw;
}
.lessons-item-time {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.lessons-item-time svg {
  width: 0.625vw;
  height: 0.781vw;
}
.lessons-item-text {
  font-family: 'NotoSansJP', sans-serif;
  font-size: 0.833vw;
  font-weight: 900;
  line-height: 0.99vw;
  letter-spacing: 0em;
  text-align: center;

  display: flex;
  flex-direction: row;
  gap: 0.26vw;
  margin-left: 0.26vw;
}
.lessons-item-progress {
  font-family: 'NotoSansJP', sans-serif;
  font-size: 1.042vw;
  font-weight: 900;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;

  display: flex;
  flex-direction: row;
  gap: 0.26vw;
}
.lessons-item-progressbar {
  margin-top: 0.26vw;
  height: 0.156vw;
  border-radius: 0.26vw;
  background-color: #D4D6D7;

  width: 100%;
}
.lessons-item-progressbar-inner {
  height: 0.156vw;
  border-radius: 0.26vw;
  background-color: #2577CA;
}
.locked::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
}
.locked-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 0 31px;
  width: 100%;
}
.locked-content img {
  margin-bottom: 15px;
  width: 56px;
  height: 56px;
}
.locked-content h3 {
  margin-bottom: 20px;
  color: var(--grey1);
  font-size: 20px;
  text-align: center;
}

/* RESPONSE */
.response-wrapper {
  position: relative;
  padding: 40px 0;
  /* min-height: 790px; */
  height: 100%;
}
.response-block {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}
.response-title {
  max-width: 294px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.response-descr {
  max-width: 480px;
  text-align: center;
  font-size: 16px;
}
.response-block .yellow-btn {
  padding: 15px 50px;
}
.response-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  height: 44px;
  border-radius: 200px;
  background-color: white;
  color: var(--blue);
  font-size: 20px;
  font-weight: 600;
  z-index: 500;
}
.response-subscribe {
  width: 563px;
  padding: 30px;
}
.response-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.response-top p {
  font-size: 16px;
}
.response-price {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 25px;
  background-color: #FFF;
  border-radius: 20px;
}
.response-price > span:first-of-type {
  font-size: 24px;
  font-weight: 900;
  white-space: nowrap;
}
.response-price > span:last-of-type {
  font-size: 40px;
  font-weight: 900;
  color: var(--yellow);
}
.response-middle {
  display: flex;
  position: relative;
  transform: translateX(30px);
}
.response-middle > .response-info:nth-of-type(2) {
  position: absolute;
  z-index: 20;
  left: -40px;
  background-color: #E3EBF4;
  width: 100px;
}
.response-middle > .response-info:nth-of-type(3) {
  position: absolute;
  z-index: 15;
  left: -73px;
  background-color: #C7D9EC;
  width: 100px;
}

/* ARTICLES */
#articles {
  padding: 40px 0;
  background: url('../images/bg.jpg') center / cover no-repeat;
  min-height: 800px;
}
.articles-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin-bottom: 40px;
}
.article-block {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background-color: white;
  padding: 15px;
  cursor: pointer;
}
.article-block img {
  margin-bottom: 10px;
  width: 100%;
  height: 214px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}
.article-block-content {
  height: 56px;
}
.articles-block-title {
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  transition: .15s ease-in-out;
}
.articles-item:hover .articles-block-title,
.articles-item:focus-visible .articles-block-title {
  color: var(--blue);
}
.article-block-descr {
  display: none;
}
.article-block.open .articles-block-title {
  color: var(--blue);
  -webkit-line-clamp: 100;
}
.article-block.open .article-block-descr {
  display: block;
  margin-top: 5px;
  word-break: break-all;
  font-size: 14px;
  line-height: 19.6px;
  color: rgba(25, 28, 32, 1);
}
.article-block.open .article-block-content {
  height: auto;
}
.not-found .response-block {
  background-color: transparent;
}
.not-found .response-title {
  max-width: none;
}
.error-list li {
  font-size: 12px;
  color: var(--error);
}
.policy-full {
  padding: 40px 0;
  background-image: url('../images/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.policy-block {
  padding: 30px 25px;
  background-color: #FFF;
  border-radius: 20px;
  max-width: 1076px;
  margin: 0 auto;
  font-size: 14px;
  color: #000;
}
ul.breadcrumb {
  display: flex;
  list-style-type: none;
  margin: 0;
  margin-bottom: 2em;
  padding: 0;
}
ul.breadcrumb li.breadcrumb-item {
  display: block;
  color: rgba(131, 134, 136, 1);
  opacity: .8;
  font-size: 14px;
}
ul.breadcrumb li.breadcrumb-item:not(:last-child) {
  position: relative;
  margin-right: 2em;
}
ul.breadcrumb li.breadcrumb-item:not(:last-child):after {
  position: absolute;
  content: '>';
  top: 0;
  left: calc(100% + 0.75em);
  display: block;
  text-align: center;
}
.empty-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 200px auto 0 auto;
  width: 100%;
  gap: 25px;
}
div.pagination-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 2em;
}
div.pagination-wrap nav ul.pagination {
  display: flex;
  gap: 1em;
}
.gradient-line {
  position: absolute;
  width: 2px;
  left: 13px;
  top: 90px;
  background: linear-gradient(#A5F37B 0%, #ECC01C 50%, #2577CA 80%, #A91CEC 100%);
}
.change-psw-modal {
  width: 416px;
}
.psw-reset-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.psw-reset-wrapper form {
  padding: 0 25px;
  width: 100%;
  max-width: 350px;
}
.psw-reset-wrapper .modal-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal-changed-psw-descr {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
  margin-bottom: 40px;
}
.change-psw-visible {
  display: flex;
}
.email-confirm-lk {
  display: flex;
  align-items: center;
  gap: 10px;
}
.privacy-back-btn {
  display: none;
}