html {
  scroll-behavior: smooth;
}

.container {
  max-width: none;
  width: 100%;
  padding: 0 12px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 992px) {
  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
.header__wrapper {
  padding-top: 12px;
}

.header__nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header__logo-active {
  position: absolute;
  top: 0;
  z-index: 6;
}

.header__logo {
  max-width: 96px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .header__logo {
    max-width: 104px;
  }
}
.header__burger {
  position: relative;
  width: 22.86px;
  height: 17.71px;
  cursor: pointer;
}
.header__burger span {
  display: block;
  background: black;
  width: 100%;
  height: 3px;
  position: absolute;
  border-radius: 10px;
  left: 0;
  top: 7px;
  transition: 0.5s;
}
.header__burger:before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  transition: 0.5s;
}
.header__burger:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: black;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  transition: 0.5s;
}

.header__burger-active {
  position: absolute;
  z-index: 10;
  top: 7px;
  right: 0;
}
.header__burger-active span {
  opacity: 0;
  transition: 0.5s;
}
.header__burger-active:before {
  transform: rotate(45deg);
  top: 7px;
  transition: 0.5s;
}
.header__burger-active:after {
  transform: rotate(-45deg);
  bottom: 7px;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .header__burger {
    display: none;
  }
}
.header__nav {
  display: none;
}

.header__nav-active {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #F4F8FA;
  z-index: 5;
  padding: 86px 24px 40px 24px;
}

.header__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 32px;
  margin-bottom: 40px;
}

.header__list-item a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #262931;
}
.header__list-item a:hover {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #262931;
}

.header__nav-auth {
  padding: 11px;
  background: #0176FF;
  border: 1px solid #0176FF;
  border-radius: 72px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-bottom: 40px;
  max-width: 320px;
  width: 100%;
}

.header__nav-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.header__nav-phone {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #61636D;
}

.header__nav-email {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #61636D;
}

.header__nav-authorization {
  display: none;
}

@media (min-width: 992px) {
  .header__nav {
    display: block;
    flex: 1 1 auto;
  }
  .header__nav-auth {
    display: none;
  }
  .header__nav-contacts {
    display: none;
  }
  .header__list {
    flex-direction: row;
    margin: 0;
    justify-content: space-evenly;
    gap: 0;
  }
  .header__list-item a {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #61636D;
  }
  .header__list-item a:hover {
    font-size: 16px;
  }
  .header__nav-authorization {
    display: flex;
    gap: 8px;
    cursor: pointer;
  }
  .header__nav-authorization:hover p {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
  }
  .header__nav-authorization p {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #262931;
  }
  .auth__icon {
    width: 20px;
    height: 20px;
  }
  .auth__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.network {
  padding-bottom: 64px;
  padding-top: 56.77px;
  position: relative;
}

@media (min-width: 1600px) {
  .network__bg {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 7.8%;
    background: url(../img/headerBg.png) no-repeat;
  }
}
.network__title {
  font-family: "RF Dewi Extended";
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 29px;
  color: black;
  margin-bottom: 24px;
}
.network__title span {
  color: #0176FF;
}

.network__text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  color: gray;
  margin-bottom: 24px;
}
.network__text span {
  color: #3F414A;
}

