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

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

:focus,
:active {
  outline: none;
}

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

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scroll-padding-top: 100px;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -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 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
}

@font-face {
  font-family: "Monserrat";
  src: url("../assets/fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Monserrat";
  src: url("../assets/fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Monserrat";
  src: url("../assets/fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Monserrat";
  src: url("../assets/fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Monserrat";
  src: url("../assets/fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-main: #060B0F;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-black-alt: #060B0F;
  --container-width: 1920px;
  --container-padding: 60px;
}

@keyframes header {
  to {
    padding-block: 20px;
    background-color: var(--color-black-alt);
    box-shadow: 0 2px 4px var(--color-black);
  }
}
body {
  background-color: var(--color-main);
  font-family: "Monserrat", sans-serif;
  color: var(--color-white);
  font-weight: 400;
}

a {
  transition-duration: 0.4s;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--color-black);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-black);
  }
}

button,
.button {
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 26px;
  border-radius: 10px;
  transition-duration: 0.3s;
}
@media (any-hover: hover) {
  button:hover,
  .button:hover {
    transform: scale(1.08);
  }
}
@media (any-hover: none) {
  button:active,
  .button:active {
    transform: scale(1.08);
  }
}

input {
  padding: 14px 20px;
  color: var(--color-white);
  font-size: 16px;
  border-radius: 10px;
  background-color: #4D4D4D;
  margin-right: 20px;
  transition-duration: 0.3s;
}
input:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
input:hover::placeholder {
  transition-duration: 0.3s;
  color: #FFFFFF;
}
input:focus {
  background-color: rgba(255, 255, 255, 0.4);
}
input:focus::placeholder {
  transition-duration: 0.3s;
  color: #FFFFFF;
}

h1,
.h1 {
  font-size: 58px;
  font-weight: 700;
}

h2,
.h2 {
  font-size: 50px;
}

h3,
.h3 {
  font-size: 48px;
  font-weight: 700;
}

h4,
.h4 {
  font-size: 32px;
  font-weight: 700;
}

h5,
.h5 {
  font-size: 24px;
  font-weight: 800;
}

p {
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
}

.container {
  margin-inline: auto;
  max-width: var(--container-width);
  padding-inline: var(--container-padding);
}

.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  background-color: transparent;
  transition-duration: 0.3s;
  padding-block: 32px;
  animation-name: header;
  animation-fill-mode: both;
  animation-timeline: scroll();
  animation-range: 60px 100px;
}
.header__button-mob {
  display: none;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav {
  font-weight: 500;
  font-size: 18px;
}
.header__nav-list {
  display: flex;
  align-items: center;
}
.header__nav-item:not(:last-child) {
  margin-right: 40px;
}

.hero {
  background: url("../assets/images/hero-background.jpg") 0 0/100% 100% no-repeat;
  height: 1080px;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 103px;
  background-color: var(--color-main);
}
.hero__container {
  padding-top: 92px;
  height: 100%;
  display: grid;
  align-items: center;
}
.hero__phone {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 100%;
}
.hero__content {
  max-width: 1340px;
  z-index: 1;
}
.hero__content-text {
  max-width: 590px;
  opacity: 0.7;
  font-size: 16px;
  margin-top: 20px;
}
.hero__content-links {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.hero__content-button {
  margin-right: 20px;
  z-index: 1;
}
.hero__content-link {
  font-size: 16px;
  opacity: 0.5;
}
.hero__content-icons {
  display: flex;
  align-items: center;
}
.hero__content-icons > .h1:not(:last-child) {
  margin-right: 10px;
}
.hero__content-icons > .icon:not(:last-child) {
  margin-right: 10px;
}
.hero__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: space-between;
  column-gap: 66px;
  z-index: 1;
  margin-bottom: -120px;
}
.hero__item {
  position: relative;
  padding: 27px 3px 27px 27px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(20.3px);
  background: rgba(6, 11, 15, 0.5);
  border-radius: 20px;
  border: 1px solid rgba(250, 250, 250, 0.5);
}
.hero__item::before {
  content: "";
  position: absolute;
  top: 1px;
  left: -2px;
  width: 100.5%;
  height: 101%;
  border-radius: 20px;
  background: linear-gradient(to bottom, transparent, rgba(6, 11, 15, 0.98) 96%), url("../assets/images/hero-card-bg.png") 0 0/100% 100% no-repeat;
  z-index: -1;
}
.hero__item-icon {
  margin-right: 12px;
}
.hero__item-text {
  font-size: 16px;
}
.hero__item-text span {
  font-weight: 700;
}

.cases {
  padding-block: 82px 27px;
  text-align: center;
}
.cases__title {
  padding-inline: 175px;
  margin-bottom: 10px;
}
.cases__text {
  opacity: 0.7;
  margin-bottom: 40px;
}
.cases__list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(2, auto);
  column-gap: 41px;
  row-gap: 35px;
  margin-bottom: 40px;
  justify-content: center;
}
.cases__item {
  position: relative;
  border-radius: 18px;
  text-align: center;
  background: #080e14;
  backdrop-filter: blur(20.3px);
  padding: 30px 100px;
  border: 1px solid rgba(250, 250, 250, 0.5);
}
.cases__item::before {
  content: "";
  position: absolute;
  top: 1px;
  left: -2px;
  width: 100.5%;
  height: 101%;
  border-radius: 18px;
  background: linear-gradient(to bottom, transparent, rgba(6, 11, 15, 0.98) 96%);
  z-index: -1;
}
.cases__item-logo {
  margin-bottom: 11px;
}
.cases__item-view {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 9px;
}
.cases__item-text {
  font-weight: 600;
  opacity: 0.5;
}
.cases__item.yellow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/images/blur-yellow.png");
  border-radius: 18px;
}
.cases__item.green::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/images/blur-green.png");
  border-radius: 18px;
}
.cases__item.blue::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/images/blur-blue.png");
  border-radius: 18px;
}
.cases__item.red::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/images/blur-red.png");
  border-radius: 18px;
}
.cases__button {
  margin-bottom: 70px;
}
.cases__videos {
  display: flex;
  overflow: hidden;
  overflow-x: auto;
}
.cases__video {
  width: 420px;
  height: 572px;
  border-radius: 20px;
}
.cases__video iframe {
  width: inherit;
  height: inherit;
  border-radius: inherit;
}
.cases__video video {
  width: inherit;
  height: inherit;
  border-radius: inherit;
}
.cases__video:not(:last-child) {
  margin-right: 40px;
}

