@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600,700&display=swap&subset=cyrillic-ext");

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

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

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

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

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

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 0;
}

:root {
  --black-color: #000000;
  --white-color: #ffffff;
  --main-dark-color: #333333;
  --main-orange-color: #FF6337;
  --orange-color-hover: #D9542F;
  --main-yellow-color: #F7D147;
}

body {
  font-family: "Inter";
  font-size: 1em;
  color: var(--main-dark-color);
}

body.lock {
  overflow: hidden;
}

.container {
  max-width: 75em;
  margin: 0 auto;
  padding: 0 0.9375em;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1 1 auto;
}

.title {
  font-weight: 600;
  font-size: 2.375em;
  line-height: 1.1875em;
  color: var(--main-dark-color);
}

.text {
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.375em;
  color: var(--main-dark-color);
}

.header {
  padding: 15px 0;
}

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

.header__logo {
  flex: 0 0 200px;
}

.header__logo img {
  width: 100%;
}

.header__profile-icon {
  flex: 0 0 50px;
}

.header__profile-icon img {
  width: 100%;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-header__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-header__item {
  font-weight: 600;
  font-size: 1.25em;
  line-height: 1.5em;
  color: var(--main-dark-color);
  cursor: pointer;
  position: relative;
}

.nav-header__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #8671FE;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0);
  transition: all 0.3s ease 0s;
}

.nav-header__button {
  font-weight: 600;
  font-size: 1.25em;
  line-height: 1.5em;
  border: 1px solid #A292FE;
  padding: 0.3125em 1em;
  background-color: var(--white-color);
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  color: var(--main-dark-color);
}

.item-active::after {
  transform: scale(1);
}

button.icon-menu {
  background: transparent;
}

.icon-menu {
  display: none;
}

.header__nav.active {
  top: 0;
}

.icon-menu.active::after {
  transform: rotate3d(0, 0, 1, 45deg);
  top: 9px;
  background-color: var(--black-color);
}

.icon-menu.active span {
  transform: scale(0);
}

.icon-menu.active::before {
  transform: rotate3d(0, 0, 1, -45deg);
  bottom: 9px;
  background-color: var(--black-color);
}

.footer {
  padding-top: 60px;
  background-color: #4C3AB4;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: 1px solid #6050BD;
}

.footer__logo {
  flex: 0 0 200px;
  opacity: 0.6;
}

.footer__logo img {
  width: 100%;
}

.footer__email {
  color: var(--white-color);
  font-weight: 400;
  font-size: 1em;
  line-height: 19px;
}

.footer__email span {
  margin-top: 10px;
  display: block;
}

.footer__row {
  display: flex;
  gap: 120px;
}

.footer__soc {
  display: flex;
  gap: 41px;
}

.footer__link {
  color: var(--white-color);
  font-weight: 400;
  font-size: 1em;
  line-height: 19px;
}

.footer__link img {
  margin-right: 8px;
  margin-top: -6px;
}

.footer__bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
}

.footer__text {
  color: #B7B0E1;
  font-weight: 400;
  font-size: 0.8125em;
  line-height: 15px;
}

.footer__info {
  display: flex;
  gap: 60px;
}

.footer__info-text {
  color: #B7B0E1;
  font-weight: 400;
  font-size: 0.8125em;
  line-height: 15px;
}

.popup-registration {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 50;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.8s ease 0s;
}

.popup-registration__body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
}

.popup-registration__close {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/icons/popup-close.svg") center no-repeat;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.popup-registration__content {
  max-width: 1000px;
  background-color: #DBD5FF;
  width: 100%;
  position: relative;
  transition: all 0.8s ease 0s;
  overflow: auto;
  opacity: 0;
  transform: translate(0px, -100%);
  border-radius: 8px;
}

.popup-registration__row {
  display: flex;
  min-height: 700px;
}

.popup-registration__photo {
  flex: 0 0 380px;
  background-color: #6B52FE;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.popup-registration__photo img {
  position: relative;
  z-index: 2;
}

.popup-registration__photo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  background-color: #5B46D8;
  width: 550px;
  height: 550px;
  border-radius: 50%;
}

.popup-registration__photo::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 140px;
  display: block;
  width: 91px;
  height: 78px;
  background: url("../img/icons/info-header-decor.svg") center no-repeat;
}

.popup-registration__info {
  flex: 1 1 auto;
  padding: 30px 50px;
}

.popup-registration__title {
  margin-bottom: 20px;
}

.form-popup__item {
  max-width: 480px;
  margin-bottom: 10px;
}

.form-popup__label {
  margin-bottom: 5px;
  font-size: 18px;
}

.form-popup__input {
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.375em;
  color: var(--main-darl-color);
}

.form-popup__row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.form-popup__row-entry {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 20px;
  max-width: 180px;
}

.form-popup__entry {
  color: #6B52FE;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

.form-popup__info {
  color: #4F4F4F;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

.form-popup__info span {
  display: block;
  margin-bottom: 10px;
}

.form-popup__info a {
  color: #6B52FE;
}

.form-popup__forgot-pass {
  color: #6B52FE;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

.form-popup__new-code {
  margin-top: 30px;
  text-align: center;
}

.popup-registration.open {
  opacity: 1;
  visibility: visible;
}

.popup-registration.open .popup-registration__content {
  opacity: 1;
  transform: translate(0px, 0px);
}

.popup-entry {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 50;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.8s ease 0s;
}

.popup-entry__body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
}

.popup-entry__content {
  max-width: 1000px;
  background-color: #DBD5FF;
  width: 100%;
  position: relative;
  transition: all 0.8s ease 0s;
  overflow: auto;
  opacity: 0;
  transform: translate(0px, -100%);
  border-radius: 8px;
}

.popup-entry__close {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/icons/popup-close.svg") center no-repeat;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.popup-entry__row {
  display: flex;
  min-height: 700px;
}

.popup-entry__photo {
  flex: 0 0 380px;
  background-color: #6B52FE;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.popup-entry__photo img {
  position: relative;
  z-index: 2;
}

.popup-entry__photo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  background-color: #5B46D8;
  width: 550px;
  height: 550px;
  border-radius: 50%;
}

.popup-entry__photo::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 140px;
  display: block;
  width: 291px;
  height: 108px;
  background: url("../img/icons/popup-entry-icon.svg") center no-repeat;
}

.popup-entry__info {
  flex: 1 1 auto;
  padding: 30px 50px;
}

.popup-entry__title {
  margin-bottom: 20px;
}

.popup-entry.open {
  opacity: 1;
  visibility: visible;
}

.popup-entry.open .popup-entry__content {
  opacity: 1;
  transform: translate(0px, 0px);
}

.popup-recovery {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 50;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.8s ease 0s;
}

.popup-recovery__body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
}

.popup-recovery__content {
  max-width: 1000px;
  background-color: #DBD5FF;
  width: 100%;
  position: relative;
  transition: all 0.8s ease 0s;
  overflow: auto;
  opacity: 0;
  transform: translate(0px, -100%);
  border-radius: 8px;
}

.popup-recovery__close {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/icons/popup-close.svg") center no-repeat;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.popup-recovery__row {
  display: flex;
  min-height: 700px;
}

.popup-recovery__photo {
  flex: 0 0 380px;
  background-color: #6B52FE;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.popup-recovery__photo img {
  position: relative;
  z-index: 2;
}

.popup-recovery__photo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  background-color: #5B46D8;
  width: 550px;
  height: 550px;
  border-radius: 50%;
}

.popup-recovery__photo::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 140px;
  display: block;
  width: 291px;
  height: 108px;
  background: url("../img/icons/popup-entry-icon.svg") center no-repeat;
}

.popup-recovery__info {
  flex: 1 1 auto;
  padding: 30px 50px;
}

.popup-recovery__title {
  margin-bottom: 20px;
  max-width: 300px;
}

.popup-recovery.open {
  opacity: 1;
  visibility: visible;
}

.popup-recovery.open .popup-recovery__content {
  opacity: 1;
  transform: translate(0px, 0px);
}

.popup-confirm {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 50;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.8s ease 0s;
}

.popup-confirm__body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
}

.popup-confirm__content {
  max-width: 1000px;
  background-color: #DBD5FF;
  width: 100%;
  position: relative;
  transition: all 0.8s ease 0s;
  overflow: auto;
  opacity: 0;
  transform: translate(0px, -100%);
  border-radius: 8px;
}

.popup-confirm__close {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/icons/popup-close.svg") center no-repeat;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.popup-confirm__row {
  display: flex;
  min-height: 700px;
}

.popup-confirm__photo {
  flex: 0 0 380px;
  background-color: #6B52FE;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.popup-confirm__photo img {
  position: relative;
  z-index: 2;
}

.popup-confirm__photo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  background-color: #5B46D8;
  width: 550px;
  height: 550px;
  border-radius: 50%;
}