.network__btn {
  background: #0176FF;
  border-radius: 72px;
  padding: 12px;
  display: block;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.network__btn:hover {
  background: #1471DE;
  box-shadow: 0px 4px 20px rgba(16, 109, 217, 0.5);
  border-radius: 72px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
}
.network__btn:active {
  background: #1471DE;
  box-shadow: inset 0px 0px 10px #1B5396;
  border-radius: 72px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
}

.network__form {
  padding: 18px 12px;
  background: #FFFFFF;
  box-shadow: 0px 8px 24px rgba(50, 73, 85, 0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form__title {
  font-family: "RF Dewi Extended";
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 19px;
  color: #262931;
  margin-bottom: 18px;
}

.network__form-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 8px;
}
.network__form-input-wrap input {
  background: #FFFFFF;
  border: 1px solid #C4C7CF;
  border-radius: 30px;
  padding: 12px 20px;
  width: 100%;
}
.network__form-input-wrap input::placeholder {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  font-feature-settings: "tnum" on, "lnum" on;
  color: #A9ABB6;
}
.network__form-input-wrap input:hover {
  background: #FFFFFF;
  border: 1px solid #61636D;
  border-radius: 30px;
}
.network__form-input-wrap input:focus {
  background: #FFFFFF;
  border: 1px solid #006DCA;
  box-shadow: 0px 0px 0px 3px rgba(0, 143, 248, 0.2);
  border-radius: 30px;
}

.network__form-input-password-wrap {
  position: relative;
}

.password-wrap-eye-open {
  position: absolute;
  top: 12px;
  right: 20px;
  cursor: pointer;
}

.password-wrap-eye-close {
  display: none;
  position: absolute;
  top: 12px;
  right: 20px;
  cursor: pointer;
}

.network__restore-password {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #9FA1AD;
  align-self: flex-start;
  margin-bottom: 18px;
}

.network__form-login {
  border: 1px solid #0176FF;
  border-radius: 72px;
  padding: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #ffffff;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #262931;
  margin-bottom: 16px;
}
.network__form-login:hover {
  background: #0176FF;
  border: 1px solid #0176FF;
  border-radius: 72px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
}
.network__form-login:active {
  background: #1471DE;
  box-shadow: inset 0px 0px 10px #1B5396;
  border-radius: 72px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
}

.network__form-registration {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #9FA1AD;
}
.network__form-registration a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #0176FF;
}
.network__form-registration a:hover {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #175297;
}

@media (min-width: 576px) {
  .network__block-wrap {
    display: flex;
    justify-content: space-around;
  }
  .network__first-block {
    flex-basis: 50%;
  }
}
@media (min-width: 992px) {
  .network {
    padding-top: 128px;
    padding-bottom: 144px;
  }
  .network__block-wrap {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .network__title {
    font-family: "RF Dewi Extended";
    font-style: normal;
    font-weight: 800;
    font-size: 56px;
    line-height: 67px;
    margin-bottom: 56px;
  }
  .network__title span {
    color: #0176FF;
  }
  .network__form-login {
    max-width: 128px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #262931;
    margin-bottom: 32px;
  }
  .network__form-login:hover {
    background: #0176FF;
    border: 1px solid #0176FF;
    border-radius: 72px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
  }
  .network__form-login:active {
    background: #1471DE;
    box-shadow: inset 0px 0px 10px #1B5396;
    border-radius: 72px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
  }
  .network__restore-password {
    margin-bottom: 40px;
  }
  .network__text {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    color: gray;
    max-width: 510px;
    margin-bottom: 56px;
  }
  .network__text span {
    color: #3F414A;
  }
  .network__form-input-wrap {
    gap: 24px;
  }
  .network__form-input-wrap input {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: "tnum" on, "lnum" on;
    color: black;
  }
  .network__form-input-wrap input::placeholder {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: "tnum" on, "lnum" on;
    color: #A9ABB6;
  }
  .network__btn {
    max-width: 202px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    padding: 16px 32px;
  }
  .network__btn:hover {
    background: #1471DE;
    box-shadow: 0px 4px 20px rgba(16, 109, 217, 0.5);
    border-radius: 72px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
  }
  .network__btn:active {
    background: #1471DE;
    box-shadow: inset 0px 0px 10px #1B5396;
    border-radius: 72px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
  }
  .network__form {
    flex: 1 1 auto;
    max-width: 485px;
    padding: 40px 48px;
  }
  .form__title {
    font-family: "RF Dewi Extended";
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 22px;
    color: #262931;
    margin-bottom: 40px;
  }
  .password-wrap-eye-open {
    top: 16px;
  }
  .password-wrap-eye-close {
    top: 16px;
  }
}
.about__project {
  background: #ffffff;
  padding: 40px 0;
}

.about__project-image {
  max-width: 240px;
  margin-bottom: 40px;
}
.about__project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about__project-title {
  font-family: "RF Dewi Extended";
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 22px;
  color: #262931;
  margin-bottom: 16px;
}

.about__project-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about__project-text-wrap p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  color: gray;
  word-break: break-word;
}
.about__project-text-wrap p span {
  color: #262931;
}

.about__project-bg-down {
  display: none;
}

@media (min-width: 576px) {
  .about__project-wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
  }
  .about__project-image {
    max-width: 300px;
    width: 100%;
    margin: 0;
  }
  .about__project-text-wrap {
    max-width: 320px;
  }
}
@media (min-width: 992px) {
  .about__project-wrap {
    justify-content: space-between;
    padding-left: 80px;
  }
  .about__project-image {
    max-width: 405px;
  }
  .about__project-title {
    font-family: "RF Dewi Extended";
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    color: #262931;
    margin-bottom: 32px;
  }
  .about__project-text-wrap {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    max-width: 427px;
    gap: 18px;
  }
  .about__project {
    padding-top: 80px;
    padding-bottom: 167px;
    position: relative;
    overflow: hidden;
  }
  .about__project-bg-down {
    position: absolute;
    display: block;
    bottom: -8px;
    width: 100%;
    height: 92.65px;
    background: url(../img/aboutProjectDown.png);
  }
}
.how-it-works__wrapper {
  background: #F4F8FA;
  padding: 64px 0;
}

