@charset "UTF-8";
/*Обнуление*/
* {
  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,
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;
}

/*--------------------*/
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-SemiBold.woff2") format("woff2"), url("../fonts/Roboto-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
.header {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 100000;
  transition: all 300ms ease;
  padding: 0px 50px;
  background: var(--black);
}
.header.active .header__row {
  padding: 20px 0px;
}
.header__logo {
  width: 204px;
  height: 20px;
  display: block;
  position: relative;
}
.header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__row {
  display: flex;
  align-items: center;
  padding: 40px 0px;
  justify-content: space-between;
  transition: all 300ms ease;
}
.header__nav,
.header__phones {
  display: flex;
  align-items: center;
}
.header__nav a,
.header__phones a {
  line-height: 100%;
  letter-spacing: -0.05em;
  color: var(--primary);
}
.header__nav {
  gap: 30px;
}
.header__nav a {
  font-size: 20px;
}
.header__phones {
  gap: 10px;
}
.header__phones a {
  font-size: 18px;
}
.header__burger {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: none;
}
.header__burger::after,
.header__burger::before {
  content: "";
}
.header__burger::after,
.header__burger::before,
.header__burger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary);
  left: 0px;
  right: 0px;
  transition: all 300ms ease;
}
.header__burger::before {
  top: 0px;
}
.header__burger::after {
  bottom: 0px;
}
.header__burger span {
  top: 50%;
  transform: translate(0%, -50%);
}
.header__burger.burger-active::after,
.header__burger.burger-active::before {
  bottom: auto;
  top: 50%;
}
.header__burger.burger-active::after {
  transform: translate(0%, -50%) rotate(-45deg);
}
.header__burger.burger-active::before {
  transform: translate(0%, -50%) rotate(45deg);
}
.header__burger.burger-active span {
  display: none;
}

:root {
  --primary: #fff;
  --secondary: #ff6c2f;
  --black: #000;
  --black-lighter: #131212;
  --btn-hover: #ffffff;
  --btn-hover-text: #ff6c2f;
  --btn-active: rgb(213, 89, 7);
  --card-bg-gradient: radial-gradient(69.98% 69.82% at 50.11% 87.99%, #013ee7 0%, #0639b8 18.42%, #09182d 81.55%);
}

h1,
.h1 {
  font-weight: 500;
  font-size: 96px;
  line-height: 84%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
h1 span,
.h1 span {
  color: var(--secondary);
  font-weight: inherit;
  font-size: inherit;
}

h2,
.h2 {
  font-weight: 400;
  font-size: 64px;
  line-height: 90%;
  letter-spacing: -0.05em;
  color: var(--primary);
}
h2 span,
.h2 span {
  color: var(--secondary);
  font-weight: inherit;
  font-size: inherit;
}

p {
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.05em;
}

a {
  transition: all 300ms ease;
}
a:hover {
  color: var(--secondary);
}

.blur-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1600px;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  filter: blur(200px);
  z-index: -1;
  background: radial-gradient(
    53.2% 53.07% at 48.16% 52.05%,
    rgb(1, 62, 231) 0%,
    rgb(6, 57, 184) 24.0384608507%,
    rgb(13, 13, 13) 85.0961565971%,
    rgb(12, 12, 12) 100%
  );
}

.section {
  position: relative;
  padding: 75px 50px;
}

.socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.socials a {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
}
.socials svg {
  width: 100%;
  height: 100%;
  fill: var(--primary);
}

.swiper {
  height: auto;
}

.swiper-pagination {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}
.swiper-pagination-bullet {
  background: var(--primary);
  opacity: 1;
  margin: 0px !important;
}
.swiper-pagination-bullet-active {
  background: var(--secondary);
}

.swiper-slide {
  height: auto;
}

.swiper-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.swiper-buttons .swiper-button-prev,
.swiper-buttons .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  margin: 0px;
  background: var(--secondary);
  border-radius: 50%;
}
.swiper-buttons .swiper-button-prev::after,
.swiper-buttons .swiper-button-next::after {
  color: var(--primary);
  font-size: 26px;
  position: static;
  display: block;
}
.swiper-buttons .swiper-button-prev.swiper-button-disabled,
.swiper-buttons .swiper-button-next.swiper-button-disabled {
  opacity: 1;
}
.swiper-buttons .swiper-button-prev.swiper-button-disabled::after,
.swiper-buttons .swiper-button-next.swiper-button-disabled::after {
  opacity: 0.3;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 24px;
  line-height: 65%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--secondary);
  max-width: fit-content;
  width: 100%;
  border-radius: 50px;
  padding: 18px 20px;
  transition: all 300ms ease;
}
.btn:hover {
  background: var(--btn-hover);
  color: var(--btn-hover-text);
}
.btn:active {
  background: var(--btn-active);
}

