* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

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

:active,
:focus {
  outline: 0;
}

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

a {
  display: block;
  cursor: pointer;
  font-size: inherit;
  color: currentColor;
}

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

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

button {
  cursor: pointer;
  background-color: transparent;
}
button:disabled {
  cursor: default;
}

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

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

ol,
ul {
  list-style: none;
}

img {
  border-style: none;
  max-width: 100%;
  vertical-align: middle;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.row {
  --x: 32px;
  --y: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(var(--y) * -1);
  margin-right: calc(var(--x) / -2);
  margin-left: calc(var(--x) / -2);
}

.row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--x) / 2);
  padding-left: calc(var(--x) / 2);
  margin-top: var(--y);
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Manrope", sans-serif;
}

body,
html {
  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%;
  background-color: #090b17;
  color: #000;
  font-family: var(--font-family);
  scroll-behavior: smooth;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container_lg {
  width: 1224px;
  margin: 0 auto;
}
.container {
  width: 1008px;
  margin: 0 auto;
}
.container__header {
  width: 800px;
  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;
}

.button {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  color: #C5D6FF;
  padding: 12px 32px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: radial-gradient(100% 100% at 80% 20%, #181B30 0%, #14182B 100%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.button:hover {
  opacity: 0.7;
}
.button.blue {
  color: #fff;
  background: radial-gradient(100% 100% at 50% 100%, #324ae0 0%, #566eff 100%);
  position: relative;
}
.button.blue .ps {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}
.button.blue .ps::after {
  content: "";
  position: absolute;
  left: -2px;
  bottom: -2px;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/3.svg) no-repeat;
}
.button.blue .ps::before {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/4.svg) no-repeat;
}
.button.blue::after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/1.svg) no-repeat;
}
.button.blue::before {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/2.svg) no-repeat;
}

.header {
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  border: 1px solid #3E4152;
  z-index: 1;
  position: fixed;
  top: 36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.header__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.header__ul a {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #C8DEF6;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header__ul a:hover {
  color: #fff;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header__logo:hover {
  opacity: 0.7;
}
.header__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main__section {
  margin: 180px 0 72px 0;
  z-index: 1;
  position: relative;
}
.main__section h1 {
  font-weight: 600;
  font-size: 56px;
  line-height: 114%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  max-width: 645px;
  margin: 0 auto;
}
.main__section h2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.06em;
  text-align: center;
  color: #C8DEF6;
  max-width: 600px;
  margin: 8px auto 16px auto;
}
.main__section .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main__part {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 1221px;
}
.main__image {
  margin: 48px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info__section {
  overflow: hidden;
}
.info__section .l {
  position: absolute;
  width: 100%;
  height: calc(100% + 2px);
  left: 0;
  top: -1px;
  pointer-events: none;
  z-index: 0;
}
.info__section .l::before {
  height: 1px;
  width: 100vw;
  content: "";
  background-color: #101328;
  position: absolute;
  right: 0;
  top: 0;
}
.info__section .l::after {
  height: 1px;
  width: 100vw;
  content: "";
  background-color: #101328;
  position: absolute;
  right: 0;
  bottom: 0;
}
.info__section .r {
  position: absolute;
  width: 100%;
  height: calc(100% + 2px);
  left: 0;
  top: -1px;
  pointer-events: none;
  z-index: 0;
}
.info__section .r::before {
  height: 1px;
  width: 100vw;
  content: "";
  background-color: #101328;
  position: absolute;
  left: 0;
  top: 0;
}
.info__section .r::after {
  height: 1px;
  width: 100vw;
  content: "";
  background-color: #101328;
  position: absolute;
  left: 0;
  bottom: 0;
}
.info__section .block {
  padding: 34px;
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
  border: 1px solid #12152B;
  background: #0A0C19;
  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;
  position: relative;
}
.info__section .block .ps {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 2;
}
.info__section .block .ps::after {
  content: "";
  position: absolute;
  left: -2px;
  bottom: -2px;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/3.svg) no-repeat;
}
.info__section .block .ps::before {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/4.svg) no-repeat;
}
.info__section .block::after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/1.svg) no-repeat;
  z-index: 3;
}
.info__section .block::before {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/2.svg) no-repeat;
  z-index: 3;
}
.info__section .block__col.block__1 {
  max-width: 206px;
}
.info__section .block__col.block__2 {
  max-width: 217px;
}
.info__section .block__col.block__3 {
  max-width: 305px;
}
.info__section .block__name {
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -0.01em;
  color: #fff;
}
.info__section .block__desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.06em;
  margin-top: 8px;
  color: #4c62e4;
}