.about {
  padding-block: 85px 60px;
  overflow: hidden;
}
.about__top {
  display: flex;
  justify-content: space-between;
  margin-left: -60px;
  background-color: #080E14;
  border-top-right-radius: 67.5px;
  border-bottom-right-radius: 67.5px;
  margin-bottom: 60px;
}
.about__top-content {
  position: relative;
  max-width: 1103px;
  padding-left: var(--container-padding);
}
.about__top-content::after {
  content: "";
  position: absolute;
  top: 30px;
  left: var(--container-padding);
  width: 4px;
  height: 140px;
  background: linear-gradient(207deg, #394b5f 0%, #a1b1c1 100%);
  border-radius: 5px;
}
.about__top-img {
  border-radius: 67.5px;
  margin-left: 20px;
}
.about__top-subtitle {
  margin-top: 30.5px;
  margin-bottom: 20px;
  font-weight: 400;
  margin-left: 24px;
}
.about__top-title {
  font-weight: 700;
  margin-bottom: 28.5px;
  max-width: 592px;
  margin-left: 24px;
}
.about__top-info {
  font-weight: 400;
  padding: 14px 54px 10px 14px;
  border-radius: 20px;
  background: var(--color-main);
  backdrop-filter: blur(20.3px);
  border: 1px solid rgba(250, 250, 250, 0.5);
  margin-bottom: 20px;
}
.about__top-info::before {
  content: "";
  position: absolute;
  top: 1px;
  left: -2px;
  width: 100.5%;
  height: 101%;
  border-radius: 18px;
  background: linear-gradient(to bottom, transparent, rgba(6, 11, 15, 0.98) 96%);
  z-index: -1;
}
.about__top-info p {
  color: #b6b8ba;
}
.about__top-info p span {
  color: var(--color-white);
  font-weight: 700;
}
.about__top-info p:not(:last-child) {
  margin-bottom: 20px;
}
.about__top-item {
  display: flex;
  align-items: center;
}
.about__top-item:not(:last-child) {
  margin-bottom: 15px;
}
.about__top-item-icon {
  margin-right: 12px;
}
.about__bottom {
  display: flex;
  justify-content: space-between;
  margin-right: -60px;
  background-color: #080E14;
  border-top-left-radius: 67.5px;
  border-bottom-left-radius: 67.5px;
}
.about__bottom-content {
  position: relative;
  max-width: 1103px;
  padding-right: var(--container-padding);
}
.about__bottom-content::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 0px;
  width: 4px;
  height: 140px;
  background: linear-gradient(207deg, #394b5f 0%, #a1b1c1 100%);
  border-radius: 5px;
}
.about__bottom-img {
  border-radius: 67.5px;
  margin-right: 20px;
}
.about__bottom-subtitle {
  margin-top: 30.5px;
  margin-bottom: 20px;
  font-weight: 400;
  margin-left: 24px;
}
.about__bottom-title {
  font-weight: 700;
  margin-bottom: 28.5px;
  margin-left: 24px;
}
.about__bottom-info {
  font-weight: 400;
  padding: 14px 54px 0px 14px;
  border-radius: 20px;
  background: var(--color-main);
  backdrop-filter: blur(20.3px);
  border: 1px solid rgba(250, 250, 250, 0.5);
}
.about__bottom-info::before {
  content: "";
  position: absolute;
  top: 1px;
  left: -2px;
  width: 100.5%;
  height: 101%;
  border-radius: 18px;
  background: linear-gradient(to bottom, transparent, rgba(6, 11, 15, 0.98) 96%);
  z-index: -1;
}
.about__bottom-info p {
  color: #b6b8ba;
  font-weight: 400;
}
.about__bottom-info p span {
  color: var(--color-white);
  font-weight: 700;
}
.about__bottom-info p:not(:last-child) {
  margin-bottom: 20px;
}

.question {
  background: linear-gradient(207deg, #394b5f 0%, #a1b1c1 100%);
  font-size: 70px;
  text-align: center;
  padding-block: 173px;
  font-weight: 700;
  line-height: 110%;
}
.question__container img {
  display: inline;
  margin-block: 1%;
  border-radius: 12px;
}

.tasks {
  padding: 80px 0 53px;
}
.tasks__title {
  margin-bottom: 20px;
}
.tasks__text {
  margin-bottom: 40px;
  opacity: 0.5;
  max-width: 1104px;
}
.tasks__info {
  margin-bottom: 40px;
}
.tasks__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 35px;
  overflow: hidden;
}
.tasks__card {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  background-color: #0E1820;
  border-radius: 24px;
  padding: 40px;
  height: 343px;
}
.tasks__card.light {
  background: linear-gradient(207deg, #394b5f 0%, #a1b1c1 100%);
}
.tasks__card-info {
  display: grid;
  grid-template-rows: repeat(2, auto);
  align-content: space-between;
}
.tasks__card-icon {
  margin-left: -8px;
}
.tasks__card-title {
  font-weight: 600;
}
.tasks__card-text {
  font-size: 16px;
  opacity: 0.8;
  margin-top: 20px;
}

.advantage {
  padding-block: 225px;
  background: url("../assets/images/advantages-background.png") 0 0/100% 100% no-repeat;
}
.advantage__container {
  position: relative;
  min-height: 420px;
}
.advantage__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 96px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
.advantage__card {
  position: relative;
  padding: 27px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(20.3px);
  background: rgba(6, 11, 15, 0.5);
  border-radius: 20px;
  border: 1px solid rgba(250, 250, 250, 0.5);
}
.advantage__card::before {
  content: "";
  position: absolute;
  top: 1px;
  left: -2px;
  width: 100.5%;
  height: 101%;
  border-radius: 20px;
  background: linear-gradient(to bottom, transparent, rgba(6, 11, 15, 0.98) 96%);
  z-index: -1;
}
.advantage__card.wallet {
  position: absolute;
  top: 1%;
  left: 38%;
  max-width: 755px;
}
.advantage__card.youtube {
  position: absolute;
  bottom: 2%;
  left: 7.8%;
  max-width: 595px;
}
.advantage__card.star {
  position: absolute;
  bottom: 0;
  left: 59%;
  max-width: 681px;
  white-space: nowrap;
}
.advantage__card.star.clear {
  white-space: wrap;
}
.advantage__card.star span {
  white-space: wrap;
}
.advantage__card-icon {
  margin-right: 20px;
}
.advantage__card-text {
  font-size: 16px;
  font-weight: 600;
}
.advantage__card-text span {
  opacity: 0.7;
  font-weight: 400;
}

.table {
  padding-block: 60px 54px;
}
.table__title {
  margin-bottom: 20px;
  max-width: 838px;
}
.table__text {
  margin-bottom: 32px;
  opacity: 0.5;
  max-width: 1125px;
}
.table__table {
  border: 1px solid #808080;
  border-radius: 12px;
  width: 100%;
}
.table__table th {
  padding: 20px;
  font-size: 15px;
  color: #808080;
}
.table__table th:not(:last-child) {
  border-right: 1px solid #808080;
}
.table__table td {
  padding: 10px 20px;
  font-size: 15px;
  border-top: 1px solid #808080;
}
.table__table td p {
  font-size: 15px;
}
.table__table td:not(:last-child) {
  border-right: 1px solid #808080;
}
.table__table td.fill {
  background-color: #0A131A;
}
.table__table-first {
  display: flex;
  align-items: center;
}
.table__table-first img {
  margin-right: 12px;
}

.start {
  padding-block: 40px;
}
.start__title {
  margin-bottom: 40px;
}
.start__content {
  display: grid;
  grid-template-columns: auto 1fr;
}
.start__content-card {
  display: grid;
  grid-template-rows: repeat(5, auto);
  padding: 28px 26px 16px 28px;
  border-radius: 21px;
  background: linear-gradient(207deg, #394b5f 0%, #a1b1c1 100%);
  max-width: 573px;
  height: 621px;
}
.start__content-card-title {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.start__content-card-title img {
  margin-right: 15px;
}
.start__content-card-title p {
  font-size: 40px;
  font-weight: 700;
}
.start__content-card-text {
  font-size: 24px;
  font-weight: 500;
}
.start__content-card-text:not(:last-child) {
  margin-bottom: 24px;
}
.start__content-card-button {
  width: 100%;
  align-self: flex-end;
  height: fit-content;
  text-align: center;
}
.start__content-items {
  position: relative;
}
.start__avatar {
  position: absolute;
  bottom: 2%;
  right: 12%;
  max-height: 668px;
}
.start__stairs {
  position: absolute;
  bottom: 0;
  right: 25%;
}
.start__item {
  position: absolute;
}
.start__item-title {
  font-size: 30px;
  text-wrap: 700;
  margin-bottom: 10px;
  white-space: nowrap;
}
.start__item-text {
  opacity: 0.5;
}
.start__item.first {
  top: 4%;
  left: 10%;
  max-width: 400px;
}
.start__item.second {
  top: 28%;
  left: 29%;
  max-width: 401px;
}
.start__item.third {
  top: 52%;
  left: 45%;
  max-width: 450px;
}
.start__item.fourth {
  top: 77%;
  left: 64%;
  max-width: 450px;
}

.contact {
  position: relative;
  display: grid;
  grid-template-rows: repeat(3, auto);
  justify-content: center;
  background: url("../assets/images/contact-bg.jpg") 0 0/100% 100% no-repeat;
  padding: 162px 0 150px;
  max-height: 740px;
}
.contact::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 37%;
  background: url("../assets/images/contact-stone.png") 0 0/100% 100% no-repeat;
}
.contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, var(--color-main) 0%, transparent 70%);
}
.contact__container {
  z-index: 1;
}
.contact__title {
  font-size: 94px;
  font-weight: 700;
  line-height: 130%;
  text-align: center;
  width: 100%;
}
.contact__info {
  position: relative;
  backdrop-filter: blur(20.3px);
  border-radius: 20px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  padding: 13px 46px 14px 54px;
  max-width: 1103px;
  border: 1px solid rgba(250, 250, 250, 0.5);
  justify-self: center;
}
.contact__info::before {
  content: "";
  position: absolute;
  top: 1px;
  left: -2px;
  width: 100.5%;
  height: 101%;
  border-radius: 20px;
  background: linear-gradient(to bottom, transparent, rgba(6, 11, 15, 0.98) 96%);
  z-index: -1;
}
.contact__info-text {
  font-size: 24px;
}
.contact__info-text:not(:last-child) {
  margin-bottom: 30px;
}
.contact__buttons {
  display: flex;
  margin-top: 15px;
  max-width: fit-content;
  justify-self: center;
}
.contact__button:not(:last-child) {
  margin-right: 12px;
}

.popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 90;
}
.popup__overlay.active {
  display: block;
}
.popup__content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 90;
  max-width: 880px;
  max-height: fit-content;
  border-radius: 20px;
  background-color: #070C13;
  padding: 40px;
}
.popup__content-form {
  display: grid;
  grid-template-columns: repeat(3, auto);
}
.popup__content-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.popup__content-text {
  opacity: 0.5;
  margin-bottom: 40px;
}
.popup__content.active {
  display: block;
}
.popup__content-button {
  display: inline-block;
  width: fit-content;
  justify-self: end;
}

