@charset "UTF-8";
/**
* Connection of fonts locally from the "./src/fonts" folder
*/
@font-face {
  font-family: AvertaDemoPECuttedDemo;
  font-display: swap;
  src: url("../fonts/AvertaDemoPECuttedDemo-Regular.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
/** Connection of variables */
/**
* Connection of sass function and mixins and extends styles
*/
/* Шаблоны (заготовки)
* @extend %имя шаблона;
*/
/** Reset */
* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

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

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

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

html {
  scroll-behavior: smooth;
}
html.lock {
  overflow: hidden;
  touch-action: none;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-family: "", AvertaDemoPECuttedDemo;
  font-weight: 400;
  line-height: 1;
}

input,
button,
textarea {
  font-family: inherit;
}

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

button,
a {
  user-select: none;
}

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

a {
  text-decoration: none;
}
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: 400;
}

sup {
  color: inherit;
}

/**
* Libraries
* uncomment for use
*/
/**
* Custom scrollbar connection for the entire site
*/
* {
  scrollbar-width: 0.5rem;
  scrollbar-color: #000 #d6d6d6;
}
*::-webkit-scrollbar {
  width: 0.5rem;
  background-color: #FFF;
}
*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  background: #eee;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  border: 0 none #fff;
  background-color: #1a1a1a;
  transition: all 280ms ease-in-out;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #000;
}

/**
* General parameters, templates (blanks) and auxiliary classes
*/
/** Basic animations: */
@keyframes show-header {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes fade-up-big {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
/** Styles for full screen block: */
/*
* (i) Styles will be applied to
* to all containing classes *__container
* For example header__container, main__container и т.д.
*/
[class*=__container] {
  max-width: 101.875rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  /** Change to clip - if used in the project position: sticky */
  overflow: hidden;
}

.page {
  position: relative;
  flex: 1 1 auto;
  margin-top: 132px;
}
.page [data-observ] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: transparent;
  pointer-events: none;
}
.page_start {
  padding-top: 6.25rem;
}

/**
* BEM blocks used in the entire project
*/
.simple-text {
  color: #565656;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.bold-text {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.simple-button {
  border-radius: 60px;
  background: #2639ED;
  width: 215px;
  height: 65px;
  color: #FFF;
  font-size: 20px;
  transition: all 0.5s ease;
}
.simple-button:hover {
  background: #FFF;
  color: #2639ED;
  border: 1px solid #2639ED;
}

@media (max-width: 480px) {
  .simple-text {
    color: #565656;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
  }
}
/**
* Connection of styles of individual blocks and sections
*/
.header {
  width: 100%;
  position: fixed;
  transition: all 0.3s ease-in-out;
  z-index: 50;
  padding-top: 42px;
  background-color: #ffffff;
}
.header__container {
  height: 6.25rem;
  display: flex;
  align-items: center;
  height: 50px;
}
.header-is-sticky .header__container {
  height: 3.125rem;
}
.header img {
  height: 30px;
}

.menu {
  width: 100%;
  display: flex;
}
.menu__icon {
  display: none;
}
.menu__list {
  display: flex;
}
.menu__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 60px;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
  cursor: pointer;
}
.menu__item:hover {
  text-decoration: underline;
}
.menu__logo {
  font-size: 27.147px;
  margin-left: 0px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  margin-right: auto;
}
.menu__body {
  display: flex;
  align-items: center;
}

boby._lock {
  overflow: hidden;
}

.first-part-left__title {
  margin-bottom: 40px;
}
.first-part-left__text {
  margin-bottom: 33px;
  width: 470px;
}

.first-part {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.first-part-right {
  width: 100%;
  display: flex;
  justify-content: end;
}

.our-client-part {
  margin-top: 130px;
  display: flex;
  align-items: center;
}

.our-client-part-left {
  margin-right: 60px;
}
.our-client-part-left__title {
  margin-bottom: 17px;
}
.our-client-part-left__text {
  width: 336px;
}

.our-client-part-right {
  opacity: 0;
  transition: all 1.5s ease-in-out;
  width: 100%;
}
.our-client-part-right__list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: end;
}
.our-client-part-right__item {
  display: flex;
  align-items: center;
  margin-right: 59px;
  margin-bottom: 30px;
}