.popup-confirm__photo::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 140px;
  display: block;
  width: 291px;
  height: 108px;
  background: url("../img/icons/popup-entry-icon.svg") center no-repeat;
}

.popup-confirm__info {
  flex: 1 1 auto;
  padding: 30px 50px;
}

.popup-confirm__title {
  margin-bottom: 20px;
  max-width: 300px;
}

.popup-confirm__label {
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 30px;
}

.popup-confirm__label p {
  margin-bottom: 10px;
}

.popup-confirm__label p:last-child {
  margin-bottom: 0;
}

.popup-confirm__label a {
  color: #6B52FE;
}

.popup-confirm.open {
  opacity: 1;
  visibility: visible;
}

.popup-confirm.open .popup-confirm__content {
  opacity: 1;
  transform: translate(0px, 0px);
}

.popup-prompt {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.8s ease 0s;
}

.popup-prompt__body {
  min-height: 90%;
  display: flex;
  justify-content: end;
  align-items: flex-end;
  padding: 15px 10px;
}

.popup-prompt__content {
  max-width: 30%;
  background-color: var(--white-color);
  width: 100%;
  position: relative;
  transition: all 0.8s ease 0s;
  overflow: auto;
  opacity: 0;
  transform: translate(0px, -100%);
  padding: 11px;
  border: 1px solid #BDBDBD;
  box-shadow: 0px 7px 10px rgba(63, 56, 102, 0.15);
  border-radius: 4px;
  margin-right: 6px;
}

.popup-prompt__close {
  display: block;
  width: 13px;
  height: 13px;
  background: url("../img/icons/close-popup-prompt.svg") center no-repeat;
  cursor: pointer;
  position: absolute;
  top: 11px;
  right: 11px;
}

.popup-prompt__icon {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-popup-prompt.svg") center no-repeat;
  margin-bottom: 8px;
}

.popup-prompt__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: var(--main-darl-color);
  margin-bottom: 8px;
}

.popup-prompt__link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #6B52FE;
  margin-bottom: 10px;
}

.popup-prompt__link span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px dashed #6B52FE;
}

.popup-prompt.open {
  opacity: 1;
  visibility: visible;
}

.popup-prompt.open .popup-prompt__content {
  opacity: 1;
  transform: translate(0px, 0px);
}

.btn {
  padding: 0.625em 1.625em;
  background-color: var(--main-orange-color);
  border-radius: 0.875em;
  font-size: 1.25em;
  font-weight: 600;
  color: var(--white-color);
  position: relative;
  transition: all 0.3s ease 0s;
}

.form-input {
  width: 100%;
  min-height: 50px;
  border-radius: 8px;
  background-color: var(--white-color);
  padding-left: 20px;
  transition: all 0.3s ease 0s;
}

.form-input::-moz-placeholder {
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.375em;
  color: var(--main-darl-color);
}

.form-input::placeholder {
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.375em;
  color: var(--main-darl-color);
}

.form-input:focus {
  box-shadow: 0 0 5px var(--main-orange-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.intro {
  background: #6B52FE;
  overflow-y: hidden;
}

.intro__content {
  display: flex;
  position: relative;
  justify-content: space-between;
}

.intro__content::before {
  content: "";
  display: block;
  position: absolute;
  left: -208px;
  top: 81px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background-color: #5B46D8;
}

.intro__info {
  flex: 0 0 45%;
  max-width: 340px;
  position: relative;
  z-index: 4;
}

.intro__info::after {
  content: "";
  display: block;
  position: absolute;
  top: -90px;
  left: -125px;
  width: 100px;
  height: 78px;
  background: url("../img/icons/info-header-decor.svg") center no-repeat;
}

.intro__image {
  flex: 0 1 55%;
  position: relative;
}

.intro__image:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 60px;
  left: -76px;
  width: 110px;
  height: 110px;
  z-index: 2;
  background: url("../img/icons/test-likes-yellow-bg.svg") center no-repeat;
}

.intro__progile-icon {
  display: block;
  position: absolute;
  bottom: 96px;
  right: -125px;
  background: url("../img/icons/twist-icon-intro.svg") center no-repeat;
  width: 186px;
  height: 200px;
  transform: rotate(26deg);
}

.main-image {
  transform: scale(1.2);
  width: 100%;
  height: 580px;
  border-radius: 50%;
  background-color: #5B46D8;
  position: relative;
}

.main-image img {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 100%;
  height: 90%;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 4;
}

.main-image::before {
  content: "";
  display: block;
  position: absolute;
  top: 55%;
  right: -15%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  z-index: 1;
  background-color: var(--main-orange-color);
  transform: translate(-50%, -50%);
}

.main-image::after {
  content: "";
  position: absolute;
  top: 47%;
  left: -11px;
  width: 200px;
  height: 200px;
  background: url("../img/icons/profile-icon-intro.svg") center no-repeat;
  transform: translateY(-50%);
  z-index: 3;
}

.info-intro {
  align-self: center;
}

.info-intro__title {
  color: var(--white-color);
  margin-bottom: 30px;
}

.info-intro__title.title {
  font-size: 2.1875em;
}

.info-intro__title span {
  position: relative;
}

.info-intro__title span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  background: url("../img/icons/info-header-line.svg") center no-repeat;
  width: 100%;
  height: 100%;
}

.info-intro__subtitle {
  color: var(--white-color);
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.25em;
}

.stages {
  padding-top: 90px;
}

.stages__top {
  display: flex;
  margin-bottom: 50px;
  justify-content: space-between;
}

.stages__title {
  max-width: 830px;
}

.stages__label {
  align-self: flex-end;
  color: #828282;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.1875em;
  position: relative;
}

.stages__label span {
  display: block;
}

.stages__label::after {
  content: "";
  display: block;
  position: absolute;
  top: -35px;
  left: -75px;
  width: 110px;
  height: 80px;
  background: url("../img/icons/arrow-label.svg") center no-repeat;
}

.stages__content {
  display: flex;
  margin-right: calc(0px + -30 * ((100vw - 320px) / 1280));
  margin-left: calc(0px + -30 * ((100vw - 320px) / 1280));
}

.stages__column {
  flex: 0 0 33.33333%;
  padding-right: calc(0px + 30 * ((100vw - 320px) / 1280));
  padding-left: calc(0px + 30 * ((100vw - 320px) / 1280));
  display: flex;
}

.stages__item {
  border-radius: 30px;
  background-color: #FAE28B;
  min-height: 318px;
  padding-top: 34px;
  padding-right: calc(0px + 20 * ((100vw - 320px) / 1280));
  padding-left: calc(0px + 27 * ((100vw - 320px) / 1280));
  overflow: hidden;
}

.stages__item--pink {
  background-color: #FFDACF;
  position: relative;
}

.stages__item--pink:after {
  content: "";
  display: block;
  width: 132px;
  height: 271px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("../img/icons/item-stages-decor.svg") center no-repeat;
}

.stages__item--purpure {
  background-color: #DBD5FF;
}

.stages__row-button {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-stages__top {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.item-stages__num {
  font-weight: 600;
  font-size: 3.5625em;
  color: #FF7F5B;
}

.item-stages__title {
  color: var(--main-dark-color);
  font-size: 1.1875em;
  line-height: 1.25em;
  font-weight: 600;
}

.item-stages__body {
  max-width: 281px;
  margin-top: 36px;
  background-color: var(--white-color);
  border-radius: 8px 8px 0 0;
  padding: 24px 20px 0px 23px;
  position: relative;
}

.item-stages__body::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: -20px;
  z-index: 1;
  width: 20px;
  height: 85%;
  background-color: #FDF6DC;
  border-radius: 0 8px 0 0;
}

.item-stages__body::before {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  right: 0;
  width: 55px;
  height: 74px;
  background: url("../img/icons/arrow-item-stages-list.svg") center no-repeat;
}

.item-stages__icons {
  margin-top: 80px;
  margin-left: 54px;
  position: relative;
}

.item-stages__question {
  font-weight: 700;
  font-size: 144.227px;
  line-height: 150px;
  color: #FF6337;
  opacity: 0.4;
  position: relative;
}

.item-stages__qustion-small {
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  color: #FF7F5B;
  transform: rotate(20.79deg);
  position: absolute;
  top: -10px;
  left: -40px;
}

.item-stages__check {
  width: 35px;
  height: 35px;
  position: absolute;
  top: -24px;
  left: 27px;
  opacity: 0.6;
  transform: rotate(13.3deg);
}

.item-stages__list {
  position: relative;
}

.item-stages__list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -24px;
  width: 120%;
  height: 29px;
  opacity: 0.4;
  background: linear-gradient(270deg, rgba(240, 255, 0, 0.49) 50%, rgb(255, 243, 0) 100%);
  background: -moz-linear-gradient(270deg, rgba(240, 255, 0, 0.49) 50%, rgb(255, 243, 0) 100%);
}

.item-stages__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0px 0px 20px 0px;
}

.item-stages__list-item:last-child {
  margin: 0px 0px 0px 0px;
  opacity: 0.6;
}