.block-header {
  margin-bottom: 30px;
}
.block-header.center {
  text-align: center;
}
.block-header p {
  margin-top: 30px;
}

.custom-checkbox {
  display: block;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
}
.custom-checkbox input {
  appearance: none;
}
.custom-checkbox::after,
.custom-checkbox::before {
  content: "";
  position: absolute;
  transition: all 300ms ease;
}
.custom-checkbox::before {
  top: 20px;
  left: 0px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.custom-checkbox::after {
  top: 22px;
  left: 2px;
  width: 15px;
  height: 15px;
  background: center/contain no-repeat url("../img/svgicons/checked.svg");
  opacity: 0;
}
.custom-checkbox p {
  margin: 0px;
  font-size: 14px;
  color: var(--primary);
  padding-left: 30px;
}
.custom-checkbox p a {
  color: inherit;
  font-size: inherit;
  font-weight: 500;
  text-decoration: underline;
}
.custom-checkbox p a:hover {
  text-decoration: none;
}
.custom-checkbox:has(input:checked)::before {
  border-color: var(--primary);
}
.custom-checkbox:has(input:checked)::after {
  opacity: 1;
}

.intro {
  position: relative;
  overflow: hidden;
  padding: 50px 50px 0px;
  background: var(--black);
}
.intro h1,
.intro .h1 {
  grid-column: span 2;
}
.intro p {
  max-width: 350px;
}
.intro p:nth-child(3) {
  margin-left: auto;
  text-align: right;
}
.intro p a {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}
.intro .swiper {
  position: relative;
  z-index: 3;
}
.intro .swiper-slide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 470px;
}
.intro__bg {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translate(-50%, 0%);
  pointer-events: none;
  z-index: 2;
}
.intro__line {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translate(-50%, 0%) rotate(9deg);
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}
.intro .btn {
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translate(-50%, 0%);
  z-index: 5;
  max-width: 475px;
}
.intro .swiper-pagination {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 90px;
  transform: translate(-50%, 0%);
  bottom: 16px;
}

.sub-intro {
  background: var(--black-lighter);
  display: inline-block;
  padding-top: 150px;
  padding-bottom: 150px;
}
.sub-intro__row {
  max-width: 920px;
  margin: 0 auto;
}
.sub-intro__info {
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: -0.05em;
  text-align: center;
  color: var(--primary);
}
.sub-intro__info > div {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--secondary);
}
.sub-intro__info > div:nth-child(1) {
  border: 1px solid var(--secondary);
  border-radius: 30px;
  padding: 0px 8px;
}
.sub-intro__info > div:nth-child(2) {
  transform: translate(0px, 4px);
}
.sub-intro__info > div:nth-child(2) img {
  width: 27px;
  height: 27px;
}
.sub-intro__info > div:nth-child(3) {
  transform: translate(0px, 4px);
}
.sub-intro__info span {
  display: inline-flex;
  color: var(--secondary);
  border-top: 1px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
  line-height: 1;
  padding-bottom: 2px;
}
.sub-intro__info .toggle {
  border: 1px solid var(--secondary);
  border-radius: 30px;
  height: 27px;
  width: 50px;
  position: relative;
}
.sub-intro__info .toggle::after {
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 50%;
  right: 5px;
  top: 5px;
  background: var(--secondary);
  position: absolute;
}

