@font-face {
  font-family: "ABCFavorit";
  src: url("../fonts/ABCFavoritCYR-Regular.woff") format("woff"), url("../fonts/ABCFavoritCYR-Regular.woff2") format("woff2"), url("../fonts/ABCFavoritCYR-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABCFavorit";
  src: url("../fonts/ABCFavoritCYR-RegularItalic.woff") format("woff"), url("../fonts/ABCFavoritCYR-RegularItalic.woff2") format("woff2"), url("../fonts/ABCFavoritCYR-RegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "ABCFavorit", sans-serif;
  background-color: #E0DFE7;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  color: #101116;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1580px;
  width: 100%;
  padding: 34px 10px 13px;
  margin: auto;
}
@media screen and (min-width: 640px) {
  .container {
    padding: 28px 20px 17px;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    padding: 30px 20px 30px;
  }
}

.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  padding: 15px 10px;
  border-radius: 20px;
  z-index: 10;
}
@media screen and (min-width: 640px) {
  .header {
    padding: 15px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    padding: 23px 25px 27px;
  }
}
.header.opened .headerContent {
  height: 465px;
  opacity: 1;
  pointer-events: auto;
}
.header .headerContent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  opacity: 0;
  border-radius: 20px;
  padding: 100px 16px 16px;
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .header .headerContent {
    position: initial;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: none;
    opacity: 1;
    padding: 0;
    border-radius: 0;
    pointer-events: auto;
  }
}
.header .logo {
  flex-shrink: 0;
}
.header .logo.logo-desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header .logo.logo-desktop {
    display: block;
  }
}
.header .menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
@media screen and (min-width: 1024px) {
  .header .menu {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
.header .menu a {
  font-size: 25px;
  color: #101116;
  text-decoration: none;
  transition: color 0.2s;
}
@media screen and (min-width: 1024px) {
  .header .menu a {
    font-size: 16px;
  }
}
.header .menu a:hover {
  color: #0066FF;
}
.header .right {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  .header .right {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
}
.header .langSwitch {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7F7F7F;
  padding: 8px;
  cursor: pointer;
  pointer-events: auto;
}
.header .langSwitch.opened > .list {
  display: block;
}
.header .langSwitch.opened > .arrow {
  width: 11px;
  transform: rotate(180deg);
}
.header .langSwitch .list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 90px;
  background-color: #fff;
  border-radius: 10px;
  list-style: none;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .header .langSwitch .list {
    top: calc(100% + 8px);
  }
}
@media screen and (max-width: 400px) {
  .header .langSwitch .list {
    left: -30px;
  }
}
.header .langSwitch .link {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7F7F7F;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}
.header .langSwitch .link:hover {
  background-color: rgba(0, 102, 255, 0.2);
}
.header .langSwitch .link.active {
  background-color: rgba(0, 102, 255, 0.8);
  color: #fff;
}
@media screen and (max-width: 640px) {
  .header .langSwitch .link {
    gap: 8px;
  }
}
.header .langSwitch .link img {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 640px) {
  .header .langSwitch .icon {
    width: 25px;
  }
}
@media screen and (max-width: 640px) {
  .header .langSwitch {
    width: 70px;
    padding: 8px 4px;
    gap: 4px;
  }
}
.header .signUp {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .header .signUp {
    max-width: 200px;
  }
}
.header .mobileHeaderContent {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .header .mobileHeaderContent {
    display: none;
  }
}
.header .mobileMenuBtn {
  width: 50px;
  padding: 14px 11px;
}
.header .mobileMenuBtn svg {
  height: 22px;
  width: auto;
}
.header .mobileMenuBtn .openIcon {
  display: none;
}
.header .mobileMenuBtn .closeIcon {
  display: block;
}
.header .mobileMenuBtn.opened .openIcon {
  display: block;
}
.header .mobileMenuBtn.opened .closeIcon {
  display: none;
}
.header .socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .header .socials {
    display: none;
  }
}
.header .socials a {
  color: rgba(0, 0, 0, 0.8980392157);
  font-size: 22px;
  text-decoration: none;
}
@media screen and (min-width: 380px) {
  .header .socials a {
    font-size: 26px;
  }
}

.section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}
@media screen and (min-width: 640px) {
  .section {
    gap: 50px;
  }
}
@media screen and (min-width: 640px) {
  .section {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .section {
    margin-top: 150px;
  }
}
.section .title {
  text-align: center;
  font-size: 34px;
}
@media screen and (min-width: 640px) {
  .section .title {
    font-size: 42px;
  }
}

.btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  color: #101116;
  background: #fff;
  border-radius: 10px;
  border: none;
  text-decoration: none;
}
.btn.blue {
  color: #fff;
  background-color: #0066FF;
}
.btn.black {
  color: #fff;
  background-color: #101116;
}