.info-part {
  display: flex;
  margin-top: 94px;
  align-items: center;
}

.info-part-right-info {
  display: flex;
}
.info-part-right-info__right {
  margin-left: 100%;
  opacity: 0;
  transition: all 2.4s ease-in-out;
}
.info-part-right-info__left {
  margin-left: 100%;
  transition: all 2s ease-in-out;
  opacity: 0;
}

.info-part-left {
  z-index: 3;
  margin-right: auto;
}
.info-part-left__title {
  width: 358px;
}
.info-part-left__text {
  margin-top: 30px;
  width: 396px;
}
.info-part-left__background {
  position: absolute;
  z-index: -1;
}
.info-part-left__img-top {
  margin-left: -39px;
  margin-top: -60px;
}
.info-part-left__img-bottom {
  margin-top: 104px;
}

.info-part-right-info-left-item {
  margin: 30px;
  margin-top: 79px;
  border: 1px solid #F2F2F2;
  width: 308px;
  border-radius: 40px;
  height: 379px;
  background: #FFF;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  flex-direction: column;
}
.info-part-right-info-left-item__icon {
  margin-top: 39px;
}
.info-part-right-info-left-item__title {
  width: 167px;
  color: #000;
  text-align: center;
  margin-top: 30px;
  font-size: 24px;
}
.info-part-right-info-left-item__text {
  margin-top: 24px;
  width: 245px;
}

.info-part-right-info-right-item {
  margin: 30px;
  width: 308px;
  border-radius: 40px;
  border: 1px solid #F2F2F2;
  height: 379px;
  background: #FFF;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  flex-direction: column;
}
.info-part-right-info-right-item__icon {
  margin-top: 39px;
}
.info-part-right-info-right-item__title {
  width: 167px;
  color: #000;
  text-align: center;
  margin-top: 30px;
  font-size: 24px;
}
.info-part-right-info-right-item__text {
  margin-top: 24px;
  width: 245px;
}

.info-part-right {
  display: flex;
  align-items: center;
}
.info-part-right__background {
  position: absolute;
  width: 100%;
  background: #F4F9FF;
}
.info-part-right__info {
  z-index: 3;
}
.info-part-right__background-circle {
  position: absolute;
}
.info-part-right__background-circle img {
  position: relative;
  left: 600px;
  top: 320px;
}

.info-part-right-background {
  position: relative;
  right: 300px;
  width: 1247px;
  height: 619px;
  border-radius: 150px 0px 0px 0px;
  background: #F4F9FF;
}

.video-part {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 2.2s ease-in-out;
  margin-top: 146px;
  opacity: 0;
  width: 100%;
}
.video-part__title {
  width: 468px;
  margin-bottom: 30px;
}
.video-part__text {
  width: 532px;
}
.video-part__background {
  position: absolute;
  z-index: -1;
}
.video-part__background img {
  position: relative;
  right: 20px;
  bottom: 20px;
}
.video-part__right {
  width: 100%;
}

.video-part-left {
  transition: all 1.5s ease-in-out;
  margin-right: 200%;
}

.client-part {
  margin-top: 172px;
  text-align: center;
}

