@charset "UTF-8";
/**
 * Добавление font-size в единицах измерения rem на основе переданного значения в px
 */
/**
 * Перевод px в rem
 *
 * Вынесено отдельно потому что иногда нужно просто перевести PX в REM, без добавления font-size
 */
/**
 * Добавление font-size в единицах измерения rem на основе переданного значения в px
 */
/**
 * Перевод px в rem
 *
 * Вынесено отдельно потому что иногда нужно просто перевести PX в REM, без добавления font-size
 */
/**
 * Система базовых отступов слева и справа от границ страницы
 *
 * Пример использования:
 * @include padding-rl;
 */
:root {
  --page-padding-rl: 20px;
}
@media only screen and (min-width: 768px) {
  :root {
    --page-padding-rl: 40px;
  }
}
@media only screen and (min-width: 1176px) {
  :root {
    --page-padding-rl: 56px;
  }
}

/**
 * Добавление font-size в единицах измерения rem на основе переданного значения в px
 */
/**
 * Перевод px в rem
 *
 * Вынесено отдельно потому что иногда нужно просто перевести PX в REM, без добавления font-size
 */
html,
body {
  padding: 0;
  margin: 0;
  font-size: 1rem;
  width: 100%;
}

html {
  min-height: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  height: 100vh;
  /* Chrome + Safari =/- */
  text-rendering: geometricPrecision;
  /* Safari */
  -webkit-font-smoothing: antialiased;
  /* Firefox */
  -moz-osx-font-smoothing: grayscale;
  /* Just in case */
  font-smooth: antialiased;
}
body[data-fixed=true] {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

picture img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

h1 {
  margin: 0;
  font-weight: normal;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  margin: 0;
  padding: 0;
}

p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

button {
  border: none;
  outline: none;
  appearance: none;
  background: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
  color: inherit;
}

svg {
  transition: fill 0.3s;
}

.a-layout {
  min-height: 100%;
  max-width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
}
.a-layout_blue {
  background: #f3fbff;
}

.a-container {
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
@media only screen and (min-width: 768px) {
  .a-container {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 1176px) {
  .a-container {
    max-width: 1288px;
    padding: 0 56px;
  }
}

h1.a-title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  h1.a-title {
    font-size: 2.75rem;
    line-height: 3.25rem;
  }
}
h1.a-title:after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background-color: #01a9c1;
  margin: 20px auto 0;
}
h1.a-title_mobile-left {
  text-align: left;
}
@media only screen and (min-width: 768px) {
  h1.a-title_mobile-left {
    text-align: center;
  }
}
h1.a-title_mobile-left:after {
  margin: 20px 0 0 0;
}
@media only screen and (min-width: 768px) {
  h1.a-title_mobile-left:after {
    margin: 20px auto 0;
  }
}
h1.a-title span {
  color: #01a9c1;
}
h1.a-title--compact {
  max-width: 880px;
  margin: 0 auto;
}

/**
 * Добавление font-size в единицах измерения rem на основе переданного значения в px
 */
/**
 * Перевод px в rem
 *
 * Вынесено отдельно потому что иногда нужно просто перевести PX в REM, без добавления font-size
 */
.a-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  min-height: 56px;
  transition: all 0.1s ease-in-out;
  border-radius: 32px;
  background: #01a9c1;
  line-height: 125%;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  border: solid 2px #01a9c1;
  font-size: 1rem;
}
.a-button:hover {
  background: #ffffff;
  border-color: #019ab8;
  color: #000000;
  border: solid 2px #01a9c1;
}
.a-button_border {
  outline: solid 2px #01a9c1;
  outline-offset: -2px;
  background: transparent;
  color: #000000;
}
.a-button_border:hover {
  background: #019ab8;
  border-color: #019ab8;
  color: white;
  outline: solid 2px #01a9c1;
}