@media (max-width: 1500px) {
  :root {
    --container-width: 1440px;
    --container-padding: 45px;
  }
  h1,
  .h1 {
    font-size: 43.6px;
  }
  h2,
  .h2 {
    font-size: 37.5px;
  }
  h3,
  .h3 {
    font-size: 18px;
  }
  input {
    font-size: 12px;
    border-radius: 7.5px;
  }
  button,
  .button {
    font-size: 12px;
    padding: 13.5px 19.5px;
    border-radius: 7.5px;
  }
  .header__logo img {
    width: 114.8px;
    height: 36.7px;
  }
  .header__nav {
    font-size: 13.5px;
  }
  .hero {
    height: 810px;
  }
  .hero::after {
    height: 77px;
  }
  .hero__phone {
    max-height: 670px;
  }
  .hero__content-title {
    max-width: 1000px;
  }
  .hero__content-icons > .icon {
    width: 45px;
    height: 45px;
  }
  .hero__content-icons > .icon:not(:last-child) {
    margin-right: 8px;
  }
  .hero__content-text {
    font-size: 12px;
  }
  .hero__content-link {
    font-size: 12px;
  }
  .hero__list {
    column-gap: 49px;
    margin-bottom: -75px;
  }
  .hero__item {
    border-radius: 15px;
    padding: 20.25px 8.25px 20.25px 15px;
  }
  .hero__item-icon {
    height: 49.5px;
    width: 49.5px;
    margin-right: 10px;
  }
  .hero__item-text {
    font-size: 12px;
  }
  .cases__title {
    font-size: 36px;
    padding: 0;
    max-width: 1120px;
    justify-self: center;
    margin-bottom: 8px;
  }
  .cases__text {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .cases__list {
    column-gap: 30.75px;
    row-gap: 26.25px;
    margin-bottom: 30px;
  }
  .cases__item {
    padding: 22.5px 79.5px;
  }
  .cases__item-logo {
    margin-bottom: 6px;
    width: 65%;
  }
  .cases__item-view {
    font-size: 27px;
    margin-bottom: 6.75px;
  }
  .cases__item-text {
    font-size: 15px;
  }
  .cases__button {
    margin-bottom: 53.25px;
  }
  .cases__video {
    width: 315px;
    height: 429px;
    border-radius: 15px;
  }
  .cases__video:not(:last-child) {
    margin-right: 30px;
  }
  .question {
    font-size: 52.5px;
    padding-block: 129px;
  }
  .question__container img {
    height: 39px;
    width: 85px;
    border-radius: 9px;
  }
  .tasks {
    padding: 60px 0 39.75px;
  }
  .tasks__title {
    margin-bottom: 15.5px;
    font-size: 36px;
  }
  .tasks__text {
    margin-bottom: 30px;
    font-size: 15px;
    max-width: 828px;
  }
  .tasks__info {
    margin-bottom: 30.25px;
    font-size: 24px;
  }
  .tasks__cards {
    column-gap: 26.25px;
  }
  .tasks__card {
    border-radius: 18px;
    padding: 30px;
    height: 257.25px;
  }
  .tasks__card-icon {
    width: 41.25px;
    height: 41.25px;
    margin-left: -6px;
  }
  .tasks__card-text {
    font-size: 12px;
    margin-top: 15px;
  }
  .advantage {
    padding-block: 165.75px 148.5px;
  }
  .advantage__container {
    position: relative;
    min-height: 320px;
  }
  .advantage__title {
    font-size: 72px;
  }
  .advantage__card {
    padding: 19.87px;
    border-radius: 15px;
    margin-right: 20px;
  }
  .advantage__card.wallet {
    max-width: 566.25px;
  }
  .advantage__card.youtube {
    max-width: 446.25px;
  }
  .advantage__card.star {
    max-width: 510.75px;
  }
  .advantage__card-icon {
    width: 49.5px;
    height: 49.5px;
    margin-right: 15.25px;
  }
  .advantage__card-text {
    font-size: 12px;
  }
  .table {
    padding-block: 45px 37.5px;
  }
  .table__title {
    font-size: 36px;
    margin-bottom: 15.5px;
  }
  .table__text {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .table__table {
    border-radius: 9px;
  }
  .table__table th {
    padding: 14.45px 15px;
    font-size: 11.25px;
  }
  .table__table td {
    padding: 7.5px 15px;
  }
  .table__table td p {
    font-size: 11.25px;
  }
  .table__table-first img {
    width: 28.5px;
    height: 28.5px;
    margin-right: 9px;
  }
  .contact {
    padding: 121.5px 0 130px;
  }
  .contact__title {
    font-size: 72px;
    margin-bottom: 4.25;
    justify-self: center;
  }
  .contact__info {
    margin-bottom: 11.25px;
    border-radius: 15px;
    padding: 9.75px 34.5px 8.75px 40.5px;
    max-width: 830px;
  }
  .contact__info-text {
    font-size: 18px;
  }
  .start__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .start__content-card {
    height: 465.75px;
    padding: 21.75px 21px 12px;
    border-radius: 15.75px;
    max-width: 429.75px;
  }
  .start__content-card-title {
    margin-bottom: 21px;
  }
  .start__content-card-title img {
    width: 30px;
    height: 30px;
    margin-right: 11.25px;
  }
  .start__content-card-title p {
    font-size: 30px;
  }
  .start__content-card-text {
    font-size: 18px;
    max-width: 389px;
  }
  .start__content-card-text:not(:last-child) {
    margin-bottom: 17px;
  }
  .start__avatar {
    max-height: 501.07px;
    max-width: 277.33px;
  }
  .start__stairs {
    max-width: 535.5px;
    max-height: 371.25px;
  }
  .start__item-title {
    font-size: 22.5px;
    margin-bottom: 7.5px;
  }
  .start__item-text {
    font-size: 15px;
  }
  .start__item.second {
    max-width: 300.75px;
  }
  .start__item.third {
    max-width: 336.75px;
  }
  .start__item.fourth {
    max-width: 345px;
  }
  .about {
    padding-block: 63.75px 60px;
  }
  .about__top {
    margin-left: -45px;
    margin-bottom: 45px;
  }
  .about__top-content::after {
    top: 22.5px;
    width: 3px;
    height: 105px;
  }
  .about__top-subtitle {
    margin-top: 22.5px;
    font-size: 15px;
    margin-bottom: 14.5px;
  }
  .about__top-info {
    max-width: 806px;
  }
  .about__top-info p {
    font-size: 13.5px;
  }
  .about__top-item:not(:last-child) {
    margin-bottom: 11.25px;
  }
  .about__top-item-text {
    font-size: 15px;
  }
  .about__top-item-icon {
    width: 30px;
    height: 30px;
    margin-right: 9px;
  }
  .about__top-img {
    width: 441px;
    height: 441px;
    border-radius: 50.65px;
    margin-left: 20px;
  }
  .about__bottom {
    margin-right: -45px;
  }
  .about__bottom-content::after {
    top: 23.25px;
    width: 3px;
    height: 105px;
  }
  .about__bottom-subtitle {
    margin-top: 22.5px;
    font-size: 15px;
    margin-bottom: 14.5px;
  }
  .about__bottom-title {
    max-width: 665px;
  }
  .about__bottom-info {
    max-width: 827px;
  }
  .about__bottom-info p {
    font-size: 13.5px;
  }
  .about__bottom-img {
    width: 441px;
    height: 441px;
    border-radius: 50.65px;
    margin-right: 20px;
  }
}
@media (max-width: 1300px) {
  h1,
  .h1 {
    font-size: 30px;
  }
  .hero__content {
    max-width: 800px;
  }
  .hero__list {
    column-gap: 30px;
  }
  .hero__item-icon {
    height: 36px;
    width: 36px;
  }
  .about__top {
    background: none;
  }
  .about__top-subtitle {
    font-size: 11px;
  }
  .about__top-title {
    font-size: 28px;
  }
  .about__top-item-text {
    font-size: 14px;
  }
  .about__bottom {
    background: none;
  }
  .about__bottom-subtitle {
    font-size: 11px;
  }
  .about__bottom-title {
    font-size: 28px;
  }
  .tasks__card {
    width: 257.25px;
  }
  .tasks__cards {
    column-gap: 13px;
    overflow-x: auto;
  }
  .start__content {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
  }
  .start__content-card {
    margin-bottom: 50px;
  }
  .start__content-items {
    height: 465.75px;
  }
}
@media (max-width: 1024px) {
  .hero__phone {
    max-height: 600px;
  }
  .hero__content {
    max-width: 600px;
  }
  .hero__list {
    column-gap: 10px;
  }
  .hero__item {
    padding-block: 18.5px;
  }
  .cases__list {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(3, auto);
  }
  .question {
    font-size: 36px;
    padding-block: 68px;
  }
  .question__container img {
    height: 23px;
    width: 55px;
    border-radius: 5px;
  }
  .table__title {
    margin-bottom: 20px;
  }
  .table__text {
    margin-bottom: 30px;
  }
  .table__content {
    overflow-x: auto;
  }
  .table__table {
    border-radius: 12px;
    width: 1800px;
  }
  .table__table th {
    padding: 20px;
    font-size: 15px;
  }
  .table__table td {
    padding: 10px 20px;
    font-size: 15px;
  }
  .table__table td p {
    font-size: 15px;
  }
  .table__table-first img {
    margin-right: 12px;
    height: 38px;
    width: 38px;
  }
  .advantage {
    padding-block: 50px 0;
  }
  .advantage__title {
    position: static;
    transform: translate(0, 0);
    margin-bottom: 11px;
    font-size: 56px;
  }
  .advantage__cards {
    display: grid;
    grid-template-rows: repeat(3, auto);
    row-gap: 8px;
  }
  .advantage__card {
    margin-right: 0;
  }
  .advantage__card.wallet {
    position: static;
    top: 0;
    left: 0;
    max-width: 100%;
  }
  .advantage__card.youtube {
    position: static;
    top: 0;
    left: 0;
    max-width: 100%;
  }
  .advantage__card.star {
    position: static;
    top: 0;
    left: 0;
    max-width: 100%;
  }
  .contact {
    padding-block: 20px;
    background: url("../assets/images/contact-bg.jpg") 40% 0/300% 100% no-repeat;
  }
  .contact::before {
    background: none;
  }
  .contact__title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .contact__info {
    margin-bottom: 14px;
  }
  .contact__info-text {
    font-size: 14px;
  }
  .contact__info-text:not(:last-child) {
    margin-bottom: 20px;
  }
  .about__top {
    margin-bottom: 25px;
    margin-left: 0;
    display: grid;
  }
  .about__top-img {
    margin-top: 20px;
    justify-self: center;
    margin-left: 0;
  }
  .about__top-content {
    padding-left: 0;
  }
  .about__top-content::after {
    top: 20px;
    left: 0;
    width: 2.24px;
    height: 78.4px;
  }
  .about__top-subtitle {
    margin-left: 11.2px;
  }
  .about__top-title {
    margin-left: 11.2px;
  }
  .about__top-item:not(:last-child) {
    margin-bottom: 15px;
  }
  .about__bottom {
    margin-right: 0;
    display: grid;
  }
  .about__bottom-img {
    margin-top: 20px;
    justify-self: center;
    margin-right: 0;
    order: 1;
  }
  .about__bottom-content {
    padding-right: 0;
  }
  .about__bottom-content::after {
    top: 20px;
    left: 0;
    width: 2.24px;
    height: 78.4px;
  }
  .about__bottom-subtitle {
    margin-left: 11.2px;
  }
  .about__bottom-title {
    margin-left: 11.2px;
  }
  .popup__content {
    padding: 20px 40px 40px 20px;
    max-height: 350px;
    min-width: 390px;
  }
  .popup__content-title {
    font-size: 18px;
  }
  .popup__content-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
@media (max-width: 860px) {
  :root {
    --container-padding: 24px;
  }
  .header__logo img {
    width: 120px;
    height: 38px;
  }
  .header__nav {
    display: none;
  }
  .header__button {
    display: none;
  }
  .header__button-mob {
    display: block;
  }
  .hero {
    height: auto;
    padding-bottom: 240px;
    background: url("../assets/images/hero-background.jpg") 66% 0/300% 66% no-repeat;
  }
  .hero::after {
    height: 156px;
    bottom: 22%;
  }
  .hero__container {
    display: grid;
    grid-template-rows: repeat(3, auto);
  }
  .hero__content {
    order: -1;
    margin-top: 50px;
    margin-bottom: 10px;
  }
  .hero__content-icons > .h1:not(:last-child) {
    margin-right: 4px;
  }
  .hero__content-icons > .icon {
    max-width: 12.5px;
    max-height: 12.5px;
  }
  .hero__content-icons > .icon:not(:last-child) {
    margin-right: 2px;
  }
  .hero__content-button {
    margin-right: 8px;
  }
  .hero__content-text {
    margin-top: 14px;
  }
  .hero__content-links {
    margin-top: 24px;
  }
  .hero__content-link {
    max-width: 133px;
  }
  .hero__phone {
    position: relative;
    right: 105%;
    bottom: -24px;
    max-height: 370px;
    max-width: 220%;
  }
  .hero__list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    row-gap: 10px;
    margin-bottom: -230px;
  }
  .cases__title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .cases__text {
    font-size: 14px;
    margin-bottom: 26px;
  }
  .cases__list {
    column-gap: 10px;
    row-gap: 10px;
    margin-bottom: 16px;
  }
  .cases__item {
    padding: 12.45px 42.36px;
  }
  .cases__item-logo {
    margin-bottom: 9.5px;
    width: 35%;
  }
  .cases__item-view {
    font-size: 14.82px;
    margin-bottom: 3.82px;
  }
  .cases__item-text {
    font-size: 10px;
  }
  .cases__button {
    margin-bottom: 16px;
  }
  .cases__video {
    width: 236.4px;
    height: 322px;
    border-radius: 11.26px;
  }
  .cases__video:not(:last-child) {
    margin-right: 22.52px;
  }
  .about {
    padding-block: 40px;
  }
  .about__top-info p {
    font-size: 14px;
  }
  .about__top-img {
    width: 345px;
    height: 345px;
  }
  .about__bottom-img {
    width: 345px;
    height: 345px;
  }
  .tasks {
    padding: 30px 0 20px;
  }
  .tasks__title {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .tasks__text {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .tasks__info {
    margin-bottom: 30px;
    font-size: 18px;
  }
  .tasks__card {
    border-radius: 24px;
    padding: 40px;
    height: 343px;
    width: 332px;
  }
  .tasks__card-icon {
    width: 55px;
    height: 55px;
    margin-left: -8px;
  }
  .tasks__card-text {
    font-size: 16px;
    margin-top: 20px;
  }
  .start {
    padding-bottom: 64px;
  }
  .start__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .start__content-card {
    justify-self: center;
  }
  .start__content-card-title {
    margin-bottom: 16.86px;
  }
  .start__content-card-title img {
    height: 24.08px;
    width: 24.08px;
  }
  .start__content-card-title p {
    font-size: 24px;
  }
  .start__content-card-text {
    font-size: 18px;
  }
  .start__content-card-text:not(:last-child) {
    margin-bottom: 0;
  }
  .start__content-items::after {
    content: "";
    position: absolute;
    top: 28px;
    left: 0;
    width: 14px;
    height: 450px;
    background: url("../assets/images/stairs-mob.png") 0 0/100% 100% no-repeat;
  }
  .start__item-title {
    font-size: 24px;
    margin-bottom: 3px;
  }
  .start__item-text {
    font-size: 14px;
  }
  .start__item.first {
    top: 0;
    left: 6%;
    max-width: 311px;
  }
  .start__item.second {
    top: 31%;
    left: 6%;
    max-width: 401px;
  }
  .start__item.third {
    top: 60%;
    left: 6%;
    max-width: 450px;
  }
  .start__item.fourth {
    top: 95%;
    left: 6%;
    max-width: 450px;
  }
  .start__stairs {
    display: none;
  }
  .start__avatar {
    display: none;
  }
}
@media (max-width: 700px) {
  h1,
  .h1 {
    font-size: 18px;
  }
  input {
    font-size: 13px;
    margin-right: 0;
    margin-bottom: 14px;
  }
  button,
  .button {
    font-size: 13px;
    padding: 12px 18px;
    border-radius: 10px;
  }
  .question {
    font-size: 18px;
    padding-block: 28px;
  }
  .question__container img {
    height: 14px;
    width: 30px;
    border-radius: 2.5px;
  }
  .advantage {
    background: url("../assets/images/advantages-background.png") 50% 0/250% 100% no-repeat;
  }
  .advantage__title {
    font-size: 24px;
  }
  .advantage__card {
    padding: 26.5px 19.5px;
  }
  .advantage__card-icon {
    align-self: start;
    width: 40px;
    height: 40px;
    margin-right: 8.5px;
  }
  .advantage__card-text {
    font-size: 14px;
  }
  .contact__buttons {
    display: grid;
    grid-template-rows: repeat(3, auto);
    justify-content: center;
    row-gap: 12.27px;
  }
  .contact__button:not(:last-child) {
    margin-right: 0;
  }
  .contact__button.session {
    order: -1;
  }
  .popup__content-form {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
  }
}

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