@charset "UTF-8";
/**
* Connection of fonts locally from the "./src/fonts" folder
*/
@font-face {
  font-family: Montserrat-Bold;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Montserrat400;
  font-display: swap;
  src: url("../fonts/Montserrat-VariableFont_wght.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-VariableFont_wght.woff2") format("woff2");
  font-weight: 300;
  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: 12px;
  font-family: "", Montserrat;
  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: 105.75rem;
  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;
}

.body {
  background-color: #302C42;
}

.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-button {
  height: auto;
  min-height: 48px;
  border-radius: 40px;
  background: linear-gradient(90deg, #8176AF 0%, #C0B7E8 100%);
  color: #343045;
  font-family: Montserrat400;
  transition: all 0.6s ease;
}
.simple-button:hover {
  border: 2px solid #FFF;
  background: transparent;
  color: #FFF;
}

.bold-text {
  color: #FFF;
  font-size: 40px;
  font-family: Montserrat-Bold;
}

.doble-title__title {
  font-family: Montserrat-Bold;
  color: #FFF;
  font-size: 36px;
  margin-bottom: 5px;
}
.doble-title__text {
  font-family: Montserrat;
  color: #FFF;
  font-size: 36px;
}

.simple400-text {
  color: #FFF;
  font-size: 16px;
  font-family: Montserrat400;
}

.simple-text {
  color: #FFF;
  font-size: 16px;
  font-family: Montserrat;
  line-height: 20px;
}

@media (max-width: 318px) {
  .simple-text {
    font-size: 24px;
  }
  .simple-button {
    font-size: 24px;
  }
  .doble-title {
    font-size: 36px;
  }
  .doble-title__title {
    font-size: 30px;
  }
}
.info-part {
  margin-top: 98px;
  display: flex;
}

.info-part-left {
  display: flex;
  flex-direction: column;
}
.info-part-left__bottom {
  display: flex;
  width: auto;
}
.info-part-left__right {
  display: flex;
  align-self: center;
  justify-content: center;
}
.info-part-left__text {
  margin-right: 30px;
}

.info-part-right {
  margin-left: auto;
  display: flex;
  align-self: center;
}
.info-part-right__text {
  width: 652px;
}

@media (max-width: 548px) {
  .info-part-right {
    display: none;
  }
  .info-part-left__right {
    width: 100%;
  }
  .doble-title__title {
    text-align: center;
  }
  .doble-title__text {
    text-align: center;
    margin: 0;
    margin-top: 16px;
  }
}
/**
* Connection of styles of individual blocks and sections
*/
.header {
  width: 100%;
  position: fixed;
  transition: all 0.3s ease-in-out;
  z-index: 50;
  background-color: transparent;
  margin-top: 50px;
}
.header__container {
  height: 6.25rem;
  display: flex;
  align-items: center;
  height: 103px;
  justify-content: space-between;
}
.header-is-sticky .header__container {
  height: 3.125rem;
}
.header img:nth-child(1) {
  height: 100%;
}

.header-buttons__button-left {
  border-radius: 40px;
  border: 2px solid #FFF;
  width: 154px;
  height: 48px;
  background-color: transparent;
  color: #FFF;
  font-family: Montserrat400;
  transition: all 0.6s ease;
}
.header-buttons__button-left:hover {
  background: linear-gradient(90deg, #8176AF 0%, #C0B7E8 100%);
  color: #343045;
  border: none;
}
.header-buttons__button-right {
  margin-left: 38px;
  width: 155px;
  height: 48px;
}

.menu {
  margin-left: 70px;
}
.menu__list {
  display: flex;
}
.menu__item {
  margin-left: 42px;
  color: #FFF;
}

.header__logo {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px;
}
.header__logo img:nth-child(1) {
  margin-right: 15px;
}

.first-page {
  widows: 100%;
}
.first-page__body {
  margin-top: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.first-page__left {
  z-index: 1;
}
.first-page__title {
  width: 456px;
  margin-bottom: 36px;
}
.first-page__text {
  width: 450px;
  text-align: start;
  margin-bottom: 40px;
}
.first-page__button {
  display: flex;
  align-items: center;
}
.first-page__button button {
  width: 214px;
  margin-right: 11px;
}
.first-page__right {
  z-index: 1;
}
.first-page__background {
  z-index: 1;
  position: absolute;
  display: flex;
}
.first-page .purple {
  color: #8176AF;
}
.first-page .arrow {
  cursor: pointer;
}

.first-page-background {
  z-index: -1;
}
.first-page-background__left {
  margin-top: 220px;
  margin-left: -100px;
}
.first-page-background__right {
  margin-left: 400px;
}

.contant-page {
  z-index: 2;
  margin-top: 88px;
}
.contant-page__body {
  border-radius: 90px;
  background: radial-gradient(2900.76% 50.13% at 50% 53.89%, rgba(58, 52, 86, 0.95) 0%, #211E2E 100%);
  box-shadow: 0px 4px 4px 0px rgba(192, 183, 232, 0.01);
  width: 100%;
  height: 167px;
}
.contant-page__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 49px 39px 49px 39px;
}
.contant-page__item {
  display: flex;
  align-items: center;
  height: 100%;
}
.contant-page__item:nth-child(3) {
  border-left: solid 1px #4A3C59;
  border-right: solid 1px #4A3C59;
  padding-left: 50px;
  padding-right: 50px;
}
.contant-page__title {
  margin-bottom: 10px;
}
.contant-page__icon {
  margin-right: 10px;
}
.contant-page-button-left {
  display: none;
}
.contant-page-button-right {
  display: none;
}

.HYDRAVR-part {
  margin-top: 100px;
  display: flex;
  align-items: center;
  width: 100%;
}
.HYDRAVR-part__left {
  transition: all 2s ease;
  opacity: 0;
  margin-right: 200%;
  margin-left: -100%;
}
.HYDRAVR-part__right {
  margin-left: auto;
}
.HYDRAVR-part__text {
  width: 630px;
  margin: 42px 0px 28px 0px;
}
.HYDRAVR-part__button {
  width: 214px;
}
.HYDRAVR-part__background {
  z-index: -1;
  position: absolute;
}
.HYDRAVR-part__background img {
  position: relative;
}

.cards-part {
  margin-top: 100px;
}
.cards-part__list {
  transition: all 2s ease;
  display: flex;
  margin-top: 100%;
  opacity: 0;
}
.cards-part__background {
  z-index: -1;
  position: absolute;
}
.cards-part__background img {
  margin-left: -100px;
}
.cards-part__button-left {
  display: none;
}
.cards-part__button-right {
  display: none;
}

.cards-part-item {
  padding: 32px 35px 0px 35px;
  width: 310px;
  display: flex;
  transition: all 1s ease;
  align-items: center;
  font-size: 24px;
  flex-direction: column;
  height: 510px;
  border-radius: 40px;
  background: radial-gradient(50% 50% at 50% 50%, #433D60 0%, #211E2E 100%);
  margin-right: 10px;
}
.cards-part-item:hover {
  margin-top: -50px;
}
.cards-part-item:nth-child(5) {
  margin-right: 0;
}
.cards-part-item__title {
  font-size: 24px;
  font-family: Montserrat-Bold;
  color: #FFF;
  margin-top: 20px;
}
.cards-part-item__text {
  font-size: 12px;
  font-family: Montserrat;
  color: #FFF;
  margin-bottom: 35px;
  line-height: 20px;
}
.cards-part-item__button button {
  width: 154px;
}
.cards-part-item__line {
  margin: 5px 0px 0px 0px;
}

.tech-part {
  margin-top: 100px;
}
.tech-part__content {
  width: 100%;
  height: 310px;
  display: flex;
  flex-direction: column;
  align-self: center;
  background-color: #211E2E;
  border-radius: 90px;
  justify-content: center;
  text-align: center;
}
.tech-part__button {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.tech-part__title {
  margin-top: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logo-part {
  margin-top: 100px;
}
.logo-part__list {
  transition: all 2s ease;
  display: flex;
  opacity: 0;
  align-self: center;
  justify-content: center;
  margin-left: -100%;
}
.logo-part__item {
  display: flex;
  align-self: center;
  justify-content: center;
  margin-right: 90px;
}
.logo-part__item:nth-child(4) {
  margin: 0;
}
.logo-part__button-left {
  display: none;
}
.logo-part__button-right {
  display: none;
}

.process-part {
  margin-top: 100px;
}
.process-part__background {
  z-index: -1;
  position: absolute;
}
.process-part__background img {
  margin-left: -100px;
}
.process-part__list {
  display: flex;
  justify-content: space-around;
}
.process-part__button-left {
  display: none;
}
.process-part__button-right {
  display: none;
}

.process-part-item__title {
  margin-top: 27px;
  display: flex;
  color: #FFF;
  font-family: Montserrat;
  font-size: 24px;
}
.process-part-item__text {
  width: 185px;
}

.contact-part {
  margin-top: 100px;
  padding: 110px;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: radial-gradient(50% 50% at 50% 50%, #403A5F 0%, #211E2E 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.contact-part img {
  margin: 20px 0px 20px 0px;
}
.contact-part__button button {
  width: 214px;
}

.contact-part-inputs {
  margin-top: 65px;
}
.contact-part-inputs input {
  border-radius: 40px;
  border: 2px solid #FFF;
  background-color: transparent;
  color: #fff;
  margin-bottom: 39px;
  width: 100%;
  padding: 28px 42px 28px 42px;
}
.contact-part-inputs__doble {
  display: flex;
}
.contact-part-inputs__left {
  margin-right: 10px;
}
.contact-part-inputs__big-input input {
  height: 200px;
}

.footer-body-top {
  margin-bottom: 72px;
}
.footer-body-top__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-body-top-item {
  display: flex;
  flex-direction: column;
  margin-left: 81px;
  margin-right: 20px;
}
.footer-body-top-item__item {
  margin-top: 40px;
}
.footer-body-top-item__item:nth-child(1) {
  margin-top: 0;
}
.footer-body-top-item__button button {
  width: 214px;
}
.footer-body-top-item:nth-child(1) {
  margin-left: 0px;
}
.footer-body-top-item:nth-child(2) {
  margin-right: 0px;
}

.footer-body-top-item-icons {
  margin-top: 39px;
  margin-bottom: 49px;
}
.footer-body-top-item-icons__list {
  display: flex;
}
.footer-body-top-item-icons__item {
  margin-left: 20px;
}
.footer-body-top-item-icons__item:nth-child(1) {
  margin-left: 0;
}

.footer-body-bottom {
  text-align: center;
  padding: 59px;
}

.footer-body {
  margin-top: 50px;
  height: auto;
}
.footer-body__background {
  z-index: -1;
  position: relative;
}
.footer-body__background img {
  position: absolute;
  margin-top: -328px;
  margin-left: -300px;
}

.line2 {
  width: 100%;
}

/**
* Connection media file
*/
@media (max-width: 1100px) {
  .header__buttons {
    display: none;
  }
  .menu {
    margin-left: 0px;
    margin-right: 30px;
  }
  .info-part-right__text {
    width: 100%;
  }
  .process-part__list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .process-part__item {
    margin: 20px;
  }
}
@media (max-width: 1024px) {
  .line {
    display: none;
  }
  .footer-body-top-item {
    margin-left: 0;
  }
  .footer-body-top-item:nth-child(1) {
    display: none;
  }
  .first-page__body {
    flex-direction: column-reverse;
  }
  .first-page__left {
    margin-top: 20px;
  }
}
@media (max-width: 348px) {
  .contant-page {
    display: none;
  }
}
@media (max-width: 548px) {
  .contact-part img {
    display: none;
  }
  .process-part__background {
    display: none;
  }
  .first-page-background__right {
    margin-left: -300px;
  }
  .first-page-background__left {
    display: none;
  }
  .HYDRAVR-part__left img {
    width: 100%;
  }
  .HYDRAVR-part__title {
    display: none;
  }
  .HYDRAVR-part__background {
    display: none;
  }
  .cards-part__background {
    display: none;
  }
  .contant-page__item {
    flex-direction: column;
  }
  .contant-page__list {
    padding: 0;
    margin: 0 20px 0 20px;
  }
  .contant-page__body {
    display: flex;
    align-items: center;
  }
  .contant-page__icon {
    margin-bottom: 10px;
  }
  .contant-page__title {
    display: none;
  }
  .first-page__body {
    margin-top: 54px;
  }
  .first-page__left {
    margin-top: 40px;
    width: 100%;
  }
  .first-page__button {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .first-page__button button {
    width: 100%;
  }
  .first-page__button img {
    display: none;
  }
  .first-page__title {
    text-align: center;
    width: 100%;
    line-height: 60px;
  }
  .first-page__text {
    display: none;
  }
  .first-page__right {
    width: 100%;
  }
  .first-page__right img {
    width: 100%;
  }
  .footer-body-top__list {
    flex-direction: column;
    align-items: center;
  }
  .footer-body-top-item {
    width: 100%;
    margin-right: 0px;
    margin-top: 40px;
  }
  .footer-body-top-item {
    width: auto;
    text-align: center;
  }
  .footer-body-top-item__button button {
    width: 100%;
  }
  .footer-body-top-item:nth-child(1) {
    display: block;
  }
  .footer-body-top-item:nth-child(3) {
    display: none;
  }
  .footer-body-top-item:nth-child(5) {
    display: none;
  }
  .footer-body__top {
    margin-bottom: 20px;
  }
  .footer-body-bottom {
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 318px) {
  .footer-body-top-item-icons__list {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer-body-top-item-icons__item {
    margin: 10px;
  }
}
@media (max-width: 1000px) {
  .contant-page__icon {
    margin: 0;
    display: flex;
    justify-content: center;
  }
  .contant-page__title {
    text-align: center;
  }
  .contant-page__list {
    width: 100%;
    justify-content: space-between;
  }
  .contant-page__item {
    display: none;
    opacity: 0;
    transition: all 1s ease;
  }
  .contant-page__item._active-item {
    display: block;
  }
  .contant-page__item._active-effect {
    opacity: 1;
  }
  .contant-page__item:nth-child(3) {
    border: none;
    padding: 0;
  }
  .contant-page-button-left {
    display: block;
  }
  .contant-page-button-right {
    display: block;
  }
  .contant-page__body {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 1220px) {
  .HYDRAVR-part__text {
    width: 100%;
  }
  .logo-part__list {
    flex-wrap: wrap;
  }
  .logo-part__item {
    margin: 20px;
  }
  .cards-part__list {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .cards-part-item {
    margin: 10px;
  }
}
@media (max-width: 840px) {
  .HYDRAVR-part {
    flex-direction: column;
  }
  .HYDRAVR-part__left {
    margin-right: 0;
  }
  .HYDRAVR-part__right {
    margin-left: 0;
  }
  .HYDRAVR-part__button {
    width: 100%;
  }
}
@media (max-width: 685px) {
  .contact-part {
    padding: 20px;
  }
  .process-part__button-left {
    display: flex;
    align-items: center;
  }
  .process-part__button-right {
    display: flex;
    align-items: center;
  }
  .process-part__list {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .process-part__item {
    transition: all 1s ease;
    margin: 0;
    opacity: 0;
    display: none;
  }
  .process-part__item._active-item {
    display: flex;
  }
  .process-part__item._active-effect {
    opacity: 1;
  }
  .process-part-item {
    flex-direction: column;
  }
  .process-part-item__title {
    margin-top: 27px;
    display: flex;
    text-align: center;
    color: #FFF;
    font-family: Montserrat;
    font-size: 24px;
  }
  .process-part-item__title img {
    display: none;
  }
  .process-part-item__text {
    width: 185px;
  }
  .logo-part__button-left {
    display: flex;
    align-items: center;
  }
  .logo-part__button-right {
    display: flex;
    align-items: center;
  }
  .logo-part__list {
    height: 265px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .logo-part__item {
    display: none;
    opacity: 0;
    margin: 0;
    transition: all 1s ease;
  }
  .logo-part__item img {
    width: 100%;
  }
  .logo-part__item._active-item {
    display: flex;
  }
  .logo-part__item._active-effect {
    opacity: 1;
  }
  .cards-part__list {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  .cards-part__button-left {
    display: block;
  }
  .cards-part__button-right {
    display: block;
  }
  .cards-part-item {
    opacity: 0;
    display: none;
    transition: all 1s ease;
  }
  .cards-part-item._active-item {
    display: flex;
  }
  .cards-part-item._active-effect {
    opacity: 1;
  }
  .info-part-left__text {
    margin-bottom: 10px;
  }
  .info-part-left__left {
    display: none;
  }
  .info-part {
    flex-direction: column;
  }
  .menu {
    margin: 0;
  }
  .menu__icon {
    z-index: 5;
    position: relative;
    width: 33px;
    height: 26px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: linear-gradient(90deg, #8176AF 0%, #C0B7E8 100%);
    border-radius: 30px;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
  }
  .menu__icon::before {
    top: 0;
    height: 3.714px;
  }
  .menu__icon::after {
    bottom: 0;
    height: 3.714px;
  }
  .menu__icon span {
    height: 3.714px;
    width: 20px;
    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: 0px;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #302C42;
    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: 0;
  }
  .header__container {
    height: 59px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header__logo {
    height: 100%;
  }
}
@media (max-width: 400px) {
  .cards-part-item {
    width: 100%;
  }
  .cards-part-item__img img {
    width: 100%;
  }
  .contact-part {
    border-radius: 50px;
  }
  .contact-part-inputs__doble {
    transform: translate();
    flex-direction: column;
  }
}