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

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

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

a:hover {
  text-decoration: none
}

section {
  display: block
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit
}

img {
  vertical-align: top
}

img,
svg {
  max-width: 100%;
  height: auto
}

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent
}

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

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: 0 0;
  cursor: pointer
}

button:active,
button:focus,
input:active,
input:focus {
  outline: 0
}

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

label {
  cursor: pointer
}

:root {
  --container-width: 1450px;
  --container-padding: 15px;
  --font-size: 20px;
  --font-main: "Sora", sans-serif;
  --page-bg: linear-gradient(189.19deg, #260E61 30.48%, #451368 61.63%, #59166C 81.25%, #5E176D 85.64%, #901F77 101.41%, #AB237D 116.22%, #CC2984 133.71%, #FF318F 161.06%);
  --color-main: #fff;
  --color-accent: linear-gradient(0.151deg, #FF00A9 0%, #FF0051 100%);
  --color-bg: linear-gradient(0deg, #4F24FF 0%, #13D9E2 100%);
  --color-text: #060606
}

html {
  scroll-behavior: smooth
}

body {
  max-width: 1920px;
  min-width: 360px;
  background: #260e61;
  color: var(--color-main);
  font-family: var(--font-main);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  font-size: var(--font-size);
  overflow-x: hidden
}

.container {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto
}

.container__full {
  max-width: 1650px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto
}

.title {
  font-weight: 800
}

.btn {
  -webkit-transition: all .3s linear;
  transition: all .3s linear
}

body,
html {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.about {
  position: relative;
  background: 0 0
}

.about__container {
  z-index: 99;
  position: relative
}

.about__title {
  color: rgba(255, 255, 255, .1)
}

.about__wrap {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto
}

.about__subtitle {
  font-weight: 700;
  margin-bottom: 24px
}

.about__subtitle-one {
  color: #1dfff9
}

.about__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 24px
}

.about__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.about__btn {
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: solid 1px #ff0051;
  background: 0 0;
  color: #fff
}

.about__btn:hover {
  background: var(--color-accent);
  -webkit-transition: all .3s linear;
  transition: all .3s linear
}

.about__map {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 98
}

@-webkit-keyframes moveUpDown2 {
  0% {
    -webkit-transform: translateY(-10px) translateX(10px);
    transform: translateY(-10px) translateX(10px)
  }

  100% {
    -webkit-transform: translateY(10px) translateX(-10px);
    transform: translateY(10px) translateX(-10px)
  }
}

@keyframes moveUpDown2 {
  0% {
    -webkit-transform: translateY(-10px) translateX(10px);
    transform: translateY(-10px) translateX(10px)
  }

  100% {
    -webkit-transform: translateY(10px) translateX(-10px);
    transform: translateY(10px) translateX(-10px)
  }
}

@-webkit-keyframes moveUpDown {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
  }

  100% {
    -webkit-transform: translateY(60px);
    transform: translateY(60px)
  }
}

@keyframes moveUpDown {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
  }

  100% {
    -webkit-transform: translateY(60px);
    transform: translateY(60px)
  }
}

.form {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.form__box {
  border: 1px solid #fff;
  border-radius: 4px;
  width: 100%;
  max-width: 100%
}

.form__row {
  display: flex;
  gap: 22px;
  width: 100%
}

.form__wrap {
  max-width: 100%;
  width: 100%
}



.form__box input,
.form__box textarea {
  color: var(--color-main);
  width: 100%;
  padding: 16px 22px
}

.form__box input::-webkit-input-placeholder,
.form__box textarea::-webkit-input-placeholder {
  color: var(--color-main)
}

.form__box input::-moz-placeholder,
.form__box textarea::-moz-placeholder {
  color: var(--color-main)
}

.form__box input:-ms-input-placeholder,
.form__box textarea:-ms-input-placeholder {
  color: var(--color-main)
}

.form__box input::-ms-input-placeholder,
.form__box textarea::-ms-input-placeholder {
  color: var(--color-main)
}

.form__box input::placeholder,
.form__box textarea::placeholder {
  color: var(--color-main)
}

.form__message {
  width: 100%
}

.form__message textarea {
  outline: 0;
  min-height: 160px;
  resize: none
}

.form__btn {
  display: block;
  margin: 0 auto
}

.form__btn button {
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  border: solid 1px #ff0051;
  background: #ff0051
}

.form__btn button:hover {
  background: 0 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear
}

@media screen and (min-width:1920px) {
  .title {
    font-size: 180px
  }

  .about {
    padding-bottom: 100px
  }

  .about__wrap {
    margin-top: -100px
  }

  .about__subtitle {
    font-size: 50px
  }

  .about__list {
    gap: 140px
  }

  .about__list-item {
    gap: 24px
  }

  .about__list-item p {
    font-size: 20px
  }

  .about__btn {
    width: 180px
  }

  .about__btn {
    height: 48px
  }

  .about__btn {
    font-size: 20px
  }

  .about__map {
    width: 400px
  }

  .form {
    margin-bottom: 146px
  }

  .form {
    gap: 32px
  }

  .form__box input,
  .form__box textarea {
    font-size: 18px
  }

  .form__box input,
  .form__box textarea {
    padding-top: 22px
  }

  .form__box input,
  .form__box textarea {
    padding-bottom: 22px
  }

  .form__box input::-webkit-input-placeholder,
  .form__box textarea::-webkit-input-placeholder {
    font-size: 18px
  }

  .form__box input::-moz-placeholder,
  .form__box textarea::-moz-placeholder {
    font-size: 18px
  }

  .form__box input:-ms-input-placeholder,
  .form__box textarea:-ms-input-placeholder {
    font-size: 18px
  }

  .form__box input::-ms-input-placeholder,
  .form__box textarea::-ms-input-placeholder {
    font-size: 18px
  }

  .form__box input::placeholder,
  .form__box textarea::placeholder {
    font-size: 18px
  }

  .form__btn button {
    width: 460px
  }

  .form__btn button {
    height: 70px
  }

  .form__btn button {
    font-size: 22px
  }
}

@media screen and (max-width:1920px) {
  .title {
    font-size: calc(62px + (180 - 62) * ((100vw - 481px)/ (1920 - 481)))
  }

  .about {
    padding-bottom: calc(89px + (100 - 89) * ((100vw - 481px)/ (1920 - 481)))
  }

  .about__wrap {
    margin-top: calc(-30px + (-100 - -30) * ((100vw - 481px)/ (1920 - 481)))
  }

  .about__subtitle {
    font-size: calc(20px + (50 - 20) * ((100vw - 481px)/ (1920 - 481)))
  }

  .about__list {
    gap: calc(16px + (140 - 16) * ((100vw - 481px)/ (1920 - 481)))
  }

  .about__list-item {
    gap: calc(16px + (24 - 16) * ((100vw - 481px)/ (1920 - 481)))
  }

  .about__list-item p {
    font-size: calc(16px + (20 - 16) * ((100vw - 481px)/ (1920 - 481)))
  }

  .about__btn {
    width: calc(116px + (180 - 116) * ((100vw - 481px)/ (1920 - 481)))
  }

  .about__btn {
    height: calc(30px + (48 - 30) * ((100vw - 481px)/ (1920 - 481)))
  }

  .about__btn {
    font-size: calc(12px + (20 - 12) * ((100vw - 481px)/ (1920 - 481)))
  }

  .about__map {
    width: calc(300px + (400 - 300) * ((100vw - 481px)/ (1920 - 481)))
  }

  .form {
    margin-bottom: calc(122px + (146 - 122) * ((100vw - 481px)/ (1920 - 481)))
  }

  .form {
    gap: calc(16px + (32 - 16) * ((100vw - 481px)/ (1920 - 481)))
  }

  .form__box input,
  .form__box textarea {
    font-size: calc(12px + (18 - 12) * ((100vw - 481px)/ (1920 - 481)))
  }

  .form__box input,
  .form__box textarea {
    padding-top: calc(14px + (22 - 14) * ((100vw - 481px)/ (1920 - 481)))
  }

  .form__box input,
  .form__box textarea {
    padding-bottom: calc(14px + (22 - 14) * ((100vw - 481px)/ (1920 - 481)))
  }

  .form__box input::-webkit-input-placeholder,
  .form__box textarea::-webkit-input-placeholder {
    font-size: calc(12px + (18 - 12) * ((100vw - 481px)/ (1920 - 481)))
  }

  .form__box input::-moz-placeholder,
  .form__box textarea::-moz-placeholder {
    font-size: calc(12px + (18 - 12) * ((100vw - 481px)/ (1920 - 481)))
  }

  .form__box input:-ms-input-placeholder,
  .form__box textarea:-ms-input-placeholder {
    font-size: calc(12px + (18 - 12) * ((100vw - 481px)/ (1920 - 481)))
  }

  .form__box input::-ms-input-placeholder,
  .form__box textarea::-ms-input-placeholder {
    font-size: calc(12px + (18 - 12) * ((100vw - 481px)/ (1920 - 481)))
  }

  .form__box input::placeholder,
  .form__box textarea::placeholder {
    font-size: calc(12px + (18 - 12) * ((100vw - 481px)/ (1920 - 481)))
  }

  .form__btn button {
    width: calc(200px + (460 - 200) * ((100vw - 481px)/ (1920 - 481)))
  }

  .form__btn button {
    height: calc(48px + (70 - 48) * ((100vw - 481px)/ (1920 - 481)))
  }

  .form__btn button {
    font-size: calc(16px + (22 - 16) * ((100vw - 481px)/ (1920 - 481)))
  }
}

@media only screen and (max-width:769px) {
  .form__name {
    width: 100%
  }

  .form__btn {
    margin: 0;
    margin-right: auto
  }
}

@media only screen and (max-width:592px) {
  .about__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

@media screen and (max-width:481px) {
  .title {
    font-size: 62px
  }

  .about {
    padding-bottom: 89px
  }

  .about__wrap {
    margin-top: -30px
  }

  .about__subtitle {
    font-size: 20px
  }

  .about__list {
    gap: 16px
  }

  .about__list-item {
    gap: 16px
  }

  .about__list-item p {
    font-size: 16px
  }

  .about__btn {
    width: 116px
  }

  .about__btn {
    height: 30px
  }

  .about__btn {
    font-size: 12px
  }

  .about__map {
    width: 300px
  }

  .form {
    margin-bottom: 122px
  }

  .form {
    gap: 16px
  }

  .form__box input,
  .form__box textarea {
    font-size: 12px
  }

  .form__box input,
  .form__box textarea {
    padding-top: 14px
  }

  .form__box input,
  .form__box textarea {
    padding-bottom: 14px
  }

  .form__box input::-webkit-input-placeholder,
  .form__box textarea::-webkit-input-placeholder {
    font-size: 12px
  }

  .form__box input::-moz-placeholder,
  .form__box textarea::-moz-placeholder {
    font-size: 12px
  }

  .form__box input:-ms-input-placeholder,
  .form__box textarea:-ms-input-placeholder {
    font-size: 12px
  }

  .form__box input::-ms-input-placeholder,
  .form__box textarea::-ms-input-placeholder {
    font-size: 12px
  }

  .form__box input::placeholder,
  .form__box textarea::placeholder {
    font-size: 12px
  }

  .form__btn button {
    width: 200px
  }

  .form__btn button {
    height: 48px
  }

  .form__btn button {
    font-size: 16px
  }

  .form__row {
    flex-direction: column
  }
}

/* modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 999;
}

.modal.open {
  display: flex
}

.card {
  background: #260e61;
  max-width: 720px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  padding: 18px
}

.card h2 {
  margin: 0 0 10px
}

.progress {
  height: 10px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden
}

.bar {
  height: 100%;
  width: 0%;
}

/* без указания цвета — пусть браузер сам решит */
.stat {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 0
}

pre {
  background: #0b0b0b;
  color: #e6e6e6;
  padding: 12px;
  border-radius: 6px;
  max-height: 320px;
  overflow: auto
}

.row-compact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center
}