.person-part {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.person-part-middle {
  margin-right: 38px;
}

.person-part-middle-item {
  width: 412px;
  display: none;
  right: 100%;
  opacity: 0;
  position: relative;
  transition: all 0.5s ease;
}
.person-part-middle-item._active-item {
  display: block;
}
.person-part-middle-item._active-anim {
  right: 0;
  opacity: 1;
}
.person-part-middle-item__text {
  margin-top: 20px;
}

.person-part-middle-switchers {
  margin-top: 40px;
}
.person-part-middle-switchers__item {
  margin-right: 26px;
}
.person-part-middle-switchers__list {
  display: flex;
}
.person-part-middle-switchers__button {
  width: 16px;
  height: 16px;
  background-color: #DAE9FF;
  transition: all 0.5s ease;
  border-radius: 90px;
}
.person-part-middle-switchers__button._active-switcher {
  background-color: #2639ED;
}

.person-part-right__img2 {
  position: absolute;
  margin-top: -50px;
  margin-left: -100px;
}
.person-part-right__img3 {
  z-index: -1;
  position: absolute;
  margin-top: 170px;
  margin-left: -130px;
}

.input-part {
  z-index: 1;
  margin-top: 148px;
  display: flex;
  justify-content: center;
  margin-bottom: 146px;
}
.input-part__body {
  display: flex;
  background-color: #F4F9FF;
  width: 100%;
  max-width: 1197px;
  border-radius: 75px;
  justify-content: center;
  align-items: center;
  padding: 98px;
}

.input-part-right {
  z-index: 2;
}
.input-part-right__background {
  z-index: -1;
  position: absolute;
  margin-left: 60px;
  margin-top: -160px;
}
.input-part-right__input {
  width: 479px;
  height: 80px;
  border-radius: 60px;
  border: 1px solid #F1F1F1;
  background: #FFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 10px 20px 50px 0px rgba(0, 0, 0, 0.15);
}
.input-part-right__input button {
  margin-right: 10px;
}
.input-part-right__input input {
  margin-left: 34px;
  height: 100%;
  width: 200px;
}
.input-part-right__background {
  position: absolute;
}

.input-part-left {
  margin-right: 80px;
}
.input-part-left__background {
  z-index: -1;
  position: absolute;
  margin-left: -160px;
  margin-top: 40px;
}

.input-part-left__text {
  margin-top: 10px;
}

.person-part-right__img1 {
  transition: all 2.5s ease-in-out;
  margin-top: 100%;
  opacity: 0;
}
.person-part-right__img2 {
  transition: all 2s ease-in-out;
  margin-top: -100%;
  opacity: 0;
}
.person-part-right__img3 {
  transition: all 2.2s ease-in-out;
  margin-top: -100%;
  opacity: 0;
}

.footer {
  padding: 1.25rem 0;
  background: #FFF;
}
.footer__container {
  display: flex;
  align-items: center;
  color: aliceblue;
}
@media (max-width: 510.98px) {
  .footer__container {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-body {
  display: flex;
  flex-direction: column;
}
.footer-body__line {
  width: 100%;
  height: 1px;
  background-color: #E4E4E4;
  margin-bottom: 60px;
}

.footer-body__top {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.footer-left {
  margin-right: auto;
}
.footer-left__title {
  color: #000;
  font-size: 24px;
  margin-bottom: 26px;
}
.footer-left__text {
  width: 270px;
}

.footer-right__list {
  display: flex;
}

.footer-right-item {
  margin-left: 120px;
}
.footer-right-item__title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 24px;
}
.footer-right-item__item {
  color: #000;
  margin-bottom: 10px;
  cursor: pointer;
}
.footer-right-item__item:hover {
  text-decoration: underline;
}

.footer-middle {
  width: 100%;
  margin-top: 20px;
}
.footer-middle__list {
  display: flex;
}
.footer-middle__item {
  margin-right: 16px;
  cursor: pointer;
}

.footer-bottom {
  width: 100%;
  margin-top: 28px;
}
.footer-bottom__line {
  width: 100%;
  height: 1px;
  background-color: #F1F1F1;
}
.footer-bottom__text {
  color: #A4A4A4;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
  margin-top: 16px;
}

/**
* Connection media file
*/
@media (max-width: 860px) {
  .menu__icon {
    z-index: 5;
    position: relative;
    display: block;
    width: 30px;
    height: 18px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #000;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
  }
  .menu__icon::before {
    top: 0;
  }
  .menu__icon::after {
    bottom: 0;
  }
  .menu__icon span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon._active {
    left: 0;
  }
  .menu__icon._active span {
    transform: scale(0) translate(0px, -50%);
  }
  .menu__icon._active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon._active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
  .menu__body {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #F4F9FF;
    transition: all 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body._active {
    left: 0;
  }
  .menu__list {
    display: flex;
    flex-direction: column;
    padding: 25px;
  }
  .menu__item {
    margin: 0;
    margin-bottom: 25px;
    font-size: 24px;
  }
  .header {
    padding-top: 20px;
  }
  .first-part-right {
    display: none;
  }
  .our-client-part-right__list {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .our-client-part-right__item {
    margin-top: 10px;
  }
  .video-part {
    flex-direction: column;
  }
  .video-part__background {
    display: none;
  }
  .video-part-left img {
    width: 100%;
  }
  .input-part-left__background {
    display: none;
  }
  .input-part-right__background {
    display: none;
  }
  .input-part__body {
    flex-direction: column;
  }
  .input-part__left {
    margin-bottom: 20px;
  }
}
@media (max-width: 1140px) {
  .person-part {
    justify-content: start;
  }
  .footer-body__top {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .footer-right-item {
    margin-left: 0px;
    margin-right: 20px;
    margin-top: 20px;
  }
  .info-part {
    display: flex;
    margin-top: 124px;
    flex-direction: column;
    align-items: center;
  }
  .info-part-left {
    margin: 0;
  }
}
@media (max-width: 1060px) {
  .person-part-right {
    display: none;
  }
}
@media (max-width: 928px) {
  .person-part-middle-item {
    width: 100%;
  }
}
@media (max-width: 928px) {
  .person-part {
    flex-direction: column;
  }
}
@media (max-width: 1248px) {
  .video-part__title {
    width: 100%;
  }
  .video-part__text {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .footer-right-item:nth-child(2) {
    display: none;
  }
  .footer-right-item:nth-child(1) {
    display: none;
  }
  .input-part {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .input-part__body {
    border-radius: 0;
  }
  .input-part-right {
    width: 100%;
  }
  .input-part-right__input {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 30px;
  }
  .input-part-right__input button {
    margin-top: 40px;
    width: 100%;
    margin-right: 0;
  }
  .input-part-right__input input {
    margin-left: 0;
    font-size: 24px;
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 380px) {
  .our-client-part-left__text {
    width: 100%;
  }
  .footer-right-item:nth-child(2) {
    display: none;
  }
  .footer-right-item:nth-child(1) {
    display: none;
  }
  .footer-left__text {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .person-part {
    margin-top: 20px;
  }
  .person-part__left img {
    width: 100%;
  }
  .video-part {
    margin-top: 30px;
  }
  .client-part {
    margin-top: 20px;
    text-align: center;
  }
  .info-part {
    margin-top: 20px;
    align-items: start;
  }
  .info-part-right {
    width: 100%;
  }
  .info-part-left {
    width: 100%;
  }
  .first-part-left__title {
    margin-bottom: 40px;
  }
  .first-part-left__text {
    margin-bottom: 33px;
    width: 100%;
  }
  .info-part-right-info {
    width: 100%;
  }
  .info-part-right-info-right-item {
    margin: 0px;
    margin-top: 20px;
    border: none;
    width: 100%;
    border-radius: 0;
    height: auto;
    padding: 20px;
  }
  .info-part-right-info-left-item {
    margin: 0px;
    margin-top: 20px;
    border: none;
    width: 100%;
    border-radius: 0;
    height: auto;
    padding: 20px;
  }
  .info-part-left__title {
    width: 100%;
  }
  .info-part-left__text {
    width: 100%;
  }
  .info-part-left__background {
    display: none;
  }
  .info-part-right__background {
    display: none;
  }
  .info-part-right__background-circle {
    display: none;
  }
}
@media (max-width: 300px) {
  .first-part-left button {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .video-part {
    margin-top: 40px;
  }
  .our-client-part {
    margin-top: 130px;
    display: flex;
    align-items: start;
    flex-direction: column;
  }
  .our-client-part-left {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .our-client-part-right__item {
    margin-right: 0px;
  }
  .input-part-right__input {
    width: 100%;
  }
  .input-part-right__input button {
    margin-right: 10px;
  }
  .input-part-right__input input {
    width: 100%;
  }
  .input-part__body {
    padding: 25px;
  }
  .input-part button {
    padding: 10px;
  }
}
@media (max-width: 700px) {
  .info-part-right-info {
    flex-direction: column;
  }
}