.item-stages__icon {
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #BDBDBD;
}

.item-stages__text {
  color: #302572;
  opacity: 0.4;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.1875em;
}

.item-stages__row {
  position: relative;
}

.item-stages__content:nth-child(2) {
  position: absolute;
  bottom: -35px;
  left: 15px;
  z-index: 3;
  width: 100%;
}

.item-stages__content:nth-child(3) {
  position: absolute;
  bottom: -70px;
  left: 35px;
  z-index: 2;
  width: 100%;
  opacity: 0.6;
}

.content-item {
  background-color: var(--white-color);
  max-width: 270px;
  box-shadow: 0px 7px 10px rgba(63, 56, 102, 0.15);
  border-radius: 8px;
  display: flex;
  padding: 16px 18px;
  position: relative;
  z-index: 4;
}

.content-item__icon {
  width: 50px;
  height: 50px;
  margin-right: 12px;
}

.content-item__title {
  font-weight: 400;
  font-size: 1em;
  line-height: 1.1875em;
  margin-bottom: 5px;
  color: #302572;
  opacity: 0.4;
}

.content-item__price {
  font-weight: 700;
  font-size: 1em;
  line-height: 1.1875em;
  color: #302572;
  opacity: 0.4;
}

.vacancies {
  padding-top: 90px;
  margin-bottom: 90px;
}

.vacancies__container {
  overflow: hidden;
}

.vacancies__title {
  max-width: 830px;
  margin-bottom: 20px;
}

.vacancies__subtitle {
  max-width: 930px;
  margin-bottom: 50px;
  padding-right: 30px;
}

.slider-vacancies__container {
  position: relative;
}

.slider-vacancies__wrapper {
  position: relative;
}

.slider-vacancies__slide {
  max-width: 360px;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
}

.slider-vacancies__row {
  display: flex;
  align-items: center;
  gap: 25px;
}

.slider-vacancies__navigation {
  position: absolute;
  top: -70px;
  right: 70px;
  z-index: 1;
}

.slider-vacancies__button-prev.swiper-button-prev {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #FAE28B;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-vacancies__button-prev.swiper-button-prev::after {
  opacity: 0;
  font-size: 0;
}

.slider-vacancies__button-prev.swiper-button-prev::before {
  content: "";
  height: 25px;
  flex: 0 0 30px;
  background: url("../img/icons/arrow-next-slider-vacantion.svg") center no-repeat;
}

.slider-vacancies__button-next.swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FAE28B;
}

.slider-vacancies__button-next.swiper-button-next::after {
  font-size: 0;
  opacity: 0;
}

.slider-vacancies__button-next.swiper-button-next::before {
  content: "";
  height: 25px;
  flex: 0 0 30px;
  background: url("../img/icons/arrow-next-slider-vacantion.svg") center no-repeat;
  transform: rotate(-180deg);
}

.vacancies-slide__photo {
  min-height: 400px;
  position: relative;
}

.vacancies-slide__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.vacancies-slide__label {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
  font-weight: 600;
  font-size: 18px;
  padding: 5px 10px;
  border-radius: 47px;
  background-color: #FAE28B;
}

.vacancies-slide__info {
  background-color: #FAE28B;
  padding: 10px 30px 15px 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  max-width: 185px;
  border-radius: 20px 0 0 0;
}

.vacancies-slide__count {
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
}

.vacancies-slide__text {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}

.vacancies-slide__body {
  flex: 1 1 auto;
  background-color: var(--main-yellow-color);
  padding: 18px 30px 30px 30px;
}

.vacancies-slide__title {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 13px;
}

.vacancies-slide__list li {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 17px;
  display: flex;
  gap: 14px;
}

.vacancies-slide__list li:last-child {
  margin-bottom: 0;
}

.vacancies-slide__list li::before {
  content: "";
  align-self: flex-start;
  flex: 0 0 30px;
  height: 20px;
  background: url("../img/icons/arrow-vacantion-check.svg") center no-repeat;
}

.vacancies-slide__label-purpure {
  background-color: #DBD5FF;
}

.vacancies-slide__info-purpure {
  background-color: #DBD5FF;
}

.vacancies-slide__body-purpure {
  background-color: #BFB5FF;
}

.test {
  padding: 80px 0;
  background-color: #DBD5FF;
}

.test__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.test__info {
  max-width: 780px;
}

.test__title {
  margin-bottom: 20px;
}

.test__text.text {
  line-height: 22px;
}

.test__total {
  position: relative;
  color: #8671FE;
  font-weight: 500;
  font-size: 2.5625em;
  width: 150px;
  height: 150px;
  line-height: 3.0625em;
  background: url("../img/icons/test-progres-icon.svg") center no-repeat;
  text-align: center;
}

.test__total span {
  position: relative;
  top: 8px;
}

.test__total::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -45px;
  width: 42px;
  height: 42px;
  background: url("../img/icons/test-likes.svg") center no-repeat;
}

.test__content {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 66px;
  justify-content: space-between;
}

.test__row-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.test-content__item {
  width: 45%;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #b0b0b0;
  padding-bottom: 44px;
}

.test-content__item:nth-child(2) .test-content__icon {
  margin-right: -10px;
}

.test-content__info {
  flex: 0 0 395px;
}

.test-content__title {
  font-weight: 600;
  font-size: 1.75em;
  line-height: 34px;
  margin-bottom: 16px;
}

.test-content__icon {
  flex: 0 0 85px;
  height: 90px;
  width: 85px;
  align-self: flex-end;
}

.summary {
  padding: 120px 0;
}

.summary__body {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.content-summary__info {
  flex: 0 0 33.3333%;
  max-width: 360px;
  margin-right: 58px;
}

.content-summary__title {
  font-weight: 600;
  font-size: 1.75em;
  line-height: 32px;
  margin-bottom: 30px;
}

.content-summary__text {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 22px;
}

.content-summary__list {
  flex: 0 0 33.3333%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-summary__list li {
  font-weight: 700;
  color: var(--white-color);
  font-size: 36px;
  line-height: 38px;
  background-color: var(--main-yellow-color);
  padding: 10px 20px;
  white-space: nowrap;
  text-align: center;
}

.content-summary__list li:nth-child(1) {
  transform: rotate(2.94deg);
  max-width: 290px;
  position: relative;
}

.content-summary__list li:nth-child(1)::before {
  content: "";
  position: absolute;
  display: block;
  top: -5px;
  left: -45px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #8671FE;
  z-index: 1;
}

.content-summary__list li:nth-child(1)::after {
  content: "";
  position: absolute;
  display: block;
  width: 43px;
  height: 20px;
  top: 15px;
  left: -36px;
  z-index: 2;
  background: url("../img/icons/arrow-check-summary.svg") center no-repeat;
}

.content-summary__list li:nth-child(2) {
  transform: rotate(-2.94deg);
  max-width: 460px;
}

.content-summary__list li:nth-child(3) {
  transform: rotate(2.94deg);
  max-width: 354px;
}

.content-summary__list li:nth-child(4) {
  transform: rotate(0.88deg);
  max-width: 286px;
  position: relative;
}

.content-summary__list li:nth-child(4)::after {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  left: -75px;
  z-index: 1;
  width: 77px;
  height: 81px;
  background: url("../img/icons/gear-icon.svg") center no-repeat;
}

.content-summary__image {
  flex: 0 1 33.3333%;
  position: relative;
}

.content-summary__image img {
  position: absolute;
  top: -56px;
  left: -100px;
  width: 124%;
  height: 133%;
  -o-object-fit: cover;
  object-fit: cover;
}

.questions {
  padding: 80px 0;
  background-color: #DBD5FF;
}

.questions__content {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.content-questions__info {
  flex: 0 0 50%;
  padding-right: 10px;
}

.content-questions__form {
  flex: 0 0 50%;
}

.info-question__title {
  font-weight: 600;
  font-size: 2.375em;
  line-height: 46px;
  margin-bottom: 10px;
}

.info-question__text {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 22px;
}

.info-question__text span {
  display: block;
}

.info-question__icon {
  max-width: 450px;
  min-height: 230px;
  position: relative;
}

.info-question__icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.form-question__label {
  margin-bottom: 5px;
}

.form-question__item {
  margin-bottom: 28px;
  position: relative;
}

.form-question__error {
  color: var(--orange-color-hover);
  font-weight: 400;
  font-size: 1em;
  line-height: 19px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -25px;
}

.form-question__button {
  margin-top: 15px;
  margin-bottom: 10px;
}

.form-question__info {
  color: #4F4F4F;
  font-size: 1em;
  font-weight: 400;
  line-height: 19px;
}

.form-question__info span {
  display: block;
  margin-bottom: 10px;
}

.form-question__info a {
  color: #6B52FE;
}

.breadcrumbs {
  width: 100%;
  background-color: #FDF4D3;
  border-radius: 30px;
  padding: 35px 25px;
  margin-top: 35px;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.breadcrumbs__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #4F4F4F;
  opacity: 0.3;
  display: flex;
  align-items: center;
  gap: 17px;
  white-space: nowrap;
}

.breadcrumbs__item:first-child {
  width: 150px;
}

.breadcrumbs__item:first-child::before {
  background: url("../img/icons/steps-item-icon.svg") center no-repeat;
  flex: 0 0 32px;
  height: 32px;
}

.breadcrumbs__item span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #6B52FE;
}

.breadcrumbs__item::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #6B52FE;
}

.breadcrumbs__item.active {
  opacity: 1;
  border-radius: 50%;
}

.breadcrumbs__item.active span {
  background-color: #6B52FE;
  color: var(--white-color);
}

.breadcrumbs__item.active span.active {
  background: url("../img/icons/steps-item-icon.svg") center no-repeat !important;
}

.breadcrumbs-mobile {
  display: none;
}

.registration-info {
  margin-top: 30px;
  display: flex;
}

.registration-info__block {
  padding-right: 15px;
}

.registration-info__title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 2em;
  line-height: 32px;
  color: var(--main-dark-color);
}