.how-it-works h2 {
  font-family: "RF Dewi Extended";
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 40px;
  color: #262931;
}
.how-it-works h2 span {
  color: #0176FF;
}
.how-it-works a {
  max-width: 296px;
  margin: 0 auto;
  display: block;
  padding: 12px;
  width: 100%;
  text-align: center;
  background: #0176FF;
  border-radius: 72px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
}
.how-it-works a:hover {
  background: #1471DE;
  box-shadow: 0px 4px 20px rgba(16, 109, 217, 0.5);
  border-radius: 72px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
}
.how-it-works a:active {
  background: #1471DE;
  box-shadow: inset 0px 0px 10px #1B5396;
  border-radius: 72px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
}

.how-it-works__description {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-bottom: 40px;
}

.how-it-works__description-item {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.description-item--pos-image {
  display: none;
}

.description-item__img {
  flex-shrink: 0;
  width: 104px;
}
.description-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.description-item__text h4 {
  font-family: "RF Dewi Extended";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 17px;
  color: #262931;
  margin-bottom: 10px;
}
.description-item__text p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #61636D;
}

.how-it-works--first .description-item__img {
  height: 117px;
  margin-right: 40px;
}

.how-it-works--second .description-item__img {
  order: 2;
  height: 98px;
}

.how-it-works--third {
  align-items: center;
}
.how-it-works--third .description-item__img {
  height: 121px;
  margin-right: 40px;
}

.how-it-works--four .description-item__img {
  height: 115px;
  order: 2;
}

