@font-face {
  font-family: "OpenSans-Regular";
  src: url(../fonts/OpenSans-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "OpenSans-Medium";
  src: url(../fonts/OpenSans-Medium.ttf) format("truetype");
}

@font-face {
  font-family: "OpenSans-ExtraBold";
  src: url(../fonts/OpenSans-ExtraBold.ttf) format("truetype");
}

@font-face {
  font-family: "OpenSans-Bold";
  src: url(../fonts/OpenSans-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "OpenSans-Light";
  src: url(../fonts/OpenSans-Light.ttf) format("truetype");
}



html, body {
  scroll-behavior: smooth !important;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body {
  -webkit-appearance: none;
  -moz-appearance: none !important;
  background-color: #fff;
  overflow-x: hidden;
  color: #fff;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth !important;

}

.header {
  width: 100%;
  max-height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(107, 165, 233, 0.7),
    rgba(107, 165, 233, 0.6),
    rgba(107, 165, 233, 0.5)
  );
  backdrop-filter: blur(2.5px);
  border-bottom: thin solid rgba(255, 255, 255, 0.1);
}

.header__content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.header__logo {
  z-index: 1;
  display: flex;
  margin-top: 6px;
  margin-bottom: 6px;
}

.header__logo img {
  height: 32px;
  width: 32px;
}

.header__title {
  margin: auto;
  margin-left: 5px;
  white-space: nowrap;
  font-size: 22px;
  font-family: "OpenSans-Medium", sans-serif;
  letter-spacing: 1px;
  color: #fff !important;
}

.header__hrefs {
  display: flex;
  font-family: "OpenSans-Regular", sans-serif;
  font-weight: 400;
  margin-top: 3px;
}

.header__href {
  text-decoration: none;
  color: #fff;
  margin: auto;
  white-space: nowrap;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1px;
}

.header__button {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  color: #fff;
  padding: 8px 16px 8px 18px;
  font-size: 16px;
  cursor: pointer;
  font-family: "OpenSans-Regular", sans-serif;
  letter-spacing: 1px;
  transition: 0.3s;
  text-decoration: none;
  line-height: 180%;
}

@media (hover: hover) {
  .header__button:hover {
    box-shadow: 0 0 10px #121212;
  }
}

.main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  position: relative;
}

.main section {
  width: 100%;
  max-width: 1440px;
  overflow: hidden;
  justify-content: center;
}

.main .home__section {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.main .home__section__content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 1;
  padding: 5%;
}

.main .home__section__title {
  width: 50%;
}

.main .home__section__title h1 {
  font-weight: 300;
  font-family: "OpenSans-Light", sans-serif;
}

.main .home__section__title h1 span {
  font-weight: 700;
  font-family: "OpenSans-Bold", sans-serif;
}

.main .home__section__title p {
  opacity: 0.9;
  font-family: "OpenSans-Regular", sans-serif;
}

.main .home__section__title button {
  border-radius: 10px;
  border: none;
  color: #36c;
  padding: 12px 10px 12px 10px;
  cursor: pointer;
  font-size: 18px;
}

.main .home__section__rectangle {
  position: absolute;
  object-fit: cover;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.main .home__section__left-ellips {
  position: absolute;
  width: 100%;
  height: 100%;
}

.main .home__section__robot {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.animated-gap {
  width: 100%;
  opacity: 0.7;
  justify-content: flex-start;
  align-items: center;
  gap: 29px;
  white-space: nowrap;
  display: inline-flex;
  transition: 0.3s;
}

.animated-gap__text {
  font-weight: 800;
  white-space: nowrap;
  font-family: "OpenSans-ExtraBold", sans-serif;
  -webkit-text-stroke: 1px rgba(34, 132, 254, 0.5);
  padding-left: 5%;
  overflow: visible;
  cursor: context-menu;
}

.right-animation {
  animation: move-right 20s infinite linear;
}

.left-animation {
  animation: move-left 20s infinite linear;
}

@keyframes move-right {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }

  15% {
    opacity: 0.3;
  }

  30% {
    opacity: 1;
  }

  60% {
    opacity: 0.6;
  }

  100% {
    transform: translateX(0%);
    opacity: 0;
  }
}

@keyframes move-left {
  0% {
    opacity: 0;
    transform: translateX(0%);
  }

  15% {
    opacity: 0.3;
  }

  30% {
    opacity: 1;
  }

  60% {
    opacity: 0.6;
  }

  100% {
    transform: translateX(-50%);
    opacity: 0;
  }
}

.info__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.info__block {
  display: flex;
  align-items: center;
  color: #121212;
  width: 100%;
}

.info__block__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info__block .img__container {
  border-radius: 50px;
  margin: 5px;
  box-shadow: 0 0 10px rgba(107, 165, 233, 0.2);
}

.info__block__h1 {
  font-family: "Magistral", sans-serif;
  line-height: 110%;
  font-weight: 400;
  margin: 0;
}

.info__block__h1 span {
  color: #2284fe;
  font-weight: 700;
}

.info__block__p {
  font-family: "OpenSans-Regular", sans-serif;
  margin: 0;
  line-height: 140%;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobius__block,
.zont__block {
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobius__block__title,
.zont__block__title {
  display: flex;
  z-index: 1;
}

.mobius__block__info,
.zont__block__info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: 1;
}

.mobius__block__info__p,
.zont__block__info__p {
  font-family: "OpenSans-Regular", sans-serif;
  line-height: 140%;
  margin: 0;
}

.mobius__block__info__button,
.zont__block__info__button {
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  gap: 4px;
  font-family: "OpenSans-Medium", sans-serif;
  line-height: 24px;
  text-transform: uppercase;
  color: #fff;
  border: none;
  border-radius: 10px;
  transition: 0.3s;
  white-space: nowrap;
  cursor: pointer;
  width: min-content;
  text-decoration: none;
}

@media (hover: hover) {
  .mobius__block__info__button:hover,
  .zont__block__info__button:hover {
    box-shadow: 0 0 10px #121212;
  }
}

.mobius__block {
  position: relative;
}

.mobius__block__shadow {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0%;
  background-color: #121212;
  opacity: 0.5;
}

.mobius__block__hands {
  position: absolute;
  top: 0;
  right: 2px;
  opacity: 1;
}

.mobius__block__phone {
  position: absolute;
  bottom: 0;
  right: 2px;
  opacity: 0.7;
}

.zont__block__robot {
  position: absolute;
  bottom: 0;
  opacity: 1;
}

.icons__block {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  z-index: 1;
}

.icons__block__item {
  display: flex;
}

.icons__block__item__text {
  line-height: 140%;
}

.icons__block__item__text h2 {
  padding: 0;
  margin: 0;
  font-family: "OpenSans-Medium", sans-serif;
  font-weight: 500;
}

.icons__block__item__text p {
  font-family: "OpenSans-Regular", sans-serif;
  font-weight: 200;
  padding-top: 7px;
  margin: 0;
}

.callback__section {
  display: block;
}

.callback__block {
  border-radius: 15px;
  background-color: #2284fe;
}

.callback__form {
  display: flex;
  flex-direction: column;
}

.callback__header {
  font-family: "OpenSans-Medium";
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 120%;
}

.callback__inputs {
  display: flex;
}

.callback__inputs__item {
  background-color: #4396fe !important;
  padding: 16px;
  width: -webkit-fill-available;
  flex-basis: 33%;
  border-radius: 10px;
  color: #fff !important;
  border: none !important;
  font-family: "Magistal-Book";
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 1px;
  border: 1px solid #4396fe !important;
}

.callback__inputs__item::placeholder {
  color: #fff;
  opacity: 1;
}

.callback__inputs__item:-webkit-autofill,
.callback__inputs__item:-webkit-autofill:hover,
.callback__inputs__item:-webkit-autofill:focus,
.callback__inputs__item:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #4396fe inset !important;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: white !important;
  font-family: "Magistal-Book" !important;
}

.callback__inputs__item:focus {
  border: 1px solid #fff;
  outline: none;
}
.callback__textarea__container{
  display: flex;
  flex-direction: column;
}
.callback__button {
  width: -webkit-fill-available;
  flex-basis: 100%;
  padding: 8px 16px 8px 16px;
  border-radius: 10px;
  border: none;
  font-family: "OpenSans-Medium";
  color: #2284fe;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  cursor: pointer;
  height: 44px;
  transition: 0.3s;
}

.callback__cookie__alert {
  font-family: "Magistal-Book";
  line-height: 140%;
  a{
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 0 -3px #fff;
}
}

.faq__section {
  padding-bottom: 35px;
}

.faq__block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.faq__item {
  border: 1px solid #2284fe;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}

.faq__item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2284fe;
  font-family: "OpenSans-Medium";
  position: relative;
}

.faq__item__answer {
  color: #121212;
  font-family: "OpenSans-Regular";
  max-width: 90%;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  margin: 0;
  position: relative;
  top: 5px;
}

.faq__item__answer.active {
  transition: max-height 0.5s ease-in;
}

.faq__button {
  cursor: pointer;
  transition: transform 1s;
  height: 50px;
  max-width: 50px;
  width: 100%;
  border-radius: 100%;
  position: relative;
  right: 0;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0);
  color: #2284fe;
  font-size: 100%;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(107, 165, 233, 0.35);
  transition: 0.3s;
}

.faq__button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%) rotate(-45deg);
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #2284fe;
  border-right: 2px solid #2284fe;
}