.registration-info__text {
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.375em;
  color: var(--main-dark-color);
}

.registration-info__text p {
  margin-bottom: 10px;
}

.registration-info__text p:last-child {
  margin-bottom: 0;
}

.registration-info__image {
  position: relative;
  flex: 0 0 180px;
  height: 150px;
}

.registration-info__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.registration-steps {
  padding-top: 30px;
  padding-bottom: 100px;
  max-width: 780px;
  margin: 0 auto;
}

.registration-steps__form {
  max-width: 780px;
  display: flex;
  flex-direction: column;
}

.form-steps__question {
  margin-bottom: 40px;
  margin-left: 60px;
  display: flex;
  gap: 12px;
}

.form-steps__question span {
  background-color: #DBD5FF;
  border-radius: 0 12px 12px 12px;
  padding: 12px 18px;
  position: relative;
}

.form-steps__question span::after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: -7px;
  width: 25px;
  height: 21px;
  background: url("../img/icons/TopLeft.svg") center no-repeat;
}

.form-steps__work-remot {
  margin-bottom: 15px;
}

.form-steps__buttons {
  min-width: 570px;
  background-color: #FDF4D3;
  border-radius: 30px;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.form-steps__item {
  margin-bottom: 25px;
  position: relative;
}

.form-steps__label {
  margin-bottom: 4px;
}

.form-steps__input {
  border: 1px solid #4F4F4F;
  border-radius: 8px;
  min-width: 570px;
  min-height: 55px;
  padding-left: 20px;
  transition: all 0.3s ease 0s;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.375em;
  color: var(--main-darl-color);
}

.form-steps__input.error {
  border: 1px solid #FF6337;
}

.form-steps__input::-moz-placeholder {
  font-weight: 400;
  font-size: 1em;
  line-height: 1.125em;
  color: var(--main-darl-color);
  opacity: 0.5;
}

.form-steps__input::placeholder {
  font-weight: 400;
  font-size: 1em;
  line-height: 1.125em;
  color: var(--main-darl-color);
  opacity: 0.5;
}

.form-steps__input:focus {
  box-shadow: 0 0 5px var(--main-orange-color);
  border: 1px solid var(--main-orange-color);
}

.form-steps__education {
  margin-bottom: 40px;
}

.form-steps__education.education-hidden {
  display: none;
}

.form-steps__education.education-show {
  display: block;
}

.form-steps__inputs-row {
  display: flex;
  gap: 55px;
  justify-content: space-between;
}

.form-steps__add {
  color: #6B52FE;
  border-bottom: 1px dashed #6B52FE;
  cursor: pointer;
  display: inline;
}

.form-steps__add.add-left {
  margin: 0;
}

.form-steps__work {
  margin-bottom: 40px;
}

.form-steps__work.work-hidden {
  display: none;
}

.form-steps__work.work-show {
  display: block;
}

.form-steps__error {
  color: var(--orange-color-hover);
  font-weight: 400;
  font-size: 1em;
  line-height: 19px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -25px;
}

.form-steps__next {
  margin-top: 50px;
  min-width: 570px;
  padding: 40px 0;
  background-color: #FDF4D3;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.form-steps__icon {
  position: relative;
  width: 48px;
  height: 48px;
}

.form-steps__icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.form-steps-input-education {
  min-width: 255px;
  max-width: 255px;
}

.form-left {
  align-self: flex-start;
}

.form-right {
  align-self: flex-end;
}

.next-step__title {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #333333;
}

.select-wrapper {
  position: relative;
}

.select-custom {
  position: relative;
  cursor: pointer;
  border: 1px solid #4F4F4F;
  border-radius: 8px;
  min-width: 570px;
  min-height: 55px;
  padding-left: 20px;
  transition: all 0.3s ease 0s;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 2.6875em;
  color: var(--main-darl-color);
  background-color: transparent;
  text-align: left;
}

.select-custom-trigger {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: var(--white-color);
  border: none;
  display: inline-block;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.625em;
  text-align: left;
  color: var(--main-darl-color);
}

.select-custom-trigger span {
  opacity: 0.8;
}

.select-custom-trigger::after {
  content: "";
  position: absolute;
  background: url("../img/icons/form-steps-selection-arrow.svg") center no-repeat;
  width: 25px;
  height: 20px;
  display: block;
  top: 35%;
  right: 10px;
  transform: translateX(-50%);
}

.select-custom-options {
  width: 100%;
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid #4F4F4F;
  margin-top: 5px;
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 20px;
  transition: all 0.25s ease;
  display: none;
  left: 0;
  background-color: var(--white-color);
}

.select-custom.isActive .select-custom-options {
  display: block;
}

.select-custom-option {
  position: relative;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.5625em;
  color: var(--main-darl-color);
  padding: 10px;
  border-bottom: 1px solid var(--main-dark-color);
}

.select-custom-option:last-child {
  border-bottom: none;
}

.selection-info {
  margin-top: 30px;
}

.selection-info__content {
  display: flex;
}

.selection-info__block {
  padding-right: 15px;
}

.selection-info__title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.75em;
  line-height: 32px;
  color: var(--main-dark-color);
}

.selection-info__text {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.25em;
  color: var(--main-dark-color);
}

.selection-info__text p {
  margin-bottom: 10px;
}

.selection-info__text p:last-child {
  margin-bottom: 0;
}

.selection-info__text p.text-phone {
  display: none;
}

.selection-info__image {
  position: relative;
  flex: 0 0 180px;
  height: 150px;
}

.selection-info__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.recommended-platforms {
  background-color: #FAE28B;
  padding: 30px 0 40px 0;
  margin-top: 40px;
  position: relative;
  margin-bottom: 45px;
}

.recommended-platforms::before {
  content: "";
  width: 91px;
  height: 76px;
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  background: url("../img/icons/icon-lines-recommended-platforms.svg") center no-repeat;
}

.recommended-platforms::after {
  content: "";
  width: 45px;
  height: 45px;
  position: absolute;
  top: 80%;
  left: 40px;
  transform: translateY(-50%);
  background: url("../img/icons/icon-circle-recommended-platforms.svg") center no-repeat;
}

.recommended-platforms__icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.recommended-platforms__icons::before {
  content: "";
  width: 172px;
  height: 192px;
  position: absolute;
  top: 20%;
  right: -38px;
  transform: translateY(-50%);
  background: url("../img/icons/twist-icon-intro.svg") center no-repeat;
}

.recommended-platforms__icons::after {
  content: "";
  width: 50px;
  height: 30px;
  position: absolute;
  top: 60%;
  right: 20px;
  transform: translateY(-50%);
  background: url("../img/icons/icon-check-recommended-platforms.svg") center no-repeat;
}

.recommended-platforms__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: var(--main-dark-color);
  margin-bottom: 20px;
}

.form-recommended__content {
  display: flex;
  flex-wrap: wrap;
  margin: -20px -25px;
}

.form-recommended__column {
  flex: 0 0 33.3333%;
  padding: 20px 25px;
}

.form-recommended__item {
  background: #FFFFFF;
  box-shadow: 0px 7px 10px rgba(63, 56, 102, 0.15);
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100px;
  padding: 0 48px 0 28px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.form-recommended__item.border-yellow::before {
  background-color: #ECAA01;
}

.form-recommended__item.border-light-blue::before {
  background-color: #6DC8DC;
}

.form-recommended__item.border-purpure::before {
  background-color: #A292FE;
}

.form-recommended__item.border-pink::before {
  background-color: #FF85A2;
}

.form-recommended__item.border-orange::before {
  background-color: #FFB553;
}

.form-recommended__item.border-green::before {
  background-color: #6FCBAA;
}

.form-recommended__item.border-blue::before {
  background-color: #7996FF;
}

.form-recommended__item::before {
  content: "";
  width: 10px;
  height: 100%;
  background-color: #FF9D81;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px 0 0 10px;
}

.form-recommended__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 30px;
  height: 18px;
  background: url("../img/icons/dropdown-selection-item.svg") center no-repeat;
  transition: all 0.3s ease 0s;
  opacity: 0.7;
}