.pricing .block-header {
  display: flex;
  gap: 300px;
}
.pricing .block-header p {
  max-width: 476px;
  margin-top: 0px;
}
.pricing__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.pricing__item {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 30px;
  background: var(--card-bg-gradient);
  aspect-ratio: 443/471;
}
.pricing__item label {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #526386;
  border-radius: 30px;
  max-width: fit-content;
  font-weight: 400;
  font-size: 16px;
  line-height: 65%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #526386;
  padding: 10px 20px;
  margin-bottom: 10px;
}
.pricing__item header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid #526386;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.05em;
  color: var(--primary);
}
.pricing__item > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
}
.pricing__item > div p {
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.pricing__item > div p:first-child {
  font-weight: 500;
  color: var(--primary);
}
.pricing__item > div p:last-child {
  font-weight: 400;
  color: #526386;
  text-align: right;
}
.pricing__item > img {
  display: block;
  margin: auto auto 0px;
  padding-top: 50px;
}
.pricing__item .btn {
  margin-top: 35px;
  max-width: 100%;
  font-size: 16px;
  padding: 15px 0px;
}

.advantages__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: flex-start;
  gap: 16px;
}
.advantages__item {
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, #2936a6 0%, #01bbee 100%);
  position: relative;
  aspect-ratio: 290/385;
}
.advantages__item:nth-child(3n + 1) {
  margin-top: 150px;
}
.advantages__item:nth-child(3n + 2) {
  margin-top: 75px;
}
.advantages__item h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.05em;
  color: var(--primary);
  margin-bottom: 5px;
  padding-right: 30px;
}
.advantages__item img {
  position: absolute;
  top: 30px;
  right: 30px;
}
.advantages__item p {
  font-size: 16px;
  line-height: 120%;
}

.data .block-header {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.data__row {
  max-width: 960px;
  margin: 0 auto;
}
.data__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.data__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 40px 32px;
  color: var(--primary);
  background: rgba(0, 0, 0, 0.8);
}
.data__item p {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.05em;
}
.data__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 117px;
  height: 115px;
  background: #0f0f0f
    linear-gradient(311deg, #00d4ff 30%, rgba(61, 61, 246, 0.5725490196) 70%, rgba(61, 61, 246, 0.2509803922) 80%);
  padding: 30px;
  border-radius: 50%;
  margin: 0px auto 30px;
}