.faq__button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  background-color: #2284fe;
  transition: transform 1s, opacity 1s;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transform-origin: center;
  z-index: -1;
}

.faq__button.active {
  transform: rotate(90deg);
  color: #fff;
}

.faq__button.active::after {
  transform: translate(-60%, -50%) rotate(-45deg);
  border-color: #fff;
}

.faq__button.active::before {
  transform: scale(1);
  opacity: 1;
}

.footer {
  background-color: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.footer__title {
  margin: auto;
  margin-left: 5px;
  white-space: nowrap;
  font-family: "OpenSans-Medium", sans-serif;
  letter-spacing: 1px;
}

.footer__logo {
  display: flex;
}

.footer__logo img {
  margin-right: 5px;
  height: 32px;
  width: 32px;
}

.footer__container {
  max-width: 90%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer__container__requisites {
  font-family: "OpenSans-Regular";
  font-size: 14px;
  line-height: 140%;
  margin-top: 5px;
}

.footer__container__about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__container__social {
  display: flex;
  flex-direction: column;
  width: fit-content;
  align-items: flex-end;
}

.socials {
  display: flex;
  padding: 5px;
  width: fit-content;
  a {
    margin: 5px;
  }
}

.footer__container__cookie-alert {
  text-align: end;
  font-family: "OpenSans-Regular";
  font-size: 14px;
  line-height: 140%;

  a {
    text-decoration: none;
    box-shadow: 0 4px 0 -3px #2284fe;
    color: #2284fe;
    transition: 0.3s;
  }
}

.popup_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
  z-index: 9999;
}

.popup_bg.active {
  opacity: 1;
  pointer-events: all;
  transition: 0.5s ease;
}

.popup {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #121212;
  width: fit-content;
  height: fit-content;
  padding: 25px;
  transition: 0.5s all;
  border: 1px solid black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 10px;
  font-family: "OpenSans-Regular";
}

.closeButton {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  background-color: #f44336;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  transition: 0.5s ease;
}

@media (hover: hover) {
  .closeButton:hover {
    box-shadow: 0 0 10px #121212;
  }
}

@media (hover: hover) {
  .footer__container__cookie-alert a:hover {
    box-shadow: 0 4px 0 -3px transparent;
  }
}

@media screen and (min-width: 350px) and (max-width: 700px) {
  .header {
    display: flex;
    position: absolute;
  }

  .header__content {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header__logo {
    margin-left: 5%;
  }

  .header__hrefs {
    display: none;
  }

  .header__button {
    display: none;
  }

  .main section {
    width: 100%;
    display: flex;
  }

  .main .home__section {
    height: 500px;
    width: 100%;
  }

  .main .home__section__img {
    display: none;
  }

  .main .home__section__title {
    width: auto;
  }

  .main .home__section__title h1 {
    font-size: 40px;
    line-height: 40px;
  }

  .main .home__section__title p {
    font-size: 17px;
    line-height: 24px;
  }

  .main .home__section__title button {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
  }

  .main .home__section__rectangle {
    max-height: 500px;
  }

  .main .home__section__left-ellips {
    max-height: 500px;
  }

  .main .home__section__robot {
    max-height: 500px;
  }

  .info__section {
    gap: 60px;
  }

  .info__block {
    gap: 60px;
    width: 92%;
    position: relative;
  }

  .info__block .img__container {
    position: absolute;
    border-radius: 10px;
    top: 0;
    width: 65px;
    height: 65px;
  }

  .info__block__title {
    gap: 32px;
  }

  .info__block__img {
    width: 55px;
    height: 55px;
    padding: 5px;
  }

  .info__block__h1 {
    font-size: 17px;
    width: calc(100% - 80px);
    padding-left: 80px;
    padding-top: 10px;
  }

  .info__block__p {
    font-size: 17px;
  }

  .gap-block {
    height: 56px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .animated-gap {
    height: 56px;
  }

  .animated-gap__text {
    font-size: 40px;
  }

  .mobius__block,
  .zont__block {
    width: 92%;
  }

  .mobius__block__title,
  .zont__block__title {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobius__block__info,
  .zont__block__info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 16px;
    gap: 32px;
  }

  .mobius__block__info__logo,
  .zont__block__info__logo {
    height: 37px;
  }

  .mobius__block__info__logo img,
  .zont__block__info__logo img {
    height: 37px;
  }

  .mobius__block__info__p,
  .zont__block__info__p {
    font-size: 17px;
    span {
      font-size: 10px;
    }
  }

  .mobius__block__info__button,
  .zont__block__info__button {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 10px 13px 10px 13px;
    line-height: 20px;
  }

  .mobius__block__info__button img,
  .zont__block__info__button img {
    height: 15px;
    width: 15px;
  }

  .mobius__block__phone {
    right: -180px;
  }

  .zont__block__robot {
    right: -150px;
  }

  .icons__block {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 16px;
    gap: 24px;
  }

  .icons__block__item {
    display: flex;
    gap: 14px;
  }

  .icons__block__item__img {
    width: 45px;
    height: 50px;
  }

  .icons__block__item__text {
    max-width: 70%;
    line-height: 140%;
  }

  .icons__block__item__text h2 {
    font-size: 17px;
  }

  .icons__block__item__text p {
    font-size: 16px;
  }

  .callback__block {
    width: 92%;
  }

  .callback__form {
    gap: 24px;
    padding: 16px;
  }

  .callback__header {
    font-size: 20px;
  }

  .callback__inputs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
  }

  .callback__cookie__alert {
    font-size: 14px;
    
  }

  .faq__block {
    width: 92%;
  }

  .faq__item {
    padding: 16px;
  }

  .faq__item__question {
    font-size: 17px;
  }

  .faq__item__answer {
    font-size: 16px;
  }

  .faq__item__answer.active {
    max-height: 1000px;
  }

  .footer__title {
    font-size: 22px;
  }

  .footer__container {
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
  }

  .footer__container__about {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .footer__container__social {
    align-items: center;
  }

  .footer__container__cookie-alert {
    max-width: none;
    text-align: start;
  }
}

@media screen and (min-width: 700px) and (max-width: 1024px) {
  .header {
    display: flex;
  }

  .header__content {
    margin: 18px 60px 18px 60px;
  }

  .header__hrefs {
    display: none;
  }

  .main section {
    width: 92%;
  }

  .main .home__section {
    height: 560px;
    width: 100%;
  }

  .main .home__section__img {
    display: block;
    width: 300px;
    height: 300px;
  }

  .main .home__section__title {
    width: 50%;
  }

  .main .home__section__title h1 {
    font-size: 40px;
    line-height: 40px;
  }

  .main .home__section__title p {
    font-size: 17px;
    line-height: 24px;
  }

  .main .home__section__title button {
    width: auto;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 28px 12px 28px;
  }

  .main .home__section__rectangle {
    max-height: 560px;
  }

  .main .home__section__left-ellips {
    max-height: 560px;
  }

  .main .home__section__robot {
    max-height: 560px;
  }

  .info__section {
    gap: 60px;
  }

  .info__block {
    gap: 40px;
  }

  .info__block .img__container {
    width: 260px;
    height: 260px;
  }

  .info__block__title {
    gap: 32px;
  }

  .info__block__img {
    width: 240px;
    height: 240px;
    padding: 10px;
  }

  .info__block__h1 {
    font-size: 22px;
  }

  .info__block__p {
    font-size: 18px;
  }

  .gap-block {
    height: 109px;
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .animated-gap {
    height: 109px;
  }

  .animated-gap__text {
    font-size: 78px;
  }

  .mobius__block,
  .zont__block {
    background-position: 30%;
  }

  .mobius__block__title,
  .zont__block__title {
    gap: 60px;
    padding: 45px;
    display: flex;
    flex-direction: column;
  }

  .mobius__block__info,
  .zont__block__info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 40px;
  }

  .mobius__block__info__logo,
  .zont__block__info__logo {
    height: 48px;
  }

  .mobius__block__info__logo img,
  .zont__block__info__logo img {
    height: 48px;
  }

  .mobius__block__info__p,
  .zont__block__info__p {
    font-size: 22px;
    span {
      font-size: 10px;
    }
  }

  .mobius__block__info__button,
  .zont__block__info__button {
    padding: 12px 16px 12px 16px;
  }

  .mobius__block__info__button img,
  .zont__block__info__button img {
    height: 20px;
    width: 20px;
  }

  .zont__block__robot {
    right: -150px;
    bottom: -30px;
  }

  .icons__block {
    display: flex;
    flex-wrap: wrap;
    flex-direction: initial;
  }

  .icons__block__item {
    display: flex;
    width: 50%;
    margin-bottom: 30px;
  }

  .icons__block__item__img {
    width: 60px;
    height: 60px;
  }

  .icons__block__item__text {
    width: 100%;
    margin-left: 5px;
  }

  .icons__block__item__text h2 {
    width: 90%;
    font-size: 20px;
  }

  .icons__block__item__text p {
    font-size: 18px;
  }

  .callback__form {
    gap: 40px;
    padding: 40px;
  }

  .callback__header {
    font-size: 32px;
  }

  .callback__inputs {
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
  }

  .callback__cookie__alert {
    font-size: 18px;
  }

  .faq__item {
    padding: 40px;
  }

  .faq__item__question {
    font-size: 24px;
  }

  .faq__item__answer {
    font-size: 20px;
  }

  .faq__item__answer.active {
    max-height: 1000px;
  }

  .footer__title {
    font-size: 22px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439.99px) {
  .header {
    display: flex;
  }

  .header__content {
    margin: 18px 60px 18px 60px;
  }

  .header__hrefs {
    gap: 40px;
  }

  .main section {
    width: 92%;
  }

  .main .home__section {
    height: 778px;
    width: 100%;
  }

  .main .home__section__img {
    display: block;
    width: 400px;
    height: 400px;
  }

  .main .home__section__content {
    justify-content: space-around;
  }

  .main .home__section__title {
    width: 40%;
  }

  .main .home__section__title h1 {
    font-size: 40px;
    line-height: 40px;
  }

  .main .home__section__title p {
    font-size: 17px;
    line-height: 24px;
  }

  .main .home__section__title button {
    width: auto;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 28px 12px 28px;
  }

  .main .home__section__rectangle {
    max-height: 778px;
  }

  .main .home__section__left-ellips {
    max-height: 778px;
  }

  .main .home__section__robot {
    max-height: 778px;
  }

  .info__section {
    gap: 60px;
  }

  .info__block {
    gap: 40px;
  }

  .info__block .img__container {
    width: 260px;
    height: 260px;
  }

  .info__block__title {
    gap: 32px;
  }

  .info__block__img {
    width: 240px;
    height: 240px;
    padding: 10px;
  }

  .info__block__h1 {
    font-size: 40px;
  }

  .info__block__p {
    font-size: 18px;
  }

  .gap-block {
    height: 109px;
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .animated-gap {
    height: 109px;
  }

  .animated-gap__text {
    font-size: 78px;
  }

  .mobius__block,
  .zont__block {
    background-position: 30%;
  }

  .mobius__block__title,
  .zont__block__title {
    gap: 60px;
    padding: 45px;
    display: flex;
    flex-direction: column;
  }

  .mobius__block__info,
  .zont__block__info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 40px;
  }

  .mobius__block__info__logo,
  .zont__block__info__logo {
    height: 48px;
  }

  .mobius__block__info__logo img,
  .zont__block__info__logo img {
    height: 48px;
  }

  .mobius__block__info__p,
  .zont__block__info__p {
    font-size: 22px;
    span {
      font-size: 10px;
    }
  }

  .mobius__block__info__button,
  .zont__block__info__button {
    padding: 12px 16px 12px 16px;
  }

  .mobius__block__info__button img,
  .zont__block__info__button img {
    height: 20px;
    width: 20px;
  }

  .zont__block__robot {
    height: 801.23px;
    top: 328.88px;
    right: -130px;
  }

  .icons__block {
    gap: 32px;
  }

  .icons__block__item {
    gap: 14px;
  }

  .icons__block__item__img {
    width: 60px;
    height: 60px;
  }

  .icons__block__item__text {
    max-width: 50%;
  }

  .icons__block__item__text h2 {
    font-size: 22px;
  }

  .icons__block__item__text p {
    font-size: 20px;
  }

  .callback__form {
    gap: 40px;
    padding: 40px;
  }

  .callback__header {
    font-size: 32px;
  }

  .callback__inputs {
    justify-content: space-between;
    gap: 20px;
  }

  .callback__cookie__alert {
    font-size: 18px;
  }

  .faq__item {
    padding: 40px;
  }

  .faq__item__question {
    font-size: 24px;
  }

  .faq__item__answer {
    font-size: 20px;
  }

  .faq__item__answer.active {
    max-height: 1000px;
  }

  .footer__title {
    font-size: 22px;
  }
}

@media screen and (min-width: 1440px) {
  .header {
    display: flex;
  }

  .header__content {
    margin: 18px 86px 18px 86px;
  }

  .header__hrefs {
    gap: 120px;
  }

  .main section {
    display: flex;
  }

  .main .home__section {
    height: 788px;
    width: 100%;
    max-width: none;
    justify-content: center;
    /* background-color: #4083d8; */
  }

  .main .home__section .bg-video {
    max-width: 1440px;
    position: absolute;
    left: calc((100% - 1440px) / 2);
    z-index: 1;
  }

  .block-with-shadow {
    width: calc((100% - 1440px) / 2);
    height: 788px;
    position: relative;
    top: 0;
  }

  #left-block {
    left: 0;
    background-color: #4083d8;

    .shadow {
      right: -40%;
      border-radius: 0 10% 10% 0;
      background: linear-gradient(to right, #4083d8 60%, transparent 100%);
    }
  }

  .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-blend-mode: multiply;
  }

  #right-block {
    right: 0;
    background-color: #4083d8;

    .shadow {
      left: -40%;
      border-radius: 10% 0 0 10%;
      background: linear-gradient(to right, transparent 10%, #4083d8 40%);
      right: -10%;
    }
  }

  #shadow1 {
    top: 0%;
  }

  .main .home__section__content {
    height: 50%;
    justify-content: space-between;
    max-width: 1440px;
    padding: 0;
    z-index: 1;
  }

  .main .home__section__title {
    padding-left: 75px;
    width: 40%;
  }

  .main .home__section__title h1 {
    font-size: 60px;
    line-height: 60px;
  }

  .main .home__section__title p {
    font-size: 20px;
    line-height: 28px;
  }

  .main .home__section__title button {
    width: 271px;
    height: 48px;
    padding: 12px 10px 12px 10px;
    font-size: 18px;
    line-height: 24px;
  }

  .main .home__section__img {
    width: 500px;
    padding-right: 10%;
  }

  .info__section {
    gap: 60px;
  }

  .info__block {
    gap: 60px;
    max-width: 1280px;
  }

  .info__block__title {
    gap: 32px;
  }

  .info__block .img__container {
    width: 350px;
    height: 350px;
  }

  .info__block__img {
    width: 320px;
    height: 320px;
    padding: 15px;
  }

  .info__block__h1 {
    font-size: 40px;
  }

  .info__block__p {
    font-size: 20px;
  }

  .gap-block {
    height: 109px;
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .animated-gap {
    height: 109px;
  }

  .animated-gap__text {
    font-size: 78px;
  }

  .mobius__block,
  .zont__block {
    max-width: 1280px;
    width: 100%;
    min-height: 667px;
    max-height: 680px;
  }

  .mobius__block__title,
  .zont__block__title {
    gap: 60px;
    height: 577px;
    flex-direction: row;
  }

  .mobius__block__info,
  .zont__block__info {
    width: 577px;
  }

  .mobius__block__info__logo,
  .zont__block__info__logo {
    width: 184px;
    height: 48px;
  }

  .mobius__block__info__logo img,
  .zont__block__info__logo img {
    height: 48px;
  }

  .mobius__block__info__p,
  .zont__block__info__p {
    font-size: 22px;
    span {
      font-size: 10px;
    }
  }

  .mobius__block__info__button,
  .zont__block__info__button {
    padding: 12px 16px 12px 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .mobius__block__info__button img,
  .zont__block__info__button img {
    height: 20px;
    width: 20px;
  }

  .zont__block {
    height: 680px;
  }

  .zont__block__robot {
    bottom: -50px;
    right: -50px;
  }

  .icons__block {
    width: 520px;
  }

  .icons__block__item {
    gap: 14px;
  }

  .icons__block__item__img {
    width: 60px;
    height: 60px;
  }

  .icons__block__item__text {
    max-width: 70%;
  }

  .icons__block__item__text h2 {
    font-size: 22px;
  }

  .icons__block__item__text p {
    font-size: 20px;
  }

  .callback__block {
    max-width: 1280px;
    width: 100%;
  }

  .callback__form {
    gap: 40px;
    padding: 40px;
  }

  .callback__header {
    font-size: 32px;
  }

  .callback__inputs {
    justify-content: space-between;
    gap: 20px;
  }

  .callback__cookie__alert {
    font-size: 18px;
  }

  .faq__block {
    max-width: 1280px;
  }

  .faq__item {
    padding: 36px 55px 36px 55px;
  }

  .faq__item__question {
    font-size: 24px;
  }

  .faq__item__answer {
    font-size: 20px;
  }

  .faq__item__answer.active {
    max-height: 1000px;
  }

  .footer__title {
    font-size: 22px;
  }
}