.a-header {
  padding-top: 40px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .a-header {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .a-header {
    padding-bottom: 80px;
    padding-top: 100px;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1176px) {
  .a-header {
    padding-bottom: 120px;
  }
}
.a-header__wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "content" "img";
  align-items: center;
  transition: all 0.3s ease-in-out;
  width: auto;
  grid-gap: 100px;
}
@media only screen and (min-width: 768px) {
  .a-header__wrap {
    grid-template-columns: 1fr minmax(max-content, 487.76px, 2) minmax(max-content, 487.76px) 1fr;
    grid-template-areas: ". content img img";
    grid-gap: 40px;
  }
}
@media only screen and (min-width: 1176px) {
  .a-header__wrap {
    grid-template-columns: 1fr minmax(max-content, 448px) minmax(max-content, 672px) 1fr;
    grid-gap: 56px;
  }
}
.a-header__header {
  line-height: 140%;
  font-weight: 700;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .a-header__header {
    line-height: 130%;
    font-size: 2.75rem;
  }
}
@media only screen and (min-width: 1176px) {
  .a-header__header {
    line-height: 120%;
    font-size: 3.3125rem;
  }
}
.a-header__label {
  line-height: 140%;
  letter-spacing: 0.1875rem;
  font-weight: 600;
  transform: translateX(5px);
  font-size: 1rem;
}
.a-header__content {
  grid-area: content;
}
@media only screen and (min-width: 1176px) {
  .a-header__content {
    transform: translateY(-42px);
  }
}
.a-header__image {
  grid-area: img;
}
.a-header__image img {
  box-shadow: 0 50px 100px -40px rgba(8, 28, 31, 0.3);
}
@media only screen and (max-width: 767px) {
  .a-header__image img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .a-header__image img {
    max-height: 700px;
  }
}
.a-header__lounch {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
  transform: translateX(-5px);
}
@media only screen and (min-width: 768px) {
  .a-header__lounch {
    margin-top: 40px;
  }
}
.a-header__lounch-info {
  line-height: 160%;
  font-size: 0.875rem;
}
.a-header__info {
  margin-top: 40px;
  max-width: 320px;
}
@media only screen and (min-width: 768px) {
  .a-header__info {
    margin-top: 100px;
  }
}
.a-header__warning {
  display: flex;
  gap: 12px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.a-header__hardware-info {
  opacity: 0.7;
  margin-top: 8px;
  font-size: 0.8125rem;
}
.a-header .a-button {
  gap: 30px;
  padding: 0 50px 0 12px;
}

.a-enterprise-stand {
  padding-right: var(--page-padding-rl);
  padding-left: var(--page-padding-rl);
}
.a-enterprise-stand__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1176px;
  width: 100%;
  margin: 0 auto;
  background: no-repeat left center/cover url("../images/enterprise-stand_left-part.svg") white;
  padding: 40px;
  min-height: 320px;
  box-shadow: 0 0 40px 0 rgba(12, 154, 180, 0.24);
}
@media only screen and (min-width: 768px) {
  .a-enterprise-stand__wrap {
    background: no-repeat right center/cover url("../images/enterprise-stand_right-part-mobile.svg"), no-repeat left center/cover url("../images/enterprise-stand_left-part.svg") white;
  }
}
@media only screen and (min-width: 1176px) {
  .a-enterprise-stand__wrap {
    background: no-repeat right center/cover url("../images/enterprise-stand_right-part.svg"), no-repeat left center/cover url("../images/enterprise-stand_left-part.svg") white;
  }
}
.a-enterprise-stand__hardware-info {
  opacity: 0.7;
  margin-top: 8px;
  font-size: 0.8125rem;
}
.a-enterprise-stand__title {
  line-height: 120%;
  font-weight: 600;
  font-size: 1.5rem;
}
@media (min-width: 767px) {
  .a-enterprise-stand__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1176px) {
  .a-enterprise-stand__title {
    font-size: 2rem;
  }
}
.a-enterprise-stand__btn {
  min-width: 160px;
  box-sizing: border-box;
}

.a-footer {
  margin-top: 60px;
}
@media only screen and (min-width: 768px) {
  .a-footer {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 1176px) {
  .a-footer {
    margin-top: 120px;
  }
}