.company {
  position: relative;
}
.company__bg {
  position: absolute;
  inset: 0px 50px;
  width: calc(100% - 100px);
  height: 100%;
  mask-image: url(../img/index/company/bg-mask.png);
  -webkit-mask-image: url(../img/index/company/bg-mask.png);
  mask-size: cover;
  mask-repeat: no-repeat no-repeat;
  object-fit: cover;
  border-radius: 30px;
  background: linear-gradient(216deg, #2936a6 0%, #01bbee 41.64%);
  z-index: -1;
}
.company__row {
  max-width: 926px;
  margin: 0 auto;
  padding: 64px 0px;
}
.company__row > p {
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.05em;
  text-align: justify;
  color: var(--primary);
  margin-bottom: 24px;
}
.company__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.company__author img {
  display: block;
  margin: 0px 0px 16px;
  border-radius: 50%;
  flex: 0 0 85px;
}
.company__author svg {
  position: absolute;
  width: 384px;
  top: 40px;
}
.company__author p {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}
.company__author p:last-child {
  margin-top: 4px;
  font-weight: 400;
}

.callback__row {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 40px;
  align-items: flex-start;
  max-width: 1050px;
  margin: 0px auto;
}
.callback img {
  display: block;
  transform: rotate(-40deg);
  width: 100%;
}

form {
  flex: 1 1 auto;
}
form > input {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 300px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 20px 33px;
  width: 100%;
  background: transparent;
  margin-bottom: 15px;
  transition: all 300ms ease;
}
form > input:focus {
  border-color: var(--secondary);
}
form > input:focus::placeholder {
  color: var(--secondary);
  opacity: 0.5;
}
form .custom-checkbox {
  margin: 30px 0px;
}
form .btn {
  max-width: 100%;
}

.reviews {
  padding-right: 0px !important;
  padding-left: 0px !important;
}
.reviews .blur-box {
  max-width: 1280px;
}
.reviews .swiper-slide {
  padding: 40px;
  border-radius: 30px;
  background: radial-gradient(69.98% 69.82% at 50.11% 87.99%, #013ee7 0%, #0639b8 18.42%, #09182d 81.55%);
}
.reviews .swiper-slide > p {
  font-size: 20px;
}
.reviews .swiper,
.reviews .block-header {
  padding: 0px 40px;
}
.reviews__header {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 20px;
}
.reviews__header img {
  display: block;
  width: 70px;
  flex: 0 0 70px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.reviews__header div p {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.reviews__header div p:nth-child(2) {
  color: rgba(255, 255, 255, 0.3);
}
.reviews__header div a {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.partners {
  padding-right: 0px !important;
  padding-left: 0px !important;
}
.partners__row {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: 0px 50px;
  scrollbar-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}
.partners .block-header {
  padding: 0px 50px;
}
.partners__item {
  flex: 0 0 492px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 492/243;
  background: linear-gradient(180deg, #2936a6 0%, #01bbee 100%);
}

.inner-page h1,
.inner-page .h1 {
  font-size: 157px;
  margin-bottom: 60px;
}
.inner-page__row {
  display: flex;
  align-items: flex-start;
  counter-reset: innerPageCounter 0;
  position: relative;
}
.inner-page__row > img:first-child {
  position: relative;
  transform: rotate(-10deg) translate(-25%, -20%);
  flex: 0 0 50%;
}
.inner-page__row > img:nth-child(2) {
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: -25%;
  transform: translate(0%, -50%) rotate(10deg);
  width: 100%;
  z-index: -1;
}
.inner-page__info {
  max-width: 600px;
}
.inner-page__info h2 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.05em;
  color: var(--secondary);
  position: relative;
}
.inner-page__info h2::before {
  content: counter(innerPageCounter) ". ";
  counter-increment: innerPageCounter 1;
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  display: inline;
}
.inner-page__info p {
  margin-bottom: 10px;
}
.inner-page__info a,
.inner-page__info li {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.05em;
  color: var(--primary);
}
.inner-page__info a:hover {
  color: var(--secondary);
}
.inner-page__info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.inner-page__info li {
  list-style: disc;
  margin-left: 20px;
}

.footer {
  background: var(--black);
  padding: 0px 50px 35px;
  overflow: visible;
  position: relative;
  z-index: 3;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  gap: 160px;
  max-width: 75%;
}
.footer__top > img {
  position: absolute;
  top: -50px;
  right: -100px;
}
.footer__top nav {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__top nav > a {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.05em;
  color: var(--primary);
}
.footer__top form {
  max-width: 480px;
  margin-left: auto;
}
.footer__logo {
  position: relative;
  height: 28px;
  width: 280px;
}
.footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.footer__links p,
.footer__links a {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.05em;
  color: var(--primary);
  opacity: 0.44;
}
.footer__links a:hover {
  opacity: 1;
}

body {
  font-family: Roboto;
  margin: 0;
  color: var(--primary);
}

.wrapper {
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}

.content {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1 1 auto;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.96) 9.55%, #000 31.25%);
  z-index: 2;
  padding: 100px 0px 0px;
}
.content:has(.inner-page) {
  background: var(--black);
}

@media only screen and (max-width: 1920px) {
  .inner-page h1,
  .inner-page .h1 {
    font-size: 114px;
  }
}
@media only screen and (max-width: 1440px) {
  h1,
  .h1 {
    font-size: 72px;
  }
  h2,
  .h2 {
    font-size: 48px;
  }
  .inner-page h1,
  .inner-page .h1 {
    font-size: 85px;
  }
  .content {
    padding-top: 80px;
  }
  .header__row {
    padding: 30px 0px;
  }
  .sub-intro {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .sub-intro .block-header {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
  }
  .sub-intro__info {
    font-size: 24px;
  }
  .section {
    padding: 60px 40px;
  }
  .pricing .block-header {
    gap: 200px;
  }
  .pricing__items {
    gap: 12px;
  }
  .pricing__item {
    padding: 30px;
  }
  .advantages__item {
    min-height: 480px;
    aspect-ratio: auto;
  }
  .advantages__item h3 {
    font-size: 20px;
  }
  .partners__row {
    justify-content: flex-start;
    padding: 0px 20px;
  }
  .partners .block-header {
    padding: 0px 20px;
  }
  .footer__top {
    gap: 70px;
    max-width: 1020px;
  }
  .footer__top form {
    max-width: 430px;
  }
  .footer__top > img {
    width: 150px;
    right: -50px;
  }
  .reviews .swiper,
  .reviews .block-header {
    padding: 0px 20px;
  }
  form > input {
    padding: 15px 30px;
  }
}
@media only screen and (max-width: 1280px) {
  h1,
  .h1 {
    font-size: 54px;
  }
  .inner-page__row p,
  .inner-page__row a,
  .inner-page__row li {
    font-size: 14px;
  }
  .inner-page__row h2 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  .header {
    padding: 0px 10px;
  }
  .header__logo {
    position: relative;
    z-index: 3;
  }
  .header__burger {
    display: block;
  }
  .header__phones {
    margin-left: auto;
  }
  .header__row {
    gap: 24px;
  }
  .header__phones {
    gap: 48px;
    position: relative;
    z-index: 3;
  }
  .header__nav {
    position: fixed;
    top: 0px;
    right: 0px;
    max-height: fit-content;
    width: 360px;
    padding-bottom: 30px;
    background: #131212;
    flex-direction: column;
    padding-top: 70px;
    gap: 20px;
    transform: translate(-100%, 0%);
    transition: transform 300ms ease, opacity 200ms ease;
    opacity: 0;
  }
  .header__nav.burger-active {
    transform: translate(0%, 0%);
    opacity: 1;
  }
  .intro .swiper-slide {
    grid-template-columns: repeat(3, 1fr);
  }
  .intro h1,
  .intro .h1 {
    grid-column: span 3;
  }
  .intro p:nth-child(3) {
    text-align: left;
    margin-left: 0px;
  }
  .sub-intro {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .sub-intro__row {
    max-width: 610px;
  }
  .pricing .block-header {
    gap: 40px;
    justify-content: space-between;
  }
  .advantages__row {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
  .advantages__item {
    min-height: auto;
  }
  .advantages__item:nth-child(3n + 1),
  .advantages__item:nth-child(3n + 2) {
    margin-top: 0px;
  }
  .data .block-header {
    max-width: 380px;
  }
  .data .block-header p {
    font-size: 16px;
  }
  .data__items {
    gap: 24px;
  }
  .data__item p {
    font-size: 16px;
  }
  .footer__top {
    flex-wrap: wrap;
    gap: 60px 120px;
  }
  .footer__top form {
    flex: 1 1 auto;
    max-width: 600px;
    margin-right: auto;
  }
  .footer__top form h2 {
    text-align: center;
  }
  .footer__top nav {
    margin-top: 80px;
  }
  .footer__top > img {
    width: 250px;
    top: 20px;
    right: 60px;
  }
  .footer__links {
    flex-direction: column;
    gap: 6px;
  }
  .footer__links a,
  .footer__links p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1150px) {
  .pricing__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .content {
    padding-top: 60px;
  }
  .company__bg {
    mask-image: url(../img/index/company/bg-tablet-mask.png);
    -webkit-mask-image: url(../img/index/company/bg-tablet-mask.png);
    inset: 0px 10px;
    width: calc(100% - 20px);
  }
  .company__row {
    padding-left: 40px;
    padding-right: 40px;
  }
  .header__phones a:first-child {
    display: none;
  }
  .header__logo {
    width: 150px;
    height: 15px;
  }
  .header__row {
    padding: 20px 0px;
  }
}
@media only screen and (max-width: 992px) {
  .callback {
    padding-top: 80px;
  }
  .callback img {
    display: none;
  }
  .callback__row {
    display: block;
  }
  .reviews .swiper,
  .reviews .block-header {
    padding: 0px 10px;
  }
  .partners__row,
  .partners .block-header {
    padding: 0px 10px;
  }
  .inner-page h1,
  .inner-page .h1 {
    font-size: 52px;
  }
  .inner-page__row > img {
    display: none;
  }
  .inner-page__row p,
  .inner-page__row a,
  .inner-page__row li {
    font-size: 18px;
  }
  .inner-page__row h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .h1,
  h1 {
    font-size: 33px;
  }
  h2,
  .h2 {
    font-size: 36px;
  }
  p {
    font-size: 16px;
  }
  .btn {
    font-size: 16px;
    padding: 15px 20px;
  }
  .section {
    padding: 40px 20px;
  }
  .header__nav {
    inset: 0px;
    max-height: 100%;
    width: auto;
    padding-bottom: 0px;
  }
  .intro .swiper-slide {
    padding-bottom: 160px;
    grid-template-columns: repeat(2, 1fr);
  }
  .intro__bg {
    max-width: 300px;
  }
  .intro__line {
    display: none;
  }
  .intro .btn {
    bottom: 50px;
    max-width: calc(100% - 40px);
  }
  .sub-intro {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .sub-intro__info {
    font-size: 18px;
  }
  .sub-intro__info > div:nth-child(2) img {
    flex: 0 0 20px;
    height: 20px;
  }
  .sub-intro__info .toggle {
    height: 20px;
  }
  .sub-intro__info .toggle::after {
    top: 2.5px;
    width: 14px;
    height: 14px;
  }
  .pricing .block-header {
    flex-direction: column;
    gap: 20px;
  }
  .pricing__item {
    aspect-ratio: auto;
  }
  .advantages__row {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }
  .data .blur-box {
    width: 640px;
    aspect-ratio: 640/840;
  }
  .data__items {
    grid-template-columns: repeat(2, 1fr);
    max-width: 440px;
    margin: 0 auto;
  }
  .company__row {
    padding: 50px 40px;
  }
  .company__row > p {
    font-size: 18px;
  }
  .company__author {
    font-size: 16px;
  }
  .partners__item {
    flex: 0 0 340px;
    aspect-ratio: 340/145;
  }
  .partners__item img {
    max-width: 190px;
  }
  .reviews__header div p,
  .reviews__header div a {
    font-size: 12px;
  }
  .reviews .swiper-slide > p {
    font-size: 16px;
  }
  .reviews .blur-box {
    width: 600px;
  }
  .footer {
    padding: 0px 20px 25px;
  }
  .footer__top {
    row-gap: 20px;
  }
  .footer__top > img {
    width: 200px;
  }
  .footer__top nav {
    flex: 1 1 100%;
    margin-top: 0px;
  }
  .footer__links {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .inner-page h1,
  .inner-page .h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .company__bg {
    background: linear-gradient(216deg, #2936a6 0%, #01bbee 41.64%);
    mask-image: none;
    -webkit-mask-image: none;
  }
}
@media only screen and (max-width: 450px) {
  .h1,
  h1 {
    font-size: 28px;
  }
  h2,
  .h2 {
    font-size: 28px;
  }
  .block-header {
    margin-bottom: 20px;
  }
  .block-header.center {
    text-align: left;
  }
  .block-header p {
    margin-top: 20px;
  }
  .intro .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 100px;
    gap: 0px;
  }
  .intro .swiper-slide .h1,
  .intro .swiper-slide h1 {
    margin-bottom: 20px;
    text-wrap: balance;
    max-width: calc(100vw - 20px);
    word-wrap: break-word;
  }
  .intro .swiper-slide .h1 br,
  .intro .swiper-slide h1 br {
    display: none;
  }
  .intro .swiper-slide p {
    font-size: 14px;
  }
  .sub-intro__info {
    text-align: left;
    font-size: 16px;
  }
  .pricing__items {
    grid-template-columns: 1fr;
  }
  .pricing__item > img {
    display: none;
  }
  .advantages {
    padding-left: 0px;
    padding-right: 0px;
  }
  .advantages__row {
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    gap: 5px;
    overflow: auto;
  }
  .advantages__item {
    flex: 0 0 300px;
    padding: 20px;
  }
  .data .blur-box {
    width: 360px;
    height: 730px;
  }
  .data__items {
    gap: 10px;
  }
  .data__item {
    padding: 30px 10px;
  }
  .company {
    margin: 0 auto;
  }
  .company__bg {
    mask-size: cover;
  }
  .company__row {
    padding: 60px 25px;
  }
  .company__row > p {
    margin-bottom: 15px;
  }
  .company__author > svg {
    width: 240px;
  }
  .reviews .swiper-buttons {
    display: none;
  }
  .footer__logo {
    margin: 0 auto;
  }
  .footer__top > img {
    width: 150px;
    right: -60px;
    top: 150px;
  }
  .footer__top nav {
    position: relative;
    margin-bottom: 80px;
    gap: 20px;
  }
  .footer__top nav .socials {
    position: absolute;
    right: 0px;
    top: 0px;
    gap: 20px;
  }
  .footer__top form h2 {
    text-align: left;
  }
  .partners__item {
    flex: 0 0 300px;
    aspect-ratio: 300/110;
  }
  .blur-box {
    filter: none;
  }
}