.spin__section {
  padding: 72px 0;
}
.spin__section h1 {
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -0.01em;
  color: #fff;
  text-align: center;
}
.spin__section .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
.spin__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  gap: 32px;
  padding-top: 32px;
  -webkit-transition: transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.spin__wrapper {
  height: 244px;
  position: relative;
  margin: 32px 0;
  overflow: hidden;
}
.spin__wrapper::before {
  width: 1px;
  height: 24px;
  background-color: #fff;
  content: "";
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
}
.spin__wrapper::after {
  width: 1px;
  height: 24px;
  background-color: #fff;
  content: "";
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
}

.item {
  border: 1px solid #12152c;
  position: relative;
  width: 280px;
}
.item__top {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}
.item__top::before {
  width: 128px;
  height: 1px;
  background-color: #fff;
  content: "";
  top: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.item__img {
  height: 130px;
  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;
  text-align: center;
}
.item__bottom {
  border-top: 1px solid #12152c;
  padding: 12px 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
}
.item .ps {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}
.item .ps::after {
  content: "";
  position: absolute;
  left: -2px;
  bottom: -2px;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/3.svg) no-repeat;
}
.item .ps::before {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/4.svg) no-repeat;
}
.item::after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/1.svg) no-repeat;
}
.item::before {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/2.svg) no-repeat;
}

.media__section .block {
  padding: 34px;
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
  border: 1px solid #12152B;
  background: #0A0C19;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.media__section .block .ps {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}
.media__section .block .ps::after {
  content: "";
  position: absolute;
  left: -2px;
  bottom: -2px;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/3.svg) no-repeat;
}
.media__section .block .ps::before {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/4.svg) no-repeat;
}
.media__section .block::after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/1.svg) no-repeat;
}
.media__section .block::before {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/2.svg) no-repeat;
}
.media__section .block__name {
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -0.01em;
  color: #fff;
}

.footer {
  margin-top: 128px;
  padding-bottom: 32px;
}
.footer__first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__text {
  max-width: 615px;
  margin: 0 auto;
}
.footer__second {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #4c62e4;
  background-color: #141731;
  padding: 24px 12px;
  margin: 24px 0;
}
.footer__third {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.2117647059);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  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;
}
.overlay._open {
  pointer-events: all;
  opacity: 1;
}

.popup {
  z-index: 5;
  width: 560px;
  padding: 32px 72px;
  border: 1px solid #21253E;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
  background: #0F111F url(../img/popup.png);
  position: relative;
}
.popup .button {
  width: 100%;
  margin-top: 8px;
}
.popup h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
}
.popup h2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.06em;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  margin: 4px auto 32px auto;
}
.popup .input-container {
  width: 100%;
}
.popup .input-container input {
  width: 100%;
  border: 1px solid #1D213C;
  padding: 12px 32px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff;
}
.popup .input-container input::-webkit-input-placeholder {
  color: #3C4684;
}
.popup .input-container input::-moz-placeholder {
  color: #3C4684;
}
.popup .input-container input:-ms-input-placeholder {
  color: #3C4684;
}
.popup .input-container input::-ms-input-placeholder {
  color: #3C4684;
}
.popup .input-container input::placeholder {
  color: #3C4684;
}
.popup .ps {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}
.popup .ps::after {
  content: "";
  position: absolute;
  left: -2px;
  bottom: -2px;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/3.svg) no-repeat;
}
.popup .ps::before {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/4.svg) no-repeat;
}
.popup::after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/1.svg) no-repeat;
}
.popup::before {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: url(../img/2.svg) no-repeat;
}


@media (max-width: 1100px) {
  .container_lg {
    width: 100%;
  }
  .container {
    width: 700px;
  }
  .info__section .col-6 {
    width: 100%;
  }
  .info__section .col-12 img {
    width: 300px;
  }
}
@media (max-width: 840px) {
  .container__header {
    width: 100%;
  }
  .header {
    width: calc(100% - 40px);
    top: 20px;
  }
  .main__section {
    margin: 140px 0 72px 0;
  }
}
@media (max-width: 780px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 740px) {
  .media__section .col-6 {
    width: 100%;
  }
  .row {
    --x: 16px;
    --y: 16px;
  }
  .media__section .block,
  .info__section .block {
    padding: 16px;
  }
  .item{
    width: 220px;
  }
}
@media (max-width: 767px) {
  .info__section .block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .block__img {
    margin-top: 16px;
  }
  .info__section .block__col {
    max-width: 100% !important;
  }
}
@media (max-width: 640px) {
  .container__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  .header .button {
    padding: 6px 36px;
  }
  .header__ul {
    gap: 20px;
  }
  .main__section {
    margin: 210px 0 72px 0;
  }
  .main__section h1 {
    font-size: 40px;
  }
  .main__section h2 {
    font-size: 14px;
  }
  .item__bottom{
    font-size: 14px;
  }
}
@media (max-width: 374px) {
  body {
    zoom: 0.95;
  }
}