@media (min-width: 992px) {
  .how-it-works__wrapper {
    padding: 136px 0 144px 0;
    width: 100%;
    overflow: auto;
  }
  .how-it-works__wrapper {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .how-it-works__wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .how-it-works h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .how-it-works a {
    margin: 0 auto;
    padding: 16px 32px;
    width: fit-content;
    font-size: 16px;
    line-height: 24px;
  }
  .how-it-works a:hover {
    background: #1471DE;
    box-shadow: 0px 4px 20px rgba(16, 109, 217, 0.5);
    border-radius: 72px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
  }
  .how-it-works a:active {
    background: #1471DE;
    box-shadow: inset 0px 0px 10px #1B5396;
    border-radius: 72px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
  }
  .how-it-works__description {
    display: flex;
    flex-direction: row;
    row-gap: 0;
    column-gap: 50px;
    overflow-x: visible;
    margin-bottom: 92px;
  }
  .how-it-works__description-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    row-gap: 92px;
    justify-content: center;
  }
  .description-item__img {
    flex-shrink: 0;
    width: initial;
  }
  .description-item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .description-item__text h4 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 12px;
  }
  .description-item__text p {
    font-size: 16px;
    line-height: 140%;
  }
  .how-it-works--first {
    position: relative;
    margin-right: -30px;
    justify-content: space-between;
  }
  .how-it-works--first .description-item--pos-image {
    display: block;
    position: absolute;
    right: -60px;
    top: 250px;
  }
  .how-it-works--first .description-item__img {
    width: 260px;
    height: 292px;
    margin-right: 0;
  }
  .how-it-works--second {
    position: relative;
    margin-right: 20px;
    justify-content: space-between;
  }
  .how-it-works--second .description-item--pos-image {
    display: block;
    position: absolute;
    right: -138px;
    top: 250px;
  }
  .how-it-works--second .description-item__img {
    width: 289px;
    order: 2;
    height: 271px;
  }
  .how-it-works--third {
    align-items: center;
    margin-right: -10px;
    justify-content: space-between;
  }
  .how-it-works--third .description-item__img {
    width: 262px;
    height: 305px;
    margin-right: 0;
  }
  .how-it-works--four {
    position: relative;
    justify-content: space-between;
  }
  .how-it-works--four .description-item--pos-image {
    display: block;
    position: absolute;
    bottom: 115px;
    left: -105px;
  }
  .how-it-works--four .description-item__img {
    width: 270px;
    height: 291px;
    order: 2;
  }
}
.about__crypto {
  padding-bottom: 64px;
}

.about__crypto-title {
  font-family: "RF Dewi Extended";
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 22px;
  color: #262931;
  margin-bottom: 16px;
}
.about__crypto-title span {
  color: #0176FF;
}

.about__crypto-text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #61636D;
  margin-bottom: 32px;
}
.about__crypto-text strong {
  color: #262931;
}

.about__crypto-frame iframe {
  width: 100%;
  height: 185px;
  border-radius: 16px;
}

@media (min-width: 576px) {
  .about__crypto-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about__crypto-text {
    max-width: 630px;
    text-align: center;
  }
  .about__crypto-frame {
    max-width: 888px;
    max-height: 555px;
    width: 100%;
  }
  .about__crypto-frame iframe {
    height: 555px;
  }
}
@media (min-width: 992px) {
  .about__crypto {
    padding-bottom: 144px;
  }
  .about__crypto-title {
    font-family: "RF Dewi Extended";
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
  }
  .about__crypto-text {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #61636D;
    max-width: 671px;
  }
}
.registration {
  background: #0176FF;
  padding-top: 24px;
  padding-bottom: 20px;
}

.registration__title {
  font-family: "RF Dewi Extended";
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 130%;
  color: #FFFFFF;
  margin-bottom: 24px;
  max-width: 225px;
}
.registration__title span {
  color: #FBDC7C;
}

.registration__text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.registration__btn {
  background: #FFFFFF;
  border-radius: 72px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #262931;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.registration__btn:hover {
  background: #FFFFFF;
  box-shadow: 0px 8px 16px rgba(50, 73, 85, 0.3);
  border-radius: 52px;
}
.registration__btn:active {
  background: #FFFFFF;
  box-shadow: inset 0px 0px 10px rgba(27, 83, 150, 0.6);
  border-radius: 52px;
}

.registration__login {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
}