.textGradient {
  background: linear-gradient(90deg, #DFD8EB 0%, #8366FF 91%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.textGradientBlack {
  background: linear-gradient(310deg, #8366FF 15%, #000000 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.card {
  position: relative;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(42.8px);
          backdrop-filter: blur(42.8px);
}
@media screen and (min-width: 640px) {
  .card {
    padding: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .card {
    padding: 20px;
  }
}
.card.onePlus::after {
  display: none;
}
@media screen and (min-width: 1024px) {
  .card.onePlus::after {
    display: block;
  }
}
.card.twoPlus {
  padding-right: 25px;
}
@media screen and (min-width: 640px) {
  .card.twoPlus {
    padding-right: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .card.twoPlus {
    padding-right: 45px;
  }
}
.card.onePlus::after, .card.twoPlus::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  background: url("../img/plus.svg") no-repeat center;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .card.onePlus::after, .card.twoPlus::after {
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
  }
}
.card.twoPlus::before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  background: url("../img/plus.svg") no-repeat center;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .card.twoPlus::before {
    bottom: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
  }
}

.main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}
@media screen and (min-width: 640px) {
  .main {
    gap: 20px;
    margin: 20px 0;
  }
}

.about {
  position: relative;
  display: grid;
  gap: 16px;
  color: #fff;
  background: #000 url("../img/about/about-bg.png") no-repeat center;
  background-size: cover;
  border-radius: 30px;
  padding: 20px;
  overflow: hidden;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .about {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    padding: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .about {
    gap: 50px;
  }
}
.about .title {
  font-size: 32px;
  margin: 0;
}
@media screen and (min-width: 640px) {
  .about .title {
    font-size: 37px;
  }
}
@media screen and (min-width: 1024px) {
  .about .title {
    font-size: 48px;
  }
}
.about .list {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 640px) {
  .about .list {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .about .list {
    order: 3;
    grid-row: span 2;
  }
}
.about .card {
  display: flex;
  gap: 3px;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.1019607843);
  word-break: break-word;
}
.about .card::before {
  content: attr(data-order);
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 18px;
  line-height: 94%;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.5019607843);
}
@media screen and (min-width: 640px) {
  .about .card::before {
    top: 20px;
    left: 20px;
    font-size: 26px;
  }
}
.about .card::after {
  filter: brightness(1000%);
  opacity: 0.3;
}
.about .card img {
  height: auto;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: -10px;
}
@media screen and (min-width: 640px) {
  .about .card img {
    margin-top: -10px;
  }
}
@media screen and (min-width: 1024px) {
  .about .card img {
    margin: auto auto 0;
  }
}
.about .one {
  order: 2;
}
.about .one img {
  width: 84px;
}
@media screen and (min-width: 640px) {
  .about .one {
    order: 1;
    grid-column: span 2;
  }
  .about .one img {
    width: 122px;
  }
}
@media screen and (min-width: 1024px) {
  .about .one img {
    width: 201px;
  }
}
.about .two {
  order: 1;
  grid-column: span 2;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.about .two img {
  width: 94px;
  margin-right: 0;
}
@media screen and (min-width: 640px) {
  .about .two {
    order: 2;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
  }
  .about .two img {
    margin-right: -10px;
  }
}
@media screen and (min-width: 1024px) {
  .about .two img {
    width: 160px;
    margin-right: auto;
  }
}
.about .three {
  order: 3;
}
.about .three img {
  width: 68px;
}
@media screen and (min-width: 640px) {
  .about .three {
    grid-column: span 2;
  }
  .about .three img {
    width: 106px;
  }
}
@media screen and (min-width: 1024px) {
  .about .three img {
    width: 174px;
  }
}
.about .four {
  order: 4;
}
.about .four img {
  width: 56px;
}
@media screen and (min-width: 640px) {
  .about .four {
    grid-column: span 3;
  }
  .about .four img {
    width: 84px;
  }
}
@media screen and (min-width: 1024px) {
  .about .four img {
    width: 191px;
  }
}
.about .five {
  order: 5;
}
.about .five img {
  width: 66px;
}
@media screen and (min-width: 640px) {
  .about .five {
    grid-column: span 3;
  }
  .about .five img {
    width: 96px;
  }
}
@media screen and (min-width: 1024px) {
  .about .five img {
    width: 234px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .about .btn {
    order: 2;
    margin-top: auto;
  }
}

.forWhom {
  display: grid;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .forWhom {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.forWhom .title {
  font-size: 33px;
}
@media screen and (min-width: 1024px) {
  .forWhom .title {
    font-size: 42px;
  }
}
.forWhom .card {
  min-height: 171px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.forWhom .card .cardTitle {
  font-size: 17px;
  font-weight: 400;
  line-height: 94%;
  margin: 0;
  word-break: break-word;
}
@media screen and (min-width: 640px) {
  .forWhom .card .cardTitle {
    font-size: 26px;
  }
}
@media screen and (min-width: 1024px) {
  .forWhom .card .cardTitle {
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .forWhom .card .cardTitle {
    font-size: 24px;
  }
}
@media screen and (min-width: 1400px) {
  .forWhom .card .cardTitle {
    font-size: 26px;
  }
}
.forWhom .card .description {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  font-size: 14px;
  margin: 0;
}
@media screen and (min-width: 640px) {
  .forWhom .card .description {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .forWhom .card .description {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .forWhom .card .description {
    font-size: 16px;
  }
}
.forWhom .left,
.forWhom .right {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.forWhom .left {
  color: #fff;
  background: #000;
}
.forWhom .left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(52.73% 92.27% at 45.99% 44.21%, rgba(131, 102, 255, 0.74) 0%, rgba(0, 0, 0, 0.74) 100%);
  pointer-events: none;
}
@media screen and (min-width: 1400px) {
  .forWhom .left .card {
    padding-right: max(45px, 20%);
  }
}
@media screen and (min-width: 1400px) {
  .forWhom .left .card:nth-child(3) .description {
    max-width: 220px;
  }
}
.forWhom .right {
  color: #101116;
  background: #fff;
}
.forWhom .right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 70% 80% at 50% 55%, rgba(131, 102, 255, 0.65) 1.39%, rgb(255, 255, 255) 89.63%);
  pointer-events: none;
}
.forWhom .right .card {
  background: #fff;
}
@media screen and (min-width: 1400px) {
  .forWhom .right .card {
    padding-right: max(45px, 28%);
  }
}
.forWhom .right .card .description {
  color: rgba(0, 0, 0, 0.5);
}
.forWhom .content {
  height: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 20px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .forWhom .content {
    gap: 20px;
    padding: 35px 30px 23px;
  }
}

.aboutYou {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 640px) {
  .aboutYou {
    gap: 50px;
  }
}
.aboutYou .title {
  margin: 0;
}
.aboutYou .list {
  display: grid;
  gap: 10px;
  counter-reset: aboutYouCounter;
}
@media screen and (min-width: 1024px) {
  .aboutYou .list {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.aboutYou .card {
  padding: 20px;
  display: flex;
  border: none;
  overflow: hidden;
  counter-increment: aboutYouCounter;
}
@media screen and (min-width: 640px) {
  .aboutYou .card {
    min-height: 176px;
  }
}
@media screen and (min-width: 1024px) {
  .aboutYou .card {
    min-height: 226px;
  }
}
.aboutYou .card::before {
  content: counter(aboutYouCounter, decimal-leading-zero);
  position: absolute;
  right: -0.07em;
  bottom: -0.3em;
  font-size: 130px;
  font-style: italic;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 640px) {
  .aboutYou .card::before {
    right: 0.05em;
    font-size: 200px;
  }
}
@media screen and (min-width: 1280px) {
  .aboutYou .card::before {
    font-size: 280px;
  }
}
.aboutYou .card .cardContent {
  position: relative;
  width: 78%;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-direction: column;
  margin-right: auto;
  z-index: 1;
}
@media screen and (min-width: 640px) {
  .aboutYou .card .cardContent {
    width: 50%;
  }
}
.aboutYou .card .cardTitle {
  line-height: 94%;
  font-weight: 400;
  font-size: 20px;
}
@media screen and (min-width: 640px) {
  .aboutYou .card .cardTitle {
    font-size: 26px;
  }
}
.aboutYou .card .description {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 640px) {
  .aboutYou .card .description {
    font-size: 16px;
  }
}
.aboutYou .one,
.aboutYou .three,
.aboutYou .five {
  background: radial-gradient(ellipse 50% 120% at 80% 85%, rgb(131, 102, 255) 0%, #FFFFFF 89.63%);
}
.aboutYou .two,
.aboutYou .four,
.aboutYou .six {
  background: radial-gradient(ellipse 50% 160% at 80% 85%, rgb(131, 102, 255) 0%, rgb(16, 17, 22) 89.63%);
}
.aboutYou .two::before,
.aboutYou .four::before,
.aboutYou .six::before {
  color: rgba(255, 255, 255, 0.3);
}
.aboutYou .two .cardTitle,
.aboutYou .four .cardTitle,
.aboutYou .six .cardTitle {
  color: #fff;
}
.aboutYou .two .description,
.aboutYou .four .description,
.aboutYou .six .description {
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 640px) {
  .aboutYou .one,
  .aboutYou .three,
  .aboutYou .five {
    background: radial-gradient(ellipse 50% 120% at 13% 85%, rgb(131, 102, 255) 0%, #FFFFFF 89.63%);
  }
  .aboutYou .one::before,
  .aboutYou .three::before,
  .aboutYou .five::before {
    right: auto;
    left: -0.05em;
  }
  .aboutYou .one .cardContent,
  .aboutYou .three .cardContent,
  .aboutYou .five .cardContent {
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .aboutYou .two,
  .aboutYou .three,
  .aboutYou .six {
    color: #fff;
  }
  .aboutYou .two::before,
  .aboutYou .three::before,
  .aboutYou .six::before {
    color: rgba(255, 255, 255, 0.3);
  }
  .aboutYou .one,
  .aboutYou .five {
    background: radial-gradient(ellipse 50% 120% at 17% 85%, rgb(131, 102, 255) 0%, #FFFFFF 89.63%);
  }
  .aboutYou .one::before,
  .aboutYou .five::before {
    right: auto;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
  }
  .aboutYou .one .description,
  .aboutYou .five .description {
    color: rgba(0, 0, 0, 0.5);
  }
  .aboutYou .two,
  .aboutYou .six {
    background: radial-gradient(ellipse 50% 160% at 17% 85%, rgb(131, 102, 255) 0%, rgb(16, 17, 22) 89.63%);
  }
  .aboutYou .two::before,
  .aboutYou .six::before {
    right: auto;
    left: 0;
  }
  .aboutYou .two .cardContent,
  .aboutYou .six .cardContent {
    margin-left: auto;
    margin-right: 0;
  }
  .aboutYou .two .cardTitle,
  .aboutYou .six .cardTitle {
    color: #fff;
  }
  .aboutYou .two .description,
  .aboutYou .six .description {
    color: rgba(255, 255, 255, 0.5);
  }
  .aboutYou .three {
    background: radial-gradient(ellipse 50% 160% at 80% 85%, rgb(131, 102, 255) 0%, rgb(16, 17, 22) 89.63%);
  }
  .aboutYou .three::before {
    left: auto;
    right: 0;
  }
  .aboutYou .three .cardContent {
    margin-right: auto;
    margin-left: 0;
  }
  .aboutYou .three .cardTitle {
    color: #fff;
  }
  .aboutYou .three .description {
    color: rgba(255, 255, 255, 0.5);
  }
  .aboutYou .four {
    background: radial-gradient(ellipse 50% 120% at 80% 85%, rgb(131, 102, 255) 0%, #FFFFFF 89.63%);
  }
  .aboutYou .four::before {
    color: rgba(255, 255, 255, 0.7);
  }
  .aboutYou .four .cardTitle {
    color: #101116;
  }
  .aboutYou .four .description {
    color: rgba(0, 0, 0, 0.5);
  }
}

.whyUs .list {
  display: grid;
  gap: 10px;
}
@media screen and (min-width: 640px) {
  .whyUs .list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .whyUs .list {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
}
.whyUs .list .card {
  background: radial-gradient(ellipse 70% 70% at 50% 70%, rgba(131, 102, 255, 0.15) 0%, #FFFFFF 89.63%);
  border: none;
  overflow: hidden;
  padding: 20px 40px 20px 20px;
}
@media screen and (min-width: 1024px) {
  .whyUs .list .card {
    min-height: 375px;
  }
}
.whyUs .list .card::before, .whyUs .list .card::after {
  width: 20px;
  height: 20px;
}
.whyUs .list .card .content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .whyUs .list .card .content {
    width: 100%;
    height: 100%;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
  .whyUs .list .card .content {
    width: 65%;
  }
}
.whyUs .list .card .cardTitle {
  line-height: 94%;
  font-size: 20px;
}
@media screen and (min-width: 640px) {
  .whyUs .list .card .cardTitle {
    font-size: 26px;
  }
}
.whyUs .list .card .description {
  font-size: 14px;
  opacity: 0.7;
}
@media screen and (min-width: 640px) {
  .whyUs .list .card .description {
    font-size: 16px;
  }
}
.whyUs .list .card .cardImageWrapper {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .whyUs .list .card .cardImageWrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .whyUs .list .card .cardImageWrapper .cardImage {
    max-height: 75%;
    height: 100%;
    width: auto;
    flex-shrink: 0;
  }
}
.whyUs .list .one {
  color: #fff;
  background: #000;
}
.whyUs .list .one .cardImageWrapper {
  margin: 20px -40px 0 -20px;
}
.whyUs .list .one .cardImageWrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: radial-gradient(ellipse 90% 90% at 50% 110%, rgba(131, 102, 255, 0.7) 0%, rgba(16, 17, 22, 0) 89.63%);
  z-index: 2;
}
.whyUs .list .one .cardImageWrapper .cardImage {
  width: 50%;
  display: block;
  margin: auto auto -20%;
  z-index: 1;
}
@media screen and (min-width: 640px) {
  .whyUs .list .one {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .whyUs .list .one .cardImageWrapper::after {
    background: radial-gradient(ellipse 50% 90% at 75% 110%, rgba(131, 102, 255, 0.7) 0%, rgba(16, 17, 22, 0) 89.63%);
  }
}
@media screen and (min-width: 1024px) {
  .whyUs .list .one {
    grid-column: span 3;
    grid-template-columns: 55% 1fr;
  }
  .whyUs .list .one .content {
    width: 100%;
    z-index: 2;
  }
  .whyUs .list .one .cardTitle {
    max-width: 300px;
  }
  .whyUs .list .one .cardImageWrapper {
    margin: 0;
    align-items: flex-end;
  }
  .whyUs .list .one .cardImageWrapper::after {
    background: radial-gradient(ellipse 23% 60% at 75% 110%, rgba(131, 102, 255, 0.9) 0%, rgba(16, 17, 22, 0) 89.63%);
  }
  .whyUs .list .one .cardImageWrapper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: radial-gradient(ellipse 67% 103% at 86% 75%, rgba(131, 102, 255, 0.9) 0%, rgba(16, 17, 22, 0) 89.63%);
  }
  .whyUs .list .one .cardImageWrapper .cardImage {
    width: 180px;
    height: auto;
    margin: auto 10% 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .whyUs .list .one .cardImageWrapper .cardImage {
    width: 210px;
  }
}
.whyUs .list .two .cardImageWrapper {
  margin: 10px -40px -20px -40%;
}
.whyUs .list .two .cardImageWrapper .cardImage {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .whyUs .list .two {
    background: #fff;
    grid-column: span 3;
  }
  .whyUs .list .two .cardImageWrapper {
    width: 100%;
    max-width: 520px;
    margin: -30px 40px -40px auto;
  }
  .whyUs .list .two .content {
    max-width: 240px;
  }
}
@media screen and (min-width: 1024px) {
  .whyUs .list .three {
    grid-column: span 2;
  }
}
.whyUs .list .three .cardImageWrapper {
  width: 85%;
  margin: -10px auto -30px;
}
.whyUs .list .four {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .whyUs .list .four,
  .whyUs .list .five {
    grid-column: span 2;
  }
}
.whyUs .list .four .cardImageWrapper,
.whyUs .list .five .cardImageWrapper {
  width: 85%;
  margin: -30px auto -50px;
}

.cases .list {
  display: grid;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .cases .list {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.cases .list .card {
  min-height: 380px;
  background: #050505;
  color: #FAFAFA;
  border: none;
  padding: 20px 40px 20px 20px;
  background: radial-gradient(ellipse 55% 55% at 65% 75%, rgb(90, 73, 169) 0%, rgb(16, 17, 22) 89.63%);
}
@media screen and (min-width: 640px) {
  .cases .list .card {
    min-height: 430px;
    background: radial-gradient(ellipse 55% 75% at 75% 70%, rgb(90, 73, 169) 0%, rgb(16, 17, 22) 89.63%);
  }
}
.cases .list .card::before, .cases .list .card::after {
  width: 20px;
  height: 20px;
}
.cases .list .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cases .list .content::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  background: url("../img/plus.svg") no-repeat center;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .cases .list .content::before {
    bottom: 20px;
    left: 20px;
    width: 20px;
    height: 20px;
  }
}
.cases .list .cardTitle {
  line-height: 94%;
  max-width: 290px;
  width: 100%;
  font-weight: 400;
  font-size: 34px;
}
@media screen and (min-width: 640px) {
  .cases .list .cardTitle {
    max-width: 485px;
    font-size: 42px;
  }
}
.cases .list .profit {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: #8366FF;
  font-style: italic;
  font-weight: 700;
  font-size: 34px;
  line-height: 100%;
  text-align: right;
  border-top-left-radius: 22px;
  border-bottom-right-radius: 26px;
  margin-left: auto;
  z-index: 1;
}
@media screen and (min-width: 640px) {
  .cases .list .profit {
    font-size: 45px;
    padding: 20px;
  }
}
.cases .list .profit .black {
  color: #101116;
}
.cases .list .profit .value {
  font-style: normal;
}
.cases .list .geo {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-style: italic;
  font-size: 34px;
  line-height: 100%;
  padding: 15px;
  background: #FAFAFA;
  color: #000;
  border-top-left-radius: 19px;
  border-bottom-right-radius: 19px;
  box-shadow: 3px 2px 0 0 #8366FF;
  transform: rotate(10deg);
  margin-left: auto;
  margin-top: -15px;
}
@media screen and (min-width: 640px) {
  .cases .list .geo {
    font-size: 45px;
    padding: 20px;
  }
}
.cases .list .two {
  background: radial-gradient(ellipse 55% 55% at 65% 75%, rgb(0, 102, 255) 0%, rgb(16, 17, 22) 89.63%);
}
@media screen and (min-width: 640px) {
  .cases .list .two {
    background: radial-gradient(ellipse 55% 75% at 75% 70%, rgb(0, 102, 255) 0%, rgb(16, 17, 22) 89.63%);
  }
}
.cases .list .two .profit {
  background: #0066FF;
}
.cases .list .two .geo {
  box-shadow: 3px 2px 0 0 #0066FF;
}

.offers .content {
  max-width: 100%;
  width: 100%;
  padding-bottom: 10px;
  overflow: auto;
}
.offers .content::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.offers .content::-webkit-scrollbar-track {
  background: rgba(131, 102, 255, 0.1);
  border-radius: 4px;
}
.offers .content::-webkit-scrollbar-thumb {
  background: #8366FF;
  border-radius: 4px;
}
.offers .content::-webkit-scrollbar-thumb:hover {
  background: #8366FF;
}
.offers .content * {
  scrollbar-width: thin;
  scrollbar-color: #8366FF rgba(131, 102, 255, 0.1);
}
@media screen and (min-width: 640px) {
  .offers .content {
    overflow: inherit;
    padding-bottom: 0;
  }
}
.offers .list {
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 640px) {
  .offers .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .offers .list {
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.offers .card {
  min-width: 288px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  padding: 20px;
  border: none;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .offers .card {
    min-width: inherit;
  }
}
.offers .cardTitle {
  line-height: 94%;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
}
.offers .description {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: auto;
}
.offers .cardImageWrapper {
  justify-self: flex-end;
  margin: -30px -20px -20px;
}
.offers .cardImageWrapper .cardImage {
  display: block;
}

.support .list {
  display: grid;
  gap: 10px;
  counter-reset: supportCounter;
}
@media screen and (min-width: 1280px) {
  .support .list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.support .card {
  min-height: 204px;
  color: #fff;
  padding: 20px;
  border: none;
  background: radial-gradient(ellipse 60% 75% at 90% 75%, rgb(90, 73, 169) 0%, rgb(16, 17, 22) 89.63%);
  counter-increment: supportCounter;
  overflow: hidden;
}
@media screen and (min-width: 640px) {
  .support .card {
    min-height: 230px;
    background: radial-gradient(ellipse 60% 90% at 90% 75%, rgb(90, 73, 169) 0%, rgb(16, 17, 22) 89.63%);
  }
}
@media screen and (min-width: 1280px) {
  .support .card {
    min-height: 299px;
  }
}
.support .card::after {
  display: none;
}
@media screen and (min-width: 1280px) {
  .support .card::after {
    display: block;
  }
}
.support .card::before {
  content: counter(supportCounter, decimal-leading-zero);
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 640px) {
  .support .card::before {
    font-size: 26px;
  }
}
.support .card .content {
  position: relative;
  width: 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}
@media screen and (min-width: 640px) {
  .support .card .content {
    width: 310px;
  }
}
.support .card .cardTitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 94%;
}
@media screen and (min-width: 640px) {
  .support .card .cardTitle {
    font-size: 26px;
  }
}
.support .card .description {
  font-size: 14px;
  opacity: 0.7;
  padding-right: 17px;
}
@media screen and (min-width: 640px) {
  .support .card .description {
    font-size: 16px;
    padding-right: 0;
  }
}
@media screen and (min-width: 1280px) {
  .support .card .description {
    padding-right: 50px;
  }
}
@media screen and (min-width: 1400px) {
  .support .card .description {
    padding-right: 0;
  }
}
.support .card .cardImage {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  margin-left: auto;
  width: 136px;
}
@media screen and (min-width: 640px) {
  .support .card .cardImage {
    width: 180px;
    right: 40px;
    bottom: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .support .card .cardImage {
    width: 160px;
    right: 5px;
    bottom: 5px;
  }
}
@media screen and (min-width: 1400px) {
  .support .card .cardImage {
    width: 180px;
    bottom: 10px;
  }
}
.support .one .cardImage {
  width: 145px;
  right: -8px;
  bottom: -10px;
}
@media screen and (min-width: 640px) {
  .support .one .cardImage {
    width: 180px;
    right: 35px;
    bottom: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .support .one .cardImage {
    width: 140px;
    right: 0;
    bottom: 5px;
  }
}
@media screen and (min-width: 1400px) {
  .support .one .cardImage {
    width: 155px;
    bottom: 10px;
  }
}
.support .three .cardImage {
  bottom: -20px;
}
@media screen and (min-width: 1280px) {
  .support .three .cardImage {
    right: 7px;
    bottom: 7px;
  }
}

.connectUs .card {
  padding: 60px 20px;
  border: none;
  background: linear-gradient(4.23deg, #8366FF 3.73%, #FFFFFF 85.94%);
}
.connectUs .card::before, .connectUs .card::after {
  filter: brightness(0%);
}
.connectUs .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 640px) {
  .connectUs .content {
    gap: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .connectUs .content {
    gap: 70px;
  }
}
.connectUs .content::before, .connectUs .content::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  background: url("../img/plus.svg") no-repeat center;
  background-size: cover;
  pointer-events: none;
  filter: brightness(0%);
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .connectUs .content::before, .connectUs .content::after {
    bottom: 20px;
    left: 20px;
  }
}
.connectUs .content::before {
  bottom: auto;
  top: 10px;
}
@media screen and (min-width: 1024px) {
  .connectUs .content::before {
    top: 20px;
  }
}
.connectUs .cardTitle {
  max-width: 1190px;
  font-weight: 400;
  font-size: 38px;
  line-height: 95%;
  text-align: center;
  letter-spacing: -0.06em;
}
@media screen and (min-width: 380px) {
  .connectUs .cardTitle {
    font-size: 40px;
  }
}
@media screen and (min-width: 640px) {
  .connectUs .cardTitle {
    font-size: 54px;
  }
}
@media screen and (min-width: 1024px) {
  .connectUs .cardTitle {
    font-size: 66px;
  }
}
.connectUs .btn {
  max-width: 494px;
  height: 80px;
  border-radius: 20px;
}

.textBlock * {
  color: rgba(0, 0, 0, 0.5);
}
.textBlock h2,
.textBlock h3,
.textBlock p,
.textBlock li,
.textBlock a {
  font-size: 14px;
  line-height: 90%;
  letter-spacing: -0.06em;
}
.textBlock h2,
.textBlock h3 {
  margin: 15px 0;
}
.textBlock p {
  margin: 15px 0;
}
.textBlock p:last-child {
  margin-bottom: 0;
}
.textBlock a {
  display: block;
}
.textBlock ul {
  margin: 15px 0;
  list-style-position: inside;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 50px;
}

.footerHead {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: none;
  padding: 20px;
  background: radial-gradient(ellipse 100% 50% at 50% 90%, rgb(90, 73, 169) 0%, rgb(16, 17, 22) 89.63%);
  overflow: hidden;
}
.footerHead .content {
  display: grid;
  gap: 20px;
  color: #fff;
}
@media screen and (min-width: 640px) {
  .footerHead .content {
    grid-template-columns: 60% 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .footerHead .content {
    grid-template-columns: 1fr 1fr;
  }
}
.footerHead .text {
  max-width: 428px;
  font-size: 14px;
  line-height: 94%;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 640px) {
  .footerHead .text {
    font-size: 16px;
  }
}
.footerHead .socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 640px) {
  .footerHead .socials {
    grid-row: span 2;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  .footerHead .socials {
    grid-row: span 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
  }
}
.footerHead .socials a {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  line-height: 94%;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 640px) {
  .footerHead .socials a {
    font-size: 26px;
  }
}
.footerHead .terms {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .footerHead .terms {
    grid-column: 2;
    align-items: flex-end;
  }
}
.footerHead .terms a {
  color: #fff;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  text-decoration: underline;
  opacity: 0.5;
}
@media screen and (min-width: 1024px) {
  .footerHead .terms a {
    font-size: 16px;
  }
}
.footerHead .logo {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-bottom: -22px;
}
@media screen and (min-width: 640px) {
  .footerHead .logo {
    margin-bottom: -25px;
  }
}

.footerBottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  font-size: 12px;
  padding: 20px;
  background: #101116;
  border: none;
}
@media screen and (min-width: 640px) {
  .footerBottom {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .footerBottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px;
    font-size: 14px;
  }
}
.footerBottom .address {
  max-width: 331px;
}
.footerBottom .site {
  max-width: 675px;
  opacity: 0.5;
}

.termsBlock * {
  color: #101116;
}
.termsBlock h2,
.termsBlock h3,
.termsBlock p,
.termsBlock li,
.termsBlock a {
  font-size: 16px;
}
.termsBlock h1 {
  font-size: 2em;
  margin: 0 0 30px;
}
.termsBlock h2,
.termsBlock h3 {
  font-size: 1.5em;
  margin: 15px 0;
}
.termsBlock li,
.termsBlock p {
  margin: 15px 0;
}
.termsBlock li:last-child,
.termsBlock p:last-child {
  margin-bottom: 0;
}
.termsBlock ul {
  margin: 15px 0;
  list-style-position: inside;
}