.form-recommended__item.sub-menu-active::after {
  transform: translateY(-50%) rotate(180deg);
}

.item-platforms__title {
  font-weight: 400;
  font-size: 17px;
  line-height: 21px;
  color: var(--main-dark-color);
  pointer-events: none;
}

.item-platforms__list {
  display: none;
  position: absolute;
  top: 115%;
  left: 0;
  width: 100%;
  height: 375px;
  background: var(--white-color);
  box-shadow: 0px 14px 44px rgba(12, 41, 85, 0.25);
  border-radius: 10px;
  padding: 11px 0;
  z-index: 1;
}

.no-webp .item-platforms__list::before {
  background: url("../img/icons/icon-top-list-platforms.png") center no-repeat;
}

.item-platforms__list::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.item-platforms__list.sub-menu-open {
  display: block;
}

.item-platforms__total {
  position: absolute;
  top: 11px;
  right: 12.5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #F7D147;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-dark-color);
  display: none;
}

.item-platforms__total.active {
  display: flex;
}

.list-platforms ul {
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 0 11px;
}

.list-platforms li {
  margin-bottom: 10px;
}

.list-platforms li:last-child {
  margin-bottom: 0;
}

.list-platforms__item {
  background-color: #DBD5FF;
  border-radius: 6px;
  display: block;
  padding: 13px 10px;
  display: flex;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease 0s;
}

.list-platforms__item::before {
  content: "";
  align-self: flex-start;
  flex: 0 0 26px;
  height: 26px;
  border-radius: 50%;
  background: url("../img/icons/checkbox-icon-add.svg") center no-repeat;
  margin-right: 10px;
}

.list-platforms__item.active::before {
  background: url("../img/icons/checkbox-icon-checked.svg") center no-repeat;
}

.list-platforms__input {
  display: none;
}

.list-platforms__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--main-dark-color);
  align-self: center;
}

.selection-search {
  position: relative;
}

.selection-search__content {
  background-color: #BFB5FF;
  border-radius: 30px;
  padding: 17px 25px 25px;
  margin-top: 40px;
}

.selection-search__title {
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  color: var(--main-dark-color);
  margin-bottom: 20px;
}

.selection-search__form {
  display: flex;
  gap: 15px;
  position: relative;
}

.form-search__input {
  flex: 1 1 auto;
  border-radius: 8px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--main-dark-color);
  padding-left: 20px;
  transition: all 0.3s ease 0s;
}

.form-search__input::-moz-placeholder {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--main-dark-color);
  opacity: 0.5;
}

.form-search__input::placeholder {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--main-dark-color);
  opacity: 0.5;
}

.form-search__input:focus {
  box-shadow: 0 0 5px var(--main-orange-color);
}

.form-search__result {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: var(--white-color);
  box-shadow: 0px 14px 44px rgba(12, 41, 85, 0.25);
  border-radius: 10px;
  padding: 13px;
  display: none;
}

.form-search__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--main-dark-color);
  background-color: #DBD5FF;
  padding: 10px;
  margin-bottom: 6px;
  border-radius: 6px;
  transition: all 0.3s ease 0s;
}

.form-search__item:last-child {
  margin-bottom: 0;
}

.form-search__button {
  padding: 14px 30px;
}

.result-search {
  display: none;
  margin-top: 30px;
}

.result-search__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: var(--main-dark-color);
  margin-bottom: 30px;
}

.result-search__content {
  display: flex;
  flex-wrap: wrap;
  margin: -20px -25px;
}

.result-search__column {
  flex: 0 0 33.3333%;
  padding: 20px 25px;
}

.result-search__not-found {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #333333;
  display: flex;
  align-items: center;
  position: absolute;
  top: 110%;
  z-index: 5;
  width: 60%;
  background: #FFFFFF;
  box-shadow: 0px 14px 44px rgba(12, 41, 85, 0.25);
  border-radius: 10px;
  padding: 13px;
}

.result-search__not-found::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: url('../img/icons/icon-top-list-platforms.webp') center no-repeat;
}

.result-search__not-found::before {
  content: "";
  flex: 0 0 21px;
  height: 21px;
  margin-right: 12px;
  background: url("../img/icons/icon-warning-selection-skills.svg") center no-repeat;
}

.selection-show-skills {
  margin-top: 40px;
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #6B52FE;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selection-show-skills span {
  border-bottom: 1px dashed #6B52FE;
  margin-bottom: 40px;
}

.selection-show-skills.hidden {
  display: none;
}

.selection-show-skills.close-skills {
  display: none;
}

.selection-show-skills.close-skills.active {
  display: flex;
}

.selection-show-skills-mobile {
  order: 3;
  display: none;
}

.selection-show-skills-mobile span {
  border-bottom: 1px dashed #6B52FE;
}

.selection-show-skills-mobile.hidden {
  display: none;
}

.selection-show-skills-mobile.close-skills-mobile {
  display: none;
}

.selection-show-skills-mobile.close-skills-mobile.active {
  display: flex;
}

.catalog-skills {
  display: none;
  margin-bottom: 40px;
}

.catalog-skills.show-catalog-skills {
  display: block;
  margin-top: 20px;
}

.catalog-skills__title {
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  color: var(--main-dark-color);
  margin-bottom: 25px;
}

.catalog-skills__content {
  display: flex;
  flex-wrap: wrap;
  margin: -20px -25px;
}

.catalog-skills__column {
  flex: 0 0 33.3333%;
  padding: 20px 25px;
}

.catalog-skills__column .form-recommended__item {
  background: #FCEBB0;
}

.selection-skills {
  margin-bottom: 100px;
}

.selection-skills__content {
  padding: 35px 30px;
  box-shadow: 0px 14px 44px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
}

.selection-skills__title {
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  color: var(--main-dark-color);
  margin-bottom: 15px;
}

.selection-skills__items {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  margin-bottom: 24px;
}

.selection-skills__item {
  padding: 8px 15px;
  font-weight: 400;
  font-size: 15px;
  line-height: 16px;
  color: var(--white-color);
  background-color: #6B52FE;
  border-radius: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.selection-skills__item::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/icons/delete-selection-skills.svg") center no-repeat;
  cursor: pointer;
}

.selection-skills__bottom {
  display: flex;
  gap: 30px;
}

.selection-skills__text {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.1875em;
  color: var(--main-dark-color);
  margin-bottom: 30px;
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
}

.selection-skills__text.less-5 {
  display: none;
}

.selection-skills__text.less-5::before {
  background: url("../img/icons/icon-warning-selection-skills.svg") center no-repeat;
}

.selection-skills__text.more-35 {
  display: none;
}

.selection-skills__text.more-35::before {
  background: url("../img/icons/icon-warning-selection-skills.svg") center no-repeat;
}

.selection-skills__text.default {
  display: none;
}

.selection-skills__text.default::before {
  background: url("../img/icons/icon-default-text.svg") center no-repeat;
}

.selection-skills__text::before {
  content: "";
  align-self: flex-start;
  flex: 0 0 21px;
  height: 21px;
  margin-top: 2px;
  background: url("../img/icons/checked-selection-skills.svg") center no-repeat;
}

.selection-skills__button {
  padding: 0.625em 1.25em;
  font-size: 1.125em;
  background: #BDBDBD;
}

.selection-skills__button.active {
  background: #FF6337;
}

.selection-search__result-mobile {
  margin-bottom: 40px;
  display: none;
  position: relative;
}

.selection-search__result-mobile.active {
  display: block;
}

.result-search-mobile__list {
  box-shadow: 0px 14px 44px rgba(12, 41, 85, 0.25);
  border-radius: 10px;
  padding: 13px;
  background-color: #ffffff;
  position: absolute;
  top: 110%;
  width: 60%;
  z-index: 5;
}

.result-search-mobile__list::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: url('../img/icons/icon-top-list-platforms.webp') center no-repeat;
}

.result-search-mobile__list li {
  margin-bottom: 5px;
}

.result-search-mobile__list li:last-child {
  margin-bottom: 0;
}

.catalog-show-skills-mobile {
  display: none;
}

.catalog-show-skills-mobile span {
  border-bottom: 1px dashed #6B52FE;
  margin-top: 20px;
}

.catalog-show-skills-mobile.hidden {
  display: none;
}

.catalog-show-skills-mobile.close-skills-mobile {
  display: none;
}

.catalog-show-skills-mobile.close-skills-mobile.active {
  display: flex;
}

.selection-progress {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  padding-right: 15px;
  bottom: 0;
  right: 0;
  z-index: 50;
  position: fixed;
}

.selection-progress__row {
  width: 30%;
  position: relative;
}