@media (min-width: 576px) {
  .registration__btn-wrap {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .registration__btn {
    margin: 0;
    max-width: 230px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .registration__title {
    font-family: "RF Dewi Extended";
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 130%;
    color: #FFFFFF;
    max-width: 893px;
  }
  .registration__text {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    color: #FFFFFF;
    max-width: 683px;
  }
  .registration {
    padding: 48px 0;
    background: url("/static/new/index/img/registration.png") right no-repeat, #0176FF;
  }
}
.support__wrapper {
  background: #F4F8FA;
  padding: 64px 0 40px 0;
}

.support h2 {
  font-family: "RF Dewi Extended";
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 24px;
}
.support h2 span {
  color: #0176FF;
}

.support__description .support__list {
  margin-bottom: 16px;
}

.support__list {
  position: relative;
}
.support__list li {
  position: relative;
  padding-left: 13px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #61636D;
  margin-bottom: 16px;
}
.support__list li:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0176FF;
}
.support__list li:last-child {
  margin-bottom: 0;
}
.support__list span {
  font-weight: 600;
  color: #262931;
}

.support__img {
  width: 100%;
  position: relative;
  background-image: url(../img/suppor_img.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  padding: 40px 0;
}
.support__img .support__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.support__img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 240px;
  object-fit: contain;
}

@media (min-width: 992px) {
  .support__wrapper {
    padding: 144px 0 0 0;
  }
  .support {
    background-image: url(../img/suppor_img.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: initial;
    padding-bottom: 40px;
  }
  .support h2 {
    font-size: 40px;
    line-height: 48px;
    width: 690px;
    margin: 0 auto;
    margin-bottom: 90px;
    text-align: center;
  }
  .support__description {
    display: flex;
    justify-content: space-between;
  }
  .support__description .support__list {
    margin-bottom: 0;
  }
  .support__description .support__list:first-child li {
    text-align: right;
  }
  .support__description .support__list:first-child li:nth-child(2) {
    position: relative;
    left: -1px;
    max-width: 237px;
  }
  .support__description .support__list:nth-child(2) {
    min-width: 301px;
  }
  .support__description .support__list:nth-child(2) li:nth-child(1) {
    position: relative;
    right: 14px;
    max-width: 250px;
  }
  .support__description .support__list:nth-child(2) li:nth-child(2) {
    position: relative;
    right: -7px;
    max-width: 296px;
  }
  .support__description .support__list:nth-child(2) li:nth-child(3) {
    position: relative;
    max-width: 249px;
    right: 10px;
  }
  .support__description .support__list:first-child {
    order: 1;
  }
  .support__description .support__list:nth-child(2) {
    order: 3;
  }
  .support__list {
    display: flex;
    flex-direction: column;
    gap: 75px;
    padding-top: 20px;
  }
  .support__list li {
    font-size: 16px;
    line-height: 140%;
    padding-left: 0;
    margin-bottom: 0;
  }
  .support__list li:before {
    content: none;
  }
  .support__list li:last-child {
    margin-bottom: 0;
  }
  .support__list span {
    font-weight: 600;
    color: #262931;
  }
  .support__img {
    order: 2;
    width: 100%;
    background: none;
    padding: 0;
  }
  .support__img img {
    width: 100%;
    height: 512px;
    object-fit: contain;
  }
}
.education__partners {
  padding-top: 32.54px;
}

.education__partners-title {
  margin-bottom: 32px;
  font-family: "RF Dewi Extended";
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 22px;
  color: #262931;
  max-width: 200px;
}
.education__partners-title span {
  color: #0176FF;
}

.education__partners-frame iframe {
  width: 100%;
  height: 185px;
  border-radius: 16px;
}

@media (min-width: 576px) {
  .education__partners-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .education__partners-frame {
    max-width: 888px;
    max-height: 555px;
    width: 100%;
  }
  .education__partners-frame iframe {
    height: 555px;
  }
  .education__partners-title {
    max-width: none;
  }
}
@media (min-width: 992px) {
  .education__partners-title {
    font-family: "RF Dewi Extended";
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
  }
  .education__partners {
    padding-top: 43px;
  }
}
.faq__wrapper {
  padding: 64px 0;
  background: #F4F8FA;
}

.faq h2 {
  font-family: "RF Dewi Extended";
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 22px;
  color: #262931;
  margin-bottom: 32px;
}
.faq h2 span {
  color: #0176FF;
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq__description {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__description details {
  background: #FFFFFF;
  border-radius: 12px;
  font-family: "Inter";
  padding: 12px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #61636D;
}
.faq__description details:hover {
  cursor: pointer;
}
.faq__description details[open] {
  color: #262931;
}
.faq__description summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 27px;
  justify-content: space-between;
}
.faq__description details[open] summary {
  margin-bottom: 16px;
}
.faq__description .faq__summary-border {
  margin-bottom: 16px;
  border: 1px solid #DCDDE5;
}
.faq__description summary::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #61636D;
}
.faq__description details[open] p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #262931;
}
.faq__description details[open] ul {
  padding-left: 15px;
  color: #262931;
}
.faq__description details[open] ul li {
  list-style: decimal;
}

.form {
  padding: 18px 12px;
  background: #FFFFFF;
  box-shadow: 0px 8px 24px rgba(50, 73, 85, 0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form button {
  border: 1px solid #0176FF;
  border-radius: 72px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #262931;
  padding: 12px;
  background: #ffffff;
  width: 100%;
}
.form button:hover {
  background: #0176FF;
  border: 1px solid #0176FF;
  border-radius: 72px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
.form button:active {
  background: #1471DE;
  box-shadow: inset 0px 0px 10px #1B5396;
  border-radius: 72px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
.form input {
  background: #FFFFFF;
  border: 1px solid #C4C7CF;
  border-radius: 30px;
  padding: 12px 20px;
  width: 100%;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  font-feature-settings: "tnum" on, "lnum" on;
  color: #262931;
}
.form input::placeholder {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  font-feature-settings: "tnum" on, "lnum" on;
  color: #A9ABB6;
}
.form input:hover {
  background: #FFFFFF;
  border: 1px solid #61636D;
  border-radius: 30px;
}
.form input:focus {
  background: #FFFFFF;
  border: 1px solid #006DCA;
  box-shadow: 0px 0px 0px 3px rgba(0, 143, 248, 0.2);
  border-radius: 30px;
}

.faq__form-title {
  font-family: "RF Dewi Extended";
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 19px;
  color: #262931;
  margin-bottom: 12px;
}

#faqMessage {
  padding: 16px 20px 16px 20px;
  min-height: 112px;
  position: relative;
}
#faqMessage::placeholder {
  position: absolute;
}

.form__text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #61636D;
  max-width: 310px;
  margin-bottom: 18px;
}

.form__input {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .faq__items {
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
  }
  .faq__description {
    flex-basis: 48%;
  }
  .form {
    width: 48%;
  }
}
@media (min-width: 992px) {
  .faq__wrapper {
    padding: 144px 0 120px 0;
  }
  .faq h2 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 48px;
  }
  .faq__description {
    gap: 16px;
    flex-basis: initial;
    width: 682px;
  }
  .faq__description details {
    padding: 24px;
    font-size: 16px;
  }
  .faq__description summary {
    gap: 27px;
    justify-content: space-between;
  }
  .faq__description summary::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #61636D;
  }
  .faq__description details[open] summary::after {
    transform: rotate(180deg);
  }
  .faq__description details[open] p {
    line-height: 160%;
  }
  .faq__description details[open] ul {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .faq__description details[open] ul li {
    list-style: decimal;
  }
  .form {
    padding: 40px 48px;
    max-width: 485px;
  }
  .form button {
    max-width: 166px;
  }
}
footer {
  padding: 32px 0;
  background: #FFFFFF;
  box-shadow: 0px -3px 16px rgba(50, 73, 85, 0.03);
}

.footer__logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 24px;
}

.footer__logo-wrap {
  max-width: 104px;
}
.footer__logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copyright {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #9FA1AD;
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__list-item a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #61636D;
}
.footer__list-item:hover a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #262931;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 56px;
}
.footer__contacts a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #262931;
}
.footer__contacts:hover a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
.footer__contacts:active a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.footer__auth {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer__tel {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer__mail {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer__docs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__docs a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #9FA1AD;
}
.footer__docs a:hover {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #262931;
}

@media (min-width: 576px) {
  .footer__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 20px;
  }
  .footer__docs {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__docs a {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .footer__logo {
    flex-direction: column;
  }
  .footer__docs {
    justify-content: center;
    gap: 48px;
  }
  .footer__list-item a {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #61636D;
  }
  .footer__nav {
    gap: 120px;
  }
}

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