.selection-progress__row::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 13px;
  height: 13px;
  background: url("../img/icons/check-circle-progress.svg") center no-repeat;
  margin-left: 4px;
}

.selection-progress progress {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 50%;
  position: relative;
}

.selection-progress progress.progress-ready {
  width: 96%;
}

.selection-progress progress::-webkit-progress-value {
  background: #FF6337;
  border-radius: 20px;
}

.selection-progress progress::-webkit-progress-bar {
  background: #E0E0E0;
  border-radius: 20px;
}

.selection-progress progress::-moz-progress-value {
  background: #FF6337;
  border-radius: 20px;
}

.selection-progress progress::-moz-progress-bar {
  background: #E0E0E0;
  border-radius: 20px;
}

.selection-progress__button {
  width: 30%;
  padding: 6px 10px;
  margin-top: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  background-color: #8671FE;
  border-radius: 8px;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.selection-progress__total {
  background: #F7D147;
  flex: 0 0 25px;
  height: 25px;
  color: var(--main-dark-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.selection-progress__arrow {
  width: 20px;
  height: 25px;
  background: url("../img/icons/arrow-down-selection-progress.svg") center no-repeat;
}

@media (max-width: 1340px) {
  .recommended-platforms::after {
    display: none;
  }
}

@media (max-width: 1320px) {
  .recommended-platforms::before {
    display: none;
  }

  .recommended-platforms__icons {
    display: none;
  }
}

@media (max-width: 1280px) {
  .test__total::after {
    display: none;
  }
}

@media (max-width: 1200px) {
  .intro__container {
    overflow: hidden;
    overflow-x: hidden;
  }

  .intro__progile-icon {
    display: none;
  }

  .summary__body {
    justify-content: center;
  }

  .content-summary__image {
    display: none;
  }
}

@media (max-width: 1175px) {
  .breadcrumbs__item {
    font-size: 14px;
  }

  .breadcrumbs__item:first-child {
    width: 130px;
  }
}

@media (max-width: 1100px) {
  .breadcrumbs__item {
    gap: calc(0px + 15 * ((100vw - 320px) / 1280));
  }

  .breadcrumbs__item::before {
    width: 35px;
  }
}

@media (max-width: 1080px) {
  .form-recommended__content {
    margin: -15px -20px;
  }

  .form-recommended__column {
    flex: 0 0 50%;
    padding: 15px 20px;
  }

  .catalog-skills__content {
    margin: -15px -20px;
  }

  .catalog-skills__column {
    flex: 0 0 50%;
    padding: 15px 20px;
  }
}

@media (max-width: 1065px) {
  .test__content {
    flex-direction: column;
    row-gap: 46px;
  }

  .test-content__item {
    width: 100%;
    padding-bottom: 34px;
  }
}

@media (max-width: 1050px) {
  .selection-skills__item {
    flex: 0 1 49%;
    justify-content: space-between;
    gap: 5px;
  }

  .selection-skills__item::after {
    flex: 0 0 24px;
  }
}

@media (max-width: 1025px) {
  .vacancies__content {
    padding-bottom: 50px;
  }

  .slider-vacancies__wrapper {
    padding-bottom: 50px;
  }

  .slider-vacancies__navigation {
    top: 100%;
    right: 50%;
  }
}

@media (max-width: 700px) {
  .form-recommended__column {
    flex: 0 0 100%;
    padding: 8px;
  }

  .catalog-skills__column {
    flex: 0 0 100%;
  }
}

@media (max-width: 685px) {
  .intro__info {
    max-width: 400px;
    flex: 0 0 100%;
    min-height: 325px;
  }

  .intro__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .main-image {
    height: 338px;
    background: #6B52FE;
    transform: scale(1);
  }

  .main-image img {
    left: 50%;
    width: 250px;
    height: 277px;
    top: 62px;
  }

  .main-image::before {
    display: none;
  }

  .info-intro {
    padding-top: 50px;
  }
}

@media (max-width: 600px) {
  .selection-progress progress.progress-ready {
    width: 94%;
  }
}

@media (max-width: 570px) {
  .footer__top {
    flex-direction: column;
    align-self: flex-start;
    gap: 22px;
  }

  .footer__top {
    padding-bottom: 20px;
  }

  .footer__logo img {
    width: 180px;
  }

  .footer__soc {
    flex-direction: column;
    gap: 22px;
  }

  .footer__info {
    gap: 20px;
    flex-direction: column;
  }
}

@media (max-width: 515px) {
  .test-content__info {
    flex: 1 1 100%;
  }

  .test-content__icon {
    display: none;
  }
}

@media (max-width: 370px) {
  .breadcrumbs__item p {
    width: 18px;
  }
}

@media (max-width: 61.99875em) {
  .title {
    font-size: 1.875em;
  }

  .text {
    font-size: 1.125em;
    line-height: 1.25em;
  }

  .header {
    padding: 10px 0;
  }

  .header__logo {
    flex: 0 0 190px;
  }

  .header__profile-icon {
    flex: 0 0 40px;
  }

  .header__nav {
    gap: 25px;
  }

  .nav-header__list {
    gap: 25px;
  }

  .nav-header__item {
    font-size: 1.125em;
    line-height: 1.375em;
  }

  .nav-header__button {
    font-size: 1.125em;
    line-height: 1.25em;
  }

  .footer {
    padding-top: 40px;
  }

  .footer__logo {
    flex: 0 0 190px;
  }

  .footer__row {
    gap: 60px;
  }

  .popup-registration__row {
    min-height: 100%;
  }

  .popup-registration__photo {
    display: none;
  }

  .popup-registration__info {
    padding: 30px 40px;
  }

  .form-popup__item {
    max-width: 100%;
  }

  .form-popup__row-entry {
    max-width: 170px;
  }

  .form-popup__new-code {
    text-align: left;
  }

  .popup-entry__row {
    min-height: 100%;
  }

  .popup-entry__photo {
    display: none;
  }

  .popup-entry__info {
    padding: 30px 40px;
  }

  .popup-recovery__row {
    min-height: 100%;
  }

  .popup-recovery__photo {
    display: none;
  }

  .popup-recovery__info {
    padding: 30px 40px;
  }

  .popup-recovery__title {
    max-width: 100%;
    padding-right: 35px;
  }

  .popup-confirm__row {
    min-height: 100%;
  }

  .popup-confirm__photo {
    display: none;
  }

  .popup-confirm__info {
    padding: 30px 40px;
  }

  .popup-confirm__label {
    max-width: 100%;
  }

  .popup-prompt__body{
    justify-content: center;
    min-height: 88%;
  }

  .popup-prompt__content{
    margin-right: 0;
    max-width: 60%;
  }

  .btn {
    font-size: 1.125em;
    padding: 0.75em 1.75em;
  }

  .form-input::-moz-placeholder {
    font-size: 1.125em;
    line-height: 1.25em;
  }

  .form-input::placeholder {
    font-size: 1.125em;
    line-height: 1.25em;
  }

  .intro__image:before {
    display: none;
  }

  .main-image {
    height: 493px;
    transform: scale(1.3);
  }

  .main-image::before {
    width: 170px;
    height: 170px;
  }

  .main-image::after {
    display: none;
  }

  .info-intro__title {
    max-width: 290px;
  }

  .info-intro__title.title {
    font-size: 1.875em;
  }

  .stages {
    padding-top: 65px;
  }

  .stages__top {
    flex-direction: column;
    gap: 10px;
  }

  .stages__title {
    max-width: 630px;
  }

  .stages__content {
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
  }

  .stages__column {
    flex: 1 1 50%;
    padding-right: 0;
    padding-left: 0;
    padding: 10px;
  }

  .stages__item {
    width: 100%;
    padding-right: 20px;
    padding-left: 27px;
  }

  .stages__row-button {
    margin-top: 30px;
  }

  .item-stages__top {
    gap: 14px;
  }

  .item-stages__num {
    font-size: 2.8125em;
  }

  .item-stages__title {
    font-size: 1.0625em;
  }

  .vacancies {
    padding-top: 65px;
    margin-bottom: 65px;
  }

  .vacancies__title {
    max-width: 660px;
  }

  .slider-vacancies__slide {
    max-width: 50%;
  }

  .vacancies-slide__photo {
    min-height: 350px;
  }

  .vacancies-slide__label {
    font-size: 16px;
  }

  .vacancies-slide__info {
    padding: 10px 25px 10px 15px;
  }

  .vacancies-slide__count {
    font-size: 35px;
    line-height: 45px;
  }

  .vacancies-slide__text {
    font-size: 18px;
    line-height: 22px;
  }

  .vacancies-slide__body {
    padding: 14px 25px 25px 25px;
  }

  .vacancies-slide__list li {
    font-size: 14px;
    line-height: 20px;
    gap: 5px;
    margin-bottom: 14px;
  }

  .test {
    padding: 60px 0;
  }

  .test__title {
    margin-bottom: 10px;
  }

  .test__total {
    display: none;
  }

  .test__row-button {
    margin-top: 40px;
  }

  .test-content__title {
    font-size: 1.5em;
    line-height: 30px;
    margin-bottom: 12px;
  }

  .summary {
    padding: 80px 0;
  }

  .content-summary__info {
    padding-top: 0;
    flex: 0 0 50%;
    margin-right: 0;
  }

  .content-summary__list {
    flex: 0 1 50%;
  }

  .content-summary__list li {
    font-size: 35px;
  }

  .questions {
    padding: 60px 0;
  }

  .info-question__title {
    font-size: 2.125em;
    line-height: 40px;
  }

  .breadcrumbs__item p {
    width: 48px;
    height: 1px;
    background-color: #6B52FE;
  }

  .breadcrumbs__item:first-child {
    width: 32px;
  }

  .breadcrumbs__item:first-child::before {
    display: none;
  }

  .breadcrumbs__item span.active {
    background: url("../img/icons/steps-item-icon.svg") center no-repeat !important;
    flex: 0 0 32px;
    height: 32px;
  }

  .breadcrumbs__item::before {
    display: none;
  }

  .breadcrumbs-mobile {
    display: block;
  }

  .breadcrumbs-desktop {
    display: none;
  }

  .registration-info__title {
    font-size: 1.75em;
    line-height: 28px;
  }

  .registration-info__text {
    font-size: 1.1875em;
    line-height: 1.3125em;
  }

  .registration-steps {
    padding-bottom: 80px;
  }

  .form-steps__question {
    margin-left: 0;
  }

  .form-steps__buttons {
    min-width: 0;
    padding: 30px 0;
  }

  .form-steps__input::-moz-placeholder {
    font-size: 1.125em;
    line-height: 1.25em;
  }

  .form-steps__input::placeholder {
    font-size: 1.125em;
    line-height: 1.25em;
  }

  .recommended-platforms {
    order: 2;
    margin-top: 0;
    padding: 40px 0;
  }

  .selection-search {
    order: 1;
    margin-top: 40px;
    background-color: #BFB5FF;
  }

  .selection-search__content {
    padding: 40px 0;
  }

  .result-search__not-found {
    width: 90%;
  }

  .result-search-mobile__list {
    width: 100%;
  }

  .selection-show-skills-mobile {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #6B52FE;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }

  .catalog-skills {
    order: 4;
  }

  .catalog-skills.show-catalog-skills {
    margin-bottom: 15px;
  }

  .selection-skills {
    margin-top: 0;
  }

  .selection-skills__content {
    box-shadow: none;
    padding: 0;
  }

  .selection-skills__items {
    row-gap: 15px;
  }

  .selection-skills__image {
    display: none;
  }

  .catalog-show-skills-mobile {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #6B52FE;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 15px;
  }

  .selection-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 8px 10px;
    background-color: var(--white-color);
    z-index: 5;
    padding-right: 0;
  }

  .selection-progress__row {
    width: 60%;
  }

  .selection-progress__button {
    width: 60%;
  }
}

@media (max-width: 47.99875em) {
  .title {
    font-size: 1.5em;
  }

  .text {
    font-size: 1em;
    line-height: 1.125em;
  }

  .header__nav {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: -790%;
    left: 0;
    background-color: var(--white-color);
    transition: all 0.3s ease;
    overflow: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    padding-top: 50px;
    z-index: 10;
  }

  .nav-header__list {
    flex-direction: column;
    align-items: flex-start;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 15;
  }

  .icon-menu::after {
    content: "";
    background-color: var(--black-color);
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
  }

  .icon-menu::before {
    content: "";
    background-color: var(--black-color);
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
  }

  .icon-menu span {
    background-color: var(--black-color);
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    left: 0;
    top: 0px;
    transition: all 0.3s ease;
  }

  .footer {
    padding-top: 30px;
  }

  .footer__top {
    padding-bottom: 40px;
  }

  .footer__row {
    gap: 22px;
    flex-direction: column;
    align-self: flex-start;
  }

  .popup-registration__info {
    padding: 30px 25px;
  }

  .form-popup__row-entry {
    max-width: 145px;
  }

  .form-popup__new-code {
    margin-top: 20px;
  }

  .popup-entry__info {
    padding: 30px 25px;
  }

  .popup-recovery__info {
    padding: 30px 25px;
  }

  .popup-confirm__info {
    padding: 30px 25px;
  }

  .popup-confirm__label {
    margin-bottom: 20px;
  }

  .popup-prompt__text {
    font-size: 16px;
    line-height: 18px;
  }

  .popup-prompt__link {
    font-size: 16px;
    line-height: 18px;
  }

  .btn {
    font-size: 1em;
    padding: 0.75em 1.625em;
  }

  .form-input::-moz-placeholder {
    font-size: 1em;
    line-height: 1.125em;
  }

  .form-input::placeholder {
    font-size: 1em;
    line-height: 1.125em;
  }

  .main-image {
    transform: scale(1.4);
    height: 438px;
  }

  .main-image::before {
    width: 130px;
    height: 130px;
  }

  .info-intro__title {
    max-width: 230px;
  }

  .info-intro__title.title {
    font-size: 1.5em;
    margin-bottom: 20px;
  }

  .info-intro__subtitle {
    margin-bottom: 20px;
  }

  .stages {
    padding-top: 40px;
  }

  .stages__top {
    margin-bottom: 40px;
  }

  .stages__title {
    max-width: 415px;
  }

  .stages__content {
    flex-direction: column;
  }

  .stages__column {
    flex: 1 1 100%;
    padding: 10px 0;
  }

  .stages__row-button {
    margin-top: 20px;
  }

  .item-stages__top {
    align-items: center;
  }

  .item-stages__body {
    margin-top: 0;
    padding: 24px 20px 15px 23px;
  }

  .item-stages__list::after {
    bottom: -15px;
  }

  .vacancies {
    padding-top: 40px;
    margin-bottom: 40px;
  }

  .vacancies__title {
    margin-bottom: 10px;
  }

  .vacancies__subtitle {
    margin-bottom: 20px;
  }

  .slider-vacancies__slide {
    max-width: 100%;
  }

  .vacancies-slide__info {
    padding: 10px 10px 10px 15px;
  }

  .vacancies-slide__count {
    font-size: 30px;
    line-height: 40px;
  }

  .vacancies-slide__text {
    font-size: 16px;
    line-height: 20px;
  }

  .vacancies-slide__body {
    padding: 14px 20px 20px 20px;
  }

  .vacancies-slide__title {
    font-size: 16px;
    line-height: 20px;
  }

  .test {
    padding: 40px 0;
  }

  .test__top {
    margin-bottom: 30px;
  }

  .test__content {
    row-gap: 36px;
  }

  .test__row-button {
    margin-top: 30px;
  }

  .test-content__item {
    padding-bottom: 24px;
  }

  .test-content__title {
    font-size: 1.25em;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .summary {
    padding: 60px 0;
  }

  .content-summary__title {
    margin-bottom: 15px;
    font-size: 1.5em;
    line-height: 30px;
  }

  .content-summary__text {
    margin-bottom: 15px;
    font-size: 1em;
    line-height: 20px;
  }

  .content-summary__list li {
    font-size: 16px;
    line-height: 24px;
  }

  .content-summary__list li:nth-child(1)::before {
    width: 40px;
    height: 40px;
    top: 0;
    left: -25px;
  }

  .content-summary__list li:nth-child(1)::after {
    top: 12px;
    left: -21px;
    width: 35px;
  }

  .content-summary__list li:nth-child(4)::after {
    left: -55px;
  }

  .questions {
    padding: 40px 0;
  }

  .questions__content {
    flex-direction: column;
  }

  .info-question__title {
    font-size: 1.5em;
    line-height: 32px;
  }

  .info-question__text {
    font-size: 1em;
    line-height: 20px;
  }

  .breadcrumbs {
    margin-top: 25px;
    padding: 20px 22px;
  }

  .registration-info {
    flex-direction: column;
    gap: 15px;
  }

  .registration-info__title {
    font-size: 1.625em;
    line-height: 26px;
  }

  .registration-info__text {
    font-size: 1.125em;
    line-height: 1.25em;
  }

  .registration-info__image {
    flex: 0 0 125px;
  }

  .registration-steps {
    padding-bottom: 70px;
  }

  .form-steps__question {
    margin-bottom: 30px;
  }

  .form-steps__buttons {
    padding: 20px 0;
    margin-bottom: 30px;
  }

  .form-steps__input::-moz-placeholder {
    font-size: 1em;
    line-height: 1.125em;
  }

  .form-steps__input::placeholder {
    font-size: 1em;
    line-height: 1.125em;
  }

  .form-steps__input {
    min-width: 440px;
  }

  .form-steps__education {
    margin-bottom: 30px;
  }

  .form-steps__inputs-row {
    flex-direction: column;
    gap: 0;
  }

  .form-steps__inputs-row.form-steps__item {
    width: 100%;
  }

  .form-steps__work {
    margin-bottom: 30px;
  }

  .form-steps__next {
    min-width: 0;
    margin-top: 40px;
    padding: 30px 0;
  }

  .form-steps__icon {
    width: 35px;
    height: 35px;
  }

  .form-steps-input-education {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .next-step__title {
    font-size: 18px;
    line-height: 22px;
  }

  .select-custom {
    min-width: 440px;
  }

  .selection-info {
    margin-top: 20px;
  }

  .selection-info__content {
    flex-direction: column;
    gap: 15px;
  }

  .selection-info__title {
    font-size: 1.5em;
    line-height: 28px;
  }

  .selection-info__text {
    font-size: 1em;
    line-height: 1.125em;
  }

  .selection-info__text p.text-desktop {
    display: none;
  }

  .selection-info__text p.text-phone {
    display: block;
  }

  .selection-info__image {
    flex: 0 0 125px;
  }

  .recommended-platforms__title {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 26px;
  }

  .form-recommended__content {
    margin: -10px;
  }

  .form-recommended__column {
    padding: 10px;
  }

  .item-platforms__title {
    font-size: 16px;
    line-height: 20px;
  }

  .list-platforms__text {
    font-size: 15px;
    line-height: 18px;
  }

  .selection-search__title {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 26px;
  }

  .form-search__input {
    font-size: 18px;
    line-height: 22px;
  }

  .form-search__input::-moz-placeholder {
    font-size: 18px;
    line-height: 22px;
  }

  .form-search__input::placeholder {
    font-size: 18px;
    line-height: 22px;
  }

  .form-search__button {
    padding: 0;
    flex: 0 0 44px;
    height: 44px;
    border-radius: 50%;
    background: url("../img/icons/form-search-button.svg") center no-repeat;
  }

  .form-search__button span {
    display: none;
  }

  .catalog-skills__title {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 26px;
  }

  .catalog-skills__content {
    margin: -10px;
  }

  .catalog-skills__column {
    padding: 10px;
  }

  .catalog-skills__column.show-mobile {
    display: none;
  }

  .selection-skills {
    margin-bottom: 80px;
  }

  .selection-skills__items {
    row-gap: 11px;
  }

  .selection-skills__item {
    padding: 10px;
    font-size: 14px;
    line-height: 15px;
    flex: 1 1 100%;
  }

  .selection-skills__text {
    font-size: 1.0625em;
    line-height: 1.125em;
    gap: 10px;
    margin-bottom: 20px;
  }

  .selection-skills__button {
    font-size: 18px;
  }

  .show-mobile {
    display: none;
  }
}

@media (max-width: 35.625em) {
  .footer__logo {
    height: 45px;
    flex: 0 0 30px;
  }
}

@media (max-width: 29.99875em) {
  .title {
    font-size: 1.375em;
  }

  .text {
    font-size: 0.9375em;
  }

  .header__logo {
    flex: 0 0 180px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 20px;
  }

  .popup-registration__info {
    padding: 30px 10px;
  }

  .form-popup__label {
    font-size: 16px;
    line-height: 18px;
  }

  .form-popup__row {
    margin-top: 15px;
    margin-bottom: 15px;
    gap: 12px;
  }

  .form-popup__entry {
    font-size: 14px;
    line-height: 16px;
  }

  .form-popup__info {
    font-size: 14px;
    line-height: 16px;
  }

  .form-popup__forgot-pass {
    font-size: 14px;
    line-height: 16px;
  }

  .form-popup__new-code {
    margin-top: 15px;
  }

  .popup-entry__info {
    padding: 30px 10px;
  }

  .popup-recovery__info {
    padding: 30px 10px;
  }

  .popup-confirm__info {
    padding: 30px 10px;
  }

  .popup-confirm__label {
    font-size: 15px;
    line-height: 17px;
    margin-bottom: 15px;
  }

  .popup-prompt__text {
    font-size: 14px;
    line-height: 16px;
  }

  .popup-prompt__link {
    font-size: 14px;
    line-height: 16px;
  }
    
  
    .popup-prompt__content {
      max-width: 100%;
    }

  .intro__info {
    max-width: 300px;
  }

  .main-image img {
    left: 37%;
  }

  .stages__top {
    margin-bottom: 15px;
  }

  .stages__label {
    display: none;
  }

  .stages__item {
    padding-right: 10px;
    padding-left: 10px;
  }

  .item-stages__body::before {
    display: none;
  }

  .item-stages__text {
    font-size: 0.875em;
  }

  .vacancies__subtitle {
    margin-bottom: 10px;
  }

  .vacancies-slide__photo {
    min-height: 280px;
  }

  .vacancies-slide__count {
    font-size: 26px;
    line-height: 35px;
  }

  .test__top {
    margin-bottom: 20px;
  }

  .test__content {
    row-gap: 26px;
  }

  .test-content__item {
    padding-bottom: 14px;
  }

  .test-content__title {
    font-size: 1.125em;
    line-height: 24px;
    margin-bottom: 8px;
  }

  .content-summary__info {
    flex: 1 1 100%;
  }

  .content-summary__list {
    display: none;
  }

  .breadcrumbs {
    margin-top: 15px;
    padding: 12px 18px;
  }

  .breadcrumbs__item p {
    width: 28px;
  }

  .registration-info {
    margin-top: 20px;
  }

  .registration-info__title {
    font-size: 1.5em;
    line-height: 24px;
  }

  .registration-info__text {
    font-size: 1em;
  }

  .registration-steps {
    padding-bottom: 60px;
  }

  .form-steps__question {
    margin-bottom: 20px;
  }

  .form-steps__work-remot {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
  }

  .form-steps__buttons {
    margin-bottom: 20px;
  }

  .form-steps__item {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .form-steps__input {
    width: 100%;
    min-width: 0;
    padding-left: 15px;
    min-height: 48px;
  }

  .form-steps__education {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
  }

  .form-steps__add {
    align-self: flex-start;
    margin: 0 auto;
  }

  .form-steps__work {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
  }

  .form-steps__next {
    margin-top: 30px;
    padding: 20px 0;
  }

  .form-steps__salary {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .form-right {
    align-self: flex-start;
  }

  .next-step__title {
    font-size: 16px;
    line-height: 20px;
  }

  .select-custom {
    min-width: 0;
    width: 100%;
    font-size: 1em;
    line-height: 2.9375em;
    padding-left: 15px;
    min-height: 48px;
  }

  .select-custom-trigger {
    font-size: 16px;
    line-height: 20px;
  }

  .select-custom-trigger::after {
    top: 15%;
  }

  .select-custom-option {
    font-size: 16px;
    line-height: 20px;
  }

  .selection-info {
    margin-top: 15px;
  }

  .recommended-platforms__title {
    font-size: 22px;
    line-height: 24px;
  }

  .item-platforms__title {
    font-size: 15px;
    line-height: 19px;
  }

  .list-platforms__text {
    font-size: 14px;
    line-height: 17px;
  }

  .selection-search__title {
    font-size: 22px;
    line-height: 24px;
  }

  .selection-search__form {
    gap: 10px;
  }

  .form-search__input {
    font-size: 16px;
    line-height: 20px;
  }

  .form-search__input::-moz-placeholder {
    font-size: 16px;
    line-height: 20px;
  }

  .form-search__input::placeholder {
    font-size: 16px;
    line-height: 20px;
  }

  .catalog-skills__title {
    font-size: 22px;
    line-height: 24px;
  }

  .selection-skills__items {
    row-gap: 8px;
  }

  .selection-skills__item {
    font-size: 13px;
    line-height: 14px;
  }

  .selection-skills__info {
    display: flex;
    flex-direction: column;
  }

  .selection-skills__text {
    font-size: 1em;
    line-height: 1.0625em;
    gap: 8px;
    margin-bottom: 15px;
  }

  .selection-skills__button {
    font-size: 16px;
  }

  .selection-progress__row {
    width: 100%;
  }

  .selection-progress__button {
    width: 100%;
  }
}

@media (any-hover: hover) {
  .nav-header__button:hover {
    border: 1px solid var(--main-orange-color);
  }

  .footer__email:hover {
    text-decoration: underline;
  }

  .footer__link:hover {
    text-decoration: underline;
  }

  .footer__text:hover {
    text-decoration: underline;
  }

  .footer__info-text:hover {
    text-decoration: underline;
  }

  .btn:hover {
    background-color: var(--orange-color-hover);
  }

  .form-recommended__item:hover {
    background-color: #F0EEFF;
  }

  .form-recommended__item:hover::after {
    opacity: 1;
  }

  .list-platforms__item:hover {
    background-color: #BFB5FF;
  }

  .form-search__item:hover {
    background-color: #BFB5FF;
  }
}

.webp .item-platforms__list::before {
  background: url(../img/icons/icon-top-list-platforms.webp) center no-repeat;
}