@charset "UTF-8";
/* Reset and base styles  */
* {
  margin: 0;
  padding: 0;
  border: none;
}

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

/* Links */
a {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li,
ol {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button,
input[type=submit] {
  cursor: pointer;
  display: inline-block;
  background: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --base-bg-color: #F3F4FB;
  --base-font-color: 343949;
  --link-color: var(--neutral-900);
}

:root {
  --container-width: 1400px;
  --gutter: 40px;
  --columns: 12;
  --breakpoint-xl: 1400px;
  --breakpoint-lg: 1200px;
  --breakpoint-md: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 576px;
  --base-font-size: 16px;
  --font-regular: "PTAstraFact-Regular", "PT Astra Fact", sans-serif;
  --font-bold: "PTAstraFact-Bold", "PT Astra Fact", sans-serif;
}

@font-face {
  font-family: "PT Astra Fact";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PTAstraFact-Bold.ttf") format("ttf");
}
@font-face {
  font-family: "PT Astra Fact";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PTAstraFact-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "PTAstraFact-Bold";
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PTAstraFact-Bold.ttf") format("ttf");
}
@font-face {
  font-family: "PTAstraFact-Regular";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PTAstraFact-Regular.ttf") format("ttf");
}
.grid-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.grid-row {
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  gap: var(--gutter);
  margin-bottom: calc(var(--gutter) * 2);
}

.grid-col-1 {
  grid-column: span 1;
}

.grid-col-2 {
  grid-column: span 2;
}

.grid-col-3 {
  grid-column: span 3;
}

.grid-col-4 {
  grid-column: span 4;
}

.grid-col-5 {
  grid-column: span 5;
}

.grid-col-6 {
  grid-column: span 6;
}

.grid-col-7 {
  grid-column: span 7;
}

.grid-col-8 {
  grid-column: span 8;
}

.grid-col-9 {
  grid-column: span 9;
}

.grid-col-10 {
  grid-column: span 10;
}

.grid-col-11 {
  grid-column: span 11;
}

.grid-col-12 {
  grid-column: span 12;
}

@media (min-width: 1400px) {
  .grid-col-xl-1 {
    grid-column: span 1;
  }
  .grid-col-xl-2 {
    grid-column: span 2;
  }
  .grid-col-xl-3 {
    grid-column: span 3;
  }
  .grid-col-xl-4 {
    grid-column: span 4;
  }
  .grid-col-xl-5 {
    grid-column: span 5;
  }
  .grid-col-xl-6 {
    grid-column: span 6;
  }
  .grid-col-xl-7 {
    grid-column: span 7;
  }
  .grid-col-xl-8 {
    grid-column: span 8;
  }
  .grid-col-xl-9 {
    grid-column: span 9;
  }
  .grid-col-xl-10 {
    grid-column: span 10;
  }
  .grid-col-xl-11 {
    grid-column: span 11;
  }
  .grid-col-xl-12 {
    grid-column: span 12;
  }
}
@media (max-width: 1399px) {
  .grid-container {
    max-width: 1140px;
  }
  .grid-col-lg-1 {
    grid-column: span 1;
  }
  .grid-col-lg-2 {
    grid-column: span 2;
  }
  .grid-col-lg-3 {
    grid-column: span 3;
  }
  .grid-col-lg-4 {
    grid-column: span 4;
  }
  .grid-col-lg-5 {
    grid-column: span 5;
  }
  .grid-col-lg-6 {
    grid-column: span 6;
  }
  .grid-col-lg-7 {
    grid-column: span 7;
  }
  .grid-col-lg-8 {
    grid-column: span 8;
  }
  .grid-col-lg-9 {
    grid-column: span 9;
  }
  .grid-col-lg-10 {
    grid-column: span 10;
  }
  .grid-col-lg-11 {
    grid-column: span 11;
  }
  .grid-col-lg-12 {
    grid-column: span 12;
  }
}
@media (max-width: 1199px) {
  .grid-container {
    max-width: 960px;
  }
  .grid-col-md-1 {
    grid-column: span 1;
  }
  .grid-col-md-2 {
    grid-column: span 2;
  }
  .grid-col-md-3 {
    grid-column: span 3;
  }
  .grid-col-md-4 {
    grid-column: span 4;
  }
  .grid-col-md-5 {
    grid-column: span 5;
  }
  .grid-col-md-6 {
    grid-column: span 6;
  }
  .grid-col-md-7 {
    grid-column: span 7;
  }
  .grid-col-md-8 {
    grid-column: span 8;
  }
  .grid-col-md-9 {
    grid-column: span 9;
  }
  .grid-col-md-10 {
    grid-column: span 10;
  }
  .grid-col-md-11 {
    grid-column: span 11;
  }
  .grid-col-md-12 {
    grid-column: span 12;
  }
}
@media (max-width: 991px) {
  .grid-container {
    max-width: 720px;
  }
  .grid-row {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-col-sm-1 {
    grid-column: span 1;
  }
  .grid-col-sm-2 {
    grid-column: span 2;
  }
  .grid-col-sm-3 {
    grid-column: span 3;
  }
  .grid-col-sm-4 {
    grid-column: span 4;
  }
  .grid-col-sm-5 {
    grid-column: span 5;
  }
  .grid-col-sm-6 {
    grid-column: span 6;
  }
  .grid-col-sm-7 {
    grid-column: span 6;
  }
  .grid-col-sm-8 {
    grid-column: span 6;
  }
  .grid-col-sm-9 {
    grid-column: span 6;
  }
  .grid-col-sm-10 {
    grid-column: span 6;
  }
  .grid-col-sm-11 {
    grid-column: span 6;
  }
  .grid-col-sm-12 {
    grid-column: span 6;
  }
}
@media (max-width: 767px) {
  .grid-container {
    max-width: 540px;
    padding: 0 15px;
  }
  .grid-row {
    grid-template-columns: 1fr;
    gap: calc(var(--gutter) * 1.5);
  }
  .grid-col-xs-1 {
    grid-column: 1;
  }
  .grid-col-xs-2 {
    grid-column: 1;
  }
  .grid-col-xs-3 {
    grid-column: 1;
  }
  .grid-col-xs-4 {
    grid-column: 1;
  }
  .grid-col-xs-5 {
    grid-column: 1;
  }
  .grid-col-xs-6 {
    grid-column: 1;
  }
  .grid-col-xs-7 {
    grid-column: 1;
  }
  .grid-col-xs-8 {
    grid-column: 1;
  }
  .grid-col-xs-9 {
    grid-column: 1;
  }
  .grid-col-xs-10 {
    grid-column: 1;
  }
  .grid-col-xs-11 {
    grid-column: 1;
  }
  .grid-col-xs-12 {
    grid-column: 1;
  }
}
@media (max-width: 575px) {
  .grid-container {
    max-width: 100%;
    padding: 0 10px;
  }
}
.grid-col-full {
  grid-column: 1/-1;
}

.grid-col-auto {
  grid-column: auto;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-slim {
  max-width: calc(var(--container-width) - 230px);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}

[class*=col-] {
  padding: 0 var(--gutter);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (max-width: 1399px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .col-sm-1 {
    width: 16.6666666667%;
  }
  .col-sm-2 {
    width: 33.3333333333%;
  }
  .col-sm-3 {
    width: 50%;
  }
  .col-sm-4 {
    width: 66.6666666667%;
  }
  .col-sm-5 {
    width: 83.3333333333%;
  }
  .col-sm-6 {
    width: 100%;
  }
  .col-sm-7 {
    width: 116.6666666667%;
  }
  .col-sm-8 {
    width: 133.3333333333%;
  }
  .col-sm-9 {
    width: 150%;
  }
  .col-sm-10 {
    width: 166.6666666667%;
  }
  .col-sm-11 {
    width: 183.3333333333%;
  }
  .col-sm-12 {
    width: 200%;
  }
}
@media (max-width: 767px) {
  .col-xs-1 {
    width: 100%;
  }
  .col-xs-2 {
    width: 100%;
  }
  .col-xs-3 {
    width: 100%;
  }
  .col-xs-4 {
    width: 100%;
  }
  .col-xs-5 {
    width: 100%;
  }
  .col-xs-6 {
    width: 100%;
  }
  .col-xs-7 {
    width: 100%;
  }
  .col-xs-8 {
    width: 100%;
  }
  .col-xs-9 {
    width: 100%;
  }
  .col-xs-10 {
    width: 100%;
  }
  .col-xs-11 {
    width: 100%;
  }
  .col-xs-12 {
    width: 100%;
  }
}
.no-gutter {
  gap: 0;
}

.gutter-sm {
  gap: calc(var(--gutter) / 2);
}

.gutter-lg {
  gap: calc(var(--gutter) * 2);
}

.row-center {
  justify-items: center;
}

.row-start {
  justify-items: start;
}

.row-end {
  justify-items: end;
}

.button-blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 14px 10px 16px;
  gap: 16px;
  min-width: 120px;
  height: 42px;
  min-height: 40px;
  background: #0280FD;
  border-radius: 10px;
}
.button-blue span {
  font-family: var(--font-bold);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
}
.button-blue img {
  width: 16px;
  height: 16px;
}
.button-blue:hover, .button-blue:focus, .button-blue:active {
  background-color: #54A5FA;
}

.big-button-blue {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 24px;
  gap: 20px;
  min-width: 120px;
  min-height: 40px;
  background: #0280FD;
  border-radius: 10px;
}
.big-button-blue div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.big-button-blue span {
  font-family: var(--font-bold);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
}
.big-button-blue span:last-child {
  font-family: var(--font-reqular);
  font-weight: 400;
}
.big-button-blue img {
  width: 24px;
  height: 24px;
}
.big-button-blue:hover, .big-button-blue:focus, .big-button-blue:active {
  background-color: #54A5FA;
}

header .container {
  padding-top: 16px;
  position: relative;
  min-height: 620px;
  background: transparent url("/local/templates/astra-automation-2/img/header_background.png") no-repeat center center;
  background-size: cover;
  border-radius: 0 0 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
header .container .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
header .header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 24px;
  gap: 120px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 27, 54, 0.2);
          box-shadow: 0px 4px 20px rgba(0, 27, 54, 0.2);
  border-radius: 12px;
}
header .header__menu {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header__menu .header__logo-link {
  display: none;
}
header .header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px;
  gap: 8px;
  margin: 0 auto;
  height: 66px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -webkit-box-flex: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .header__menu-item {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  text-align: center;
  color: #151926;
}
header .header__menu-item a {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #151926;
}
header .header__menu-item:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 60px;
}
header .header__menu-item:last-child a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 14px 10px 16px;
  gap: 16px;
  min-width: 120px;
  height: 42px;
  min-height: 40px;
  background: #0280FD;
  border-radius: 10px;
}
header .header__menu-item:last-child a span {
  font-family: var(--font-bold);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
}
header .header__menu-item:last-child a img {
  width: 16px;
  height: 16px;
}
header .header__menu-item:last-child a:hover, header .header__menu-item:last-child a:focus, header .header__menu-item:last-child a:active {
  background-color: #54A5FA;
}
header .header__burger-icon {
  display: none;
  width: 26px;
  height: 18px;
  position: relative;
  z-index: 50;
  cursor: pointer;
  float: right;
}
header .header__burger-icon span {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #0180fd;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
header .header__burger-icon span:first-child {
  top: 0;
}
header .header__burger-icon span:last-child {
  top: auto;
  bottom: 0;
}
header .header__burger-icon.active span {
  background-color: #fff;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
header .header__burger-icon.active span:first-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: calc(50% - 1px);
}
header .header__burger-icon.active span:last-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: calc(50% - 1px);
}
header .h1 {
  font-family: var(--font-bold);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #FFFFFF;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  -ms-flex-positive: 0;
      flex-grow: 0;
}
header .header__desc {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #FFFFFF;
  margin-top: 16px;
  margin-bottom: 40px;
}
/*адаптив header*/
@media (max-width: 1200px) {
  header .header__burger-icon {
    display: block;
  }
  header .container {
    padding-top: 0;
  }
  header .header__wrap {
    border-radius: 0 0 12px 12px;
    padding: 14px 24px;
  }
  header .header__menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    background-color: rgba(255, 255, 255, 0.2);
    overflow: auto;
    margin: 0;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    flex-direction: column;
    height: 100%;
    padding: 5vh;
  }
  header .header__menu {
    position: absolute;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }
  header .header__menu.active {
    left: 0;
    margin-top: 0;
    margin-right: 0;
    z-index: 10;
  }
  header .header__menu-item {
    font-family: var(--font-regular);
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 200%;
    text-align: center;
    color: #fff;
  }
  header .header__menu-item:first-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .header__menu-item:last-of-type {
    width: 95%;
    height: 50px;
    margin-left: 0;
  }
}
#footer {
  width: 100%;
  background-color: var(--font-color-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}
#footer .container {
  width: 100%;
}
#footer .copyright {
  font-family: var(--font-regular);
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #343949;
}
#footer .footer_menu {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid #D1D7E6;
}
#footer .footer_menu__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#footer .footer_menu__logo .copyright {
  display: none;
}
#footer .footer_menu__logo img {
  margin-bottom: 52px;
  width: 205px;
  height: 40px;
}
#footer .footer_menu__logo .footer-btn {
  width: 228px;
  height: 42px;
  padding: 10px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #0280FD;
  border-radius: 10px;
  font-family: var(--font-bold);
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  color: #FFF;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#footer .footer_menu__logo .footer-btn svg clipPath {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#footer .footer_menu__logo .footer-btn:hover, #footer .footer_menu__logo .footer-btn:focus, #footer .footer_menu__logo .footer-btn:active {
  background-color: #54A5FA;
}
#footer .footer_menu__logo .footer-btn:hover svg clipPath, #footer .footer_menu__logo .footer-btn:focus svg clipPath, #footer .footer_menu__logo .footer-btn:active svg clipPath {
  fill: #54A5FA;
}
#footer .footer_menu__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 136px;
}
#footer .footer_menu__contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#footer .footer_menu__contacts-item a {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #202432;
  margin-bottom: 20px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#footer .footer_menu__contacts-item a:hover, #footer .footer_menu__contacts-item a:focus, #footer .footer_menu__contacts-item a:active {
  color: #0280FD;
}
#footer .footer_menu__contacts-item:last-of-type {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#footer .footer_menu__contacts-item:last-of-type .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  gap: 12px;
}
#footer .footer_menu__contacts-item:last-of-type .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2px;
}
#footer .footer_menu__contacts-item:last-of-type #vk {
  display: block;
  width: 44px;
  height: 44px;
  background-color: #202432;
  border-radius: 16px;
  background-image: url("/local/templates/astra-automation-2/img/vk.svg");
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  margin-bottom: 0;
}
#footer .footer_menu__contacts-item:last-of-type #vk:hover, #footer .footer_menu__contacts-item:last-of-type #vk:focus, #footer .footer_menu__contacts-item:last-of-type #vk:active {
  background-color: #0280FD;
}
#footer .footer_menu__contacts-item:last-of-type a#tg {
  display: block;
  width: 44px;
  height: 44px;
  background-color: #202432;
  border-radius: 16px;
  background-image: url("/local/templates/astra-automation-2/img/tg.svg");
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  margin-bottom: 0;
}
#footer .footer_menu__contacts-item:last-of-type a#tg:hover, #footer .footer_menu__contacts-item:last-of-type a#tg:focus, #footer .footer_menu__contacts-item:last-of-type a#tg:active {
  background-color: #0280FD;
}
#footer .footer_menu__contacts-item:last-of-type #phone {
  font-family: var(--font-regular);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #151926;
  margin-bottom: 2px;
}
#footer .footer_menu__contacts-item:last-of-type #mail {
  font-family: var(--font-bold);
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  color: #0280FD;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#footer .footer_menu__contacts-item:last-of-type #mail svg {
  margin-left: 7px;
}
#footer .footer_menu__contacts-item:last-of-type #mail svg path {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#footer .footer_menu__contacts-item:last-of-type #mail:hover, #footer .footer_menu__contacts-item:last-of-type #mail:focus, #footer .footer_menu__contacts-item:last-of-type #mail:active {
  color: #54A5FA;
}
#footer .footer_menu__contacts-item:last-of-type #mail:hover svg, #footer .footer_menu__contacts-item:last-of-type #mail:focus svg, #footer .footer_menu__contacts-item:last-of-type #mail:active svg {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
#footer .footer_menu__contacts-item:last-of-type #mail:hover svg path, #footer .footer_menu__contacts-item:last-of-type #mail:focus svg path, #footer .footer_menu__contacts-item:last-of-type #mail:active svg path {
  fill: #54A5FA;
}
#footer .footer_policy {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 32px;
}
#footer .footer_policy__docs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 91px;
}
#footer .footer_policy__docs a {
  font-family: var(--font-regular);
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #343949;
  -webkit-transition: all ese 0.3s;
  transition: all ese 0.3s;
}
#footer .footer_policy__docs a:hover, #footer .footer_policy__docs a:focus, #footer .footer_policy__docs a:active {
  color: #000;
}

@media screen and (max-width: 1399px) {
  #footer .footer_menu {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #footer .footer_menu__logo {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding-bottom: 32px;
    border-bottom: 1px solid #D1D7E6;
  }
  #footer .footer_menu__logo .copyright {
    display: block;
    position: absolute;
    left: 0;
    bottom: 32px;
  }
  #footer .footer_menu__logo img {
    margin-bottom: 24px;
    width: 187px;
    height: 36px;
  }
  #footer .footer_menu__logo .footer-btn {
    width: 240px;
    height: 46px;
    padding: 12px 16px;
  }
  #footer .footer_menu__contacts {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    padding-top: 32px;
  }
  #footer .footer_menu__contacts-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #footer .footer_menu__contacts-item:nth-of-type(2) {
    padding-bottom: 12px;
  }
  #footer .footer_menu__contacts-item:last-of-type {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid #D1D7E6;
  }
  #footer .footer_menu__contacts-item:last-of-type .socials {
    margin-bottom: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #footer .footer_menu__contacts-item:last-of-type .contacts {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    gap: 8px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #footer .footer_menu__contacts-item:last-of-type .contacts a {
    margin-bottom: 0;
  }
  #footer .footer_policy .copyright {
    display: none;
  }
  #footer .footer_policy__docs {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  #footer .footer_policy__docs a {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  #footer .footer_menu__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #footer .footer_menu__logo .copyright {
    position: relative;
    left: auto;
    bottom: auto;
  }
  #footer .footer_menu__logo img {
    margin-bottom: 16px;
  }
  #footer .footer_menu__logo .footer-btn {
    margin-top: 60px;
  }
  #footer .footer_menu__contacts-item:last-of-type {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 40px;
  }
  #footer .footer_menu__contacts-item:last-of-type .contacts {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #footer .footer_policy__docs {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
}
section {
  margin-top: 100px;
}
section h2.h2 {
  text-align: center;
  padding: 0px;
  margin: 0 auto;
  font-family: var(--font-bold);
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 125%;
  color: #013B74;
}
section h3.h3 {
  font-family: var(--font-bold);
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 135%;
  color: #FFFFFF;
  margin-bottom: 20px;
}
section p {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #343949;
}

.black-sections {
  margin-top: 120px;
}
.black-sections p {
  color: #FFFFFF;
}
.black-sections h2.h2 {
  color: #fff;
}
.black-sections h3.h3 {
  color: #FFFFFF;
}
.black-sections > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #202432;
  border-radius: 32px;
}
.black-sections section:first-child {
  margin-top: 0;
}
.black-sections section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
.black-sections .black-sections-header {
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  gap: 40px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.black-sections .black-sections-header .description {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.black-sections .black-sections-header .description h3.h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.black-sections .black-sections-header .description p {
  width: 50%;
}
.black-sections .black-sections-header .description-img img {
  width: 305px;
  min-width: 305px;
  -o-object-fit: contain;
     object-fit: contain;
}
.black-sections .black-sections__wrapper {
  display: grid;
  grid-template-columns: 1fr 45%;
  gap: 80px;
}
.black-sections .black-sections__wrapper p {
  color: #D1D7E6;
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}
.black-sections .black-sections__dark {
  background: #202432;
  border-radius: 20px;
}

.card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 28px 32px 36px;
  gap: 32px;
  border: 1px solid #6D7690;
  border-radius: 16px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.card::before {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6009_74)'%3E%3Cpath d='M0 8C0 3.58172 3.58172 0 8 0H16C20.4183 0 24 3.58172 24 8V16C24 20.4183 20.4183 24 16 24H8C3.58172 24 0 20.4183 0 16V8Z' fill='%230280FD' fill-opacity='0.25'/%3E%3Cpath d='M17.6382 8.24414V9.91734L16.7144 10.8237L11.782 15.7561H9.67302L6.37891 12.462V10.8411V10.8237H8.19154L10.6839 13.316H10.7711L13.2634 10.8237L15.843 8.24414H17.6382Z' fill='%234FA4FE'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6009_74'%3E%3Cpath d='M0 8C0 3.58172 3.58172 0 8 0H16C20.4183 0 24 3.58172 24 8V16C24 20.4183 20.4183 24 16 24H8C3.58172 24 0 20.4183 0 16V8Z' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  width: 24px;
  height: 24px;
}
.card__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #202432;
  border-radius: 20px;
  padding: 48px 40px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  gap: 20px;
}
.card__wrapper__4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.card strong {
  color: #fff;
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
}
.card p {
  color: #D1D7E6;
}

.slider-section {
  height: 480px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 400px) {
  .slider-section {
    overflow: visible;
    height: auto;
  }
}

.slider-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: calc(400% + 52px);
  /* 4 слайда по 100% ширины */
  position: relative;
}
.slider-container .container,
.slider-container .container-slim {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.slide {
  width: 25%;
  /* Каждый слайд занимает 25% контейнера */
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
}
.slide .container-slim {
  padding-left: 0;
  padding-right: 0;
}
.slide__wrapper {
  background-image: url("/local/templates/astra-automation-2/img/slider_bg_item.png");
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 32px;
  width: 100%;
  height: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 60px 48px;
  gap: 60px;
}
.slide__wrapper > div:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 48px 40px 60px;
  gap: 24px;
  background: #F3F4FB;
  border-radius: 20px;
}
.slide__wrapper > div:first-child h3.h3 {
  color: #013B74;
  text-align: left;
}
.slide__wrapper > div:first-child p {
  text-align: left;
}
.slide__wrapper > div:last-child {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.slide__wrapper > div:last-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.slide__wrapper .slide__indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  gap: 6px;
  background: #E6E9F4;
  border-radius: 20px;
  color: #6D7690;
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
}
.slide__wrapper .slide__indicator span:first-child {
  color: #0280FD;
}

.slide-number {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
}

.pin-spacer {
  z-index: 1 !important;
}

@media screen and (max-width: 400px) {
  #sliderContainer {
    height: auto;
    overflow: visible;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 30px;
  }
  #sliderContainer .slide {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    position: relative;
  }
  #sliderContainer .slide .container-slim {
    padding-left: 0;
    padding-right: 0;
  }
  #sliderContainer .slide__wrapper {
    background-image: url("/local/templates/astra-automation-2/img/slider_bg_item.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 32px;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    gap: 30px;
  }
  #sliderContainer .slide__wrapper > div:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding: 32px 20px;
    gap: 24px;
    background: transparent;
    border-radius: 20px;
  }
  #sliderContainer .slide__wrapper > div:first-child h3.h3 {
    color: #013B74;
    text-align: center;
  }
  #sliderContainer .slide__wrapper > div:first-child p {
    text-align: center;
  }
  #sliderContainer .slide__wrapper > div:last-child {
    min-height: 300px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }
  #sliderContainer .slide__wrapper > div:last-child img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #sliderContainer .slide__wrapper .slide__indicator {
    display: none;
  }
}
.connect {
  padding: 90px 0;
}

.connect__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 60px;
  border-radius: 32px;
}

.connect__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.connect__form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.connect__form-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 100%;
}
.connect__form-inputs > div:first-child {
  color: #fff;
}

.connect__form-inputs-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
}

.connect__form-input {
  outline: none;
  border: 1px solid rgb(255, 255, 255);
  width: 100%;
  background: transparent;
  height: 46px;
  padding: 0px 16px;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #6D7690;
  border-radius: 12px;
  background: rgba(26, 36, 44, 0.4);
}

.connect__form-input::-webkit-input-placeholder {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #D0E7FF;
}

.connect__form-input::-moz-placeholder {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #D0E7FF;
}

.connect__form-input:-ms-input-placeholder {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #D0E7FF;
}

.connect__form-input::-ms-input-placeholder {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #D0E7FF;
}

textarea,
.connect__form-input::placeholder {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #D0E7FF;
}

/*
.connect__form-btn {
    border: none;
    background-color: #3c3c3c;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    max-width: 370px;
    cursor: pointer;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all .5s;
}

.connect__form-icon {
    width: 28px;
    height: 28px;
    background: url("../img/blue-arrow-for-btn.svg") center center/contain no-repeat;
}

.connect__form-btn:hover {
    background-color: #03a3ff;
}

.connect__form-btn:hover .connect__form-icon {
    width: 28px;
    height: 28px;
    background: url("../img/white-arrow-for-btn.svg") center center/contain no-repeat;
}

.connect__form-info {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    text-align: center;
}
*/
.textarea-comments {
  resize: none;
  padding: 10px;
  border-radius: 10px;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #6D7690;
  border-radius: 12px;
  background-color: transparent;
  color: #fff;
  width: 100%;
  background: rgba(26, 36, 44, 0.4);
}

.textarea-comments::-webkit-input-placeholder {
  color: #fff;
}

.textarea-comments::-moz-placeholder {
  color: #fff;
}

.textarea-comments:-ms-input-placeholder {
  color: #fff;
}

.textarea-comments::-ms-input-placeholder {
  color: #fff;
}

.textarea-comments::placeholder {
  color: #fff;
}

/*modal*/
.modal {
  /* overflow: scroll; */
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: none;
  overflow-x: hidden;
}

.modal-popup {
  z-index: -2;
  background: rgba(255, 255, 255, 0.8);
  width: 80%;
  max-width: 720px;
  margin: 7% auto;
  padding: 24px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 100px;
}

.modal-popup-title {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  font-family: "PT Astra Fact";
  font-weight: bold;
}

.modal-popup-desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
}

.modal-popup-close {
  margin-top: 30px;
  background-color: rgb(2, 128, 253);
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
  padding: 16px 24px;
  border-radius: 30px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.modal-popup-group {
  margin-top: 20px;
  position: relative;
}

.modal-popup-checkbox-label {
  font-size: 12px;
  color: #000000;
  line-height: 20px;
}

/* .modal-popup-group:nth-child(6) .modal-popup-checkbox-label, */
.modal-popup-group:nth-child(9) .modal-popup-checkbox-label,
.modal-popup-group:nth-child(4) .modal-popup-checkbox-label,
.modal-popup-group:nth-child(5) .modal-popup-checkbox-label {
  font-weight: bold;
}

.modal-popup-link {
  color: rgb(2, 128, 253);
}

.modal-popup-required {
  color: red;
  font-size: 18px;
}

/* *********************************
  Чекбоксы
  ********************************* */
.modal-popup-real-checkbox {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.modal-popup-custom-checkbox {
  position: relative;
  display: inline-block;
  min-width: 18px;
  height: 18px;
  background: transparent;
  border: 1px solid rgb(2, 128, 253);
  border-radius: 4px;
  vertical-align: sub;
  margin-right: 15px;
  cursor: pointer;
}

.modal-popup-custom-checkbox::before {
  content: "";
  /* Рисуем галочку */
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url("../img/checked.svg");
  background-size: contain;
  background-repeat: no-repeat;
  /* Выравниваем по центру */
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  margin-top: 1px;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.modal-popup-real-checkbox:checked + .modal-popup-custom-checkbox {
  background: rgba(2, 128, 253, 0.5);
}

.modal-popup-real-checkbox:checked + .modal-popup-custom-checkbox::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.connect-form-group {
  /* margin-top: 32px; */
  position: relative;
}

.connect-form-checkbox-label {
  font-size: 12px;
  color: #fff;
  line-height: 20px;
}

/* *********************************
  Чекбоксы
  ********************************* */
.connect-form-real-checkbox {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.connect-form-custom-checkbox {
  position: relative;
  display: inline-block;
  min-width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  border-radius: 4px;
  vertical-align: sub;
  margin-right: 15px;
  cursor: pointer;
}

.connect-form-custom-checkbox::before {
  content: "";
  /* Рисуем галочку */
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url("../img/checked.svg");
  background-size: contain;
  background-repeat: no-repeat;
  /* Выравниваем по центру */
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  margin-top: 1px;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.connect-form-custom-checkbox.active::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.connect__form-link {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 410px) {
  .modal-popup-title {
    font-size: 16px;
  }
  .modal-popup-desc {
    font-size: 14px;
  }
}
.connect__wrap {
  background-image: url("/local/templates/astra-automation-2/img/form_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #343949;
  border-radius: 24px;
}
.connect__wrap h2.h2 {
  text-align: left;
  color: #FFFFFF;
  margin: unset;
}
.connect__wrap strong {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #FFFFFF;
}
.connect__content {
  display: grid;
  grid-template-columns: 2fr 4fr;
  margin-top: 40px;
}
.connect__content > div:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  gap: 20px;
}
.connect__content > div:first-child a {
  font-family: var(--font-bold);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 157%;
  color: #0280FD;
}
.connect__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.connect__form .button-blue span {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
}
.connect__form-inputs-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
.connect__form-inputs-inner input:nth-child(1) {
  width: calc(33% - 11px);
}
.connect__form-inputs-inner input:nth-child(2) {
  width: calc(33% - 11px);
}
.connect__form-inputs-inner input:nth-child(3) {
  width: calc(33% - 11px);
}
.connect__form-inputs-inner input:nth-child(4) {
  width: calc(50% - 10px);
}
.connect__form-inputs-inner input:nth-child(5) {
  width: calc(50% - 10px);
}
.connect__form-inputs-inner input:nth-child(6) {
  width: calc(50% - 10px);
}
.connect__form-inputs-inner input:nth-child(7) {
  width: calc(50% - 10px);
}
.connect__form-inputs-inner input:nth-child(8) {
  width: calc(50% - 10px);
}
.connect__form-inputs-inner textarea {
  width: 100%;
}

.faq__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px 32px;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 16px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.faq__item.active .faq__item-title {
  color: #0152A2;
}
.faq__item.active .faq__item-title::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__item.active .faq__item-content {
  display: block;
}
.faq__item-content {
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px;
  gap: 32px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.faq__item-title {
  cursor: pointer;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px;
  gap: 32px;
  height: 32px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #151926;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.faq__item-title::after {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6001_387)'%3E%3Cpath d='M0 10C0 4.47715 4.47715 0 10 0L22 0C27.5228 0 32 4.47715 32 10V22C32 27.5228 27.5228 32 22 32H10C4.47715 32 0 27.5228 0 22L0 10Z' fill='%23E6E9F4'/%3E%3Cpath d='M20.6665 15.2276V16.7352C20.6665 16.9267 20.5988 17.1181 20.4859 17.2617C19.8537 18.0035 17.8441 20.3727 16.8055 21.6171C16.6475 21.7846 16.4668 22 16.2185 21.9761C15.3379 22 14.4347 21.9761 13.5542 22C13.2606 21.9761 12.8994 22.0239 12.7413 21.7128C12.5607 21.4496 12.7413 21.1385 12.922 20.9231C14.3218 19.2719 15.7217 17.6446 17.099 15.9934C15.8572 14.5336 14.6154 13.0499 13.3735 11.5901C13.1477 11.3268 12.8768 11.0636 12.7187 10.7525C12.5607 10.4175 12.8542 9.98671 13.2155 10.0106C14.1864 9.98671 15.1573 10.0106 16.1056 10.0106C16.3539 9.98671 16.6023 10.1064 16.7604 10.3217C17.8441 11.614 19.8762 14.0071 20.5085 14.725C20.5988 14.8686 20.6665 15.0361 20.6665 15.2276Z' fill='%230269CF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6001_387'%3E%3Cpath d='M0 10C0 4.47715 4.47715 0 10 0L22 0C27.5228 0 32 4.47715 32 10V22C32 27.5228 27.5228 32 22 32H10C4.47715 32 0 27.5228 0 22L0 10Z' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
}

.buy__wrap {
  padding: 80px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  background: #0280FD;
  border: 1px solid #0280FD;
  border-radius: 32px;
  background-image: url("/local/templates/astra-automation-2/img/aa_bg_buy.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.buy h2.h2,
.buy h3.h3 {
  color: #fff;
}
.buy__container {
  width: 100%;
}
.buy__description {
  display: grid;
  grid-template-columns: 300px 1fr;
}
.buy__description > div:last-child {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.buy__description img {
  mix-blend-mode: screen;
  -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
      -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
          transform: matrix(-1, 0, 0, 1, 0, 0);
}
.buy__description a,
.buy__description p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: flex;
  gap: 6px;
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #FFFFFF;
}
.buy__description a svg,
.buy__description p svg {
  cursor: pointer;
}
.buy__description .buy_labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.buy__description .buy_label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 10px 4px 12px;
  gap: 8px;
  height: 32px;
  border: 1px solid #90C7FF;
  border-radius: 10px;
  color: #FFFFFF;
}
.buy__description .buy_label::before {
  content: "•";
  margin-right: 6px;
}
.buy__description .buy__link {
  font-family: var(--font-bold);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 157%;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.buy__description .buy__link::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6001_564)'%3E%3Cpath d='M10.3492 2.62468L9.35882 1.63431C9.21026 1.48576 8.99568 1.38672 8.7811 1.38672H2.49224C2.3767 1.38672 2.26115 1.45274 2.22814 1.56829L1.56789 3.13638C1.48536 3.33445 1.63392 3.54903 1.8485 3.54903H6.94891L1.50187 8.99607C1.36982 9.12812 1.36982 9.3427 1.50187 9.47475L2.54176 10.5146C2.67381 10.6467 2.88839 10.6467 3.02044 10.5146L8.43447 5.10061V10.135C8.43447 10.3496 8.64905 10.4816 8.84712 10.4156L10.3987 9.77186C10.5142 9.72235 10.5803 9.62331 10.5803 9.50776V3.23541C10.5803 2.98782 10.4977 2.78974 10.3492 2.62468Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6001_564'%3E%3Crect width='12' height='12' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

@media screen and (max-width: 1299px) {
  header .header__wrap {
    gap: 40px;
  }
  .ansible-core__cards .ansible-core__card:nth-child(3),
  .ansible-core__cards .ansible-core__card:nth-child(4),
  .ansible-core__cards .ansible-core__card:nth-child(5) {
    width: calc(33% - 20px) !important;
  }
  #dev-kit .dev-kit__card:nth-child(3),
  #dev-kit .dev-kit__card:nth-child(4),
  #dev-kit .dev-kit__card:nth-child(5) {
    width: calc(33% - 11px) !important;
  }
  .connect__form-inputs-inner input:nth-child(1),
  .connect__form-inputs-inner input:nth-child(2),
  .connect__form-inputs-inner input:nth-child(3) {
    width: calc(33% - 12px);
  }
}
@media screen and (max-width: 1199px) {
  .ansible-core__cards .ansible-core__card:nth-child(4) {
    width: 100% !important;
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .ansible-core__cards .ansible-core__card:nth-child(3),
  .ansible-core__cards .ansible-core__card:nth-child(5) {
    width: calc(50% - 16px) !important;
  }
  #dev-kit .dev-kit__card:nth-child(3),
  #dev-kit .dev-kit__card:nth-child(4),
  #dev-kit .dev-kit__card:nth-child(5) {
    width: calc(50% - 10px) !important;
  }
  .connect__form-inputs-inner input:nth-child(1),
  .connect__form-inputs-inner input:nth-child(2),
  .connect__form-inputs-inner input:nth-child(3) {
    width: 100% !important;
  }
}
@media screen and (max-width: 1000px) {
  .card__wrapper__4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  header .container {
    background-position: 75% 0;
  }
  h2.h2 {
    font-size: 22px !important;
  }
  h3.h3 {
    font-size: 20px !important;
  }
  p {
    font-size: 14px !important;
  }
  section p {
    font-size: 14px !important;
  }
  .slide__wrapper > div:first-child h3.h3 {
    font-size: 20px !important;
  }
  .slide__wrapper .slide__indicator {
    display: none;
  }
  .slide .container-slim {
    padding-right: 15px;
  }
  .black-sections section#components .container {
    padding-left: 0;
    padding-right: 0;
  }
  .black-sections section#components .container .col-12 {
    padding-left: 0;
    padding-right: 0;
  }
  .black-sections .black-sections-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .black-sections .black-sections-header > div {
    width: 100%;
  }
  .black-sections .black-sections-header .description p {
    width: 100%;
  }
  .black-sections #hub .hub__desc .hub__desc__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .black-sections #hub .hub__desc .hub__desc__items p {
    width: 100%;
  }
  .black-sections .black-sections__wrapper {
    grid-template-columns: 1fr;
  }
  .black-sections .card__wrapper {
    grid-template-columns: 1fr;
  }
  .black-sections .card__wrapper.card__wrapper__4 {
    grid-template-columns: 1fr 1fr;
  }
  .black-sections #dev-kit .dev-kit__card {
    width: 100% !important;
  }
  .connect__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .connect__content .connect__form {
    margin-bottom: 40px;
  }
  #ansible-core .col-md-6 {
    width: 80%;
  }
}
@media screen and (max-width: 400px) {
  header .container {
    padding-left: 0;
    padding-right: 0;
  }
  header .container .h1 {
    font-size: 36px;
  }
  .ansible-core__cards .ansible-core__card,
  .ansible-core__cards .ansible-core__card__image {
    width: 100% !important;
  }
  .black-sections > .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  #ansible-core .col-md-6 {
    width: 100% !important;
    padding: 0 !important;
  }
  .ansible-core__cards .ansible-core__card:nth-child(3),
  .ansible-core__cards .ansible-core__card:nth-child(5) {
    width: 100% !important;
  }
  #controller > .container,
  #hub > .container,
  #private_hub > .container,
  #dev-kit > .container,
  #driven > .container,
  #analytics > .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .black-sections .black-sections-header .description-img img {
    width: 100% !important;
  }
  .black-sections .card__wrapper.card__wrapper__4 {
    grid-template-columns: 1fr !important;
  }
  #dev-kit .black-sections__dark {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  #dev-kit .black-sections__dark {
    padding: 15px !important;
  }
  .connect__form-inputs-inner input {
    width: 100% !important;
  }
  .faq__item {
    padding: 15px !important;
  }
  .faq__item .faq__item-title {
    height: auto;
  }
  .card__wrapper {
    padding: 15px !important;
  }
  .connect__wrap {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .faq__item .faq__item-title {
    font-size: 14px;
    gap: 12px;
  }
  header .header__menu-item:last-of-type {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px;
  }
  #can-buy-widget-container {
    height: auto !important;
  }
  #can-buy-widget-container .widget__container {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .buy__wrap {
    padding: 20px 10px;
    gap: 20px;
  }
  .buy__description a, .buy__description p {
    display: inline;
  }
  .buy__description {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .buy__description .buy_label {
    font-size: 12px;
  }
  #can-buy-widget-container .widget__container .widget__aside {
    background: transparent !important;
    padding: 20px 10px !important;
    width: 100% !important;
    min-width: 100% !important;
  }
}
.visually-hidden {
  position: absolute;
  overflow: hidden;
  display: block;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  border: 0;
}

html,
body {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}
@supports not (scroll-behavior: smooth) {
  html,
  body {
    scroll-behavior: auto;
  }
}
@media (min-width: 1400) {
  html,
  body {
    font-size: var(--base-font-size);
  }
}

body {
  /* Страница не сдвигалась вправо при отключении скролла */
  overflow-x: hidden;
  font-family: var(--font-regular);
  font-weight: 400;
  color: var(--font-color-base);
  background-color: var(--base-bg-color);
}
body * {
  font-family: var(--font-reqular);
}

#scenario {
  margin-top: 50px;
}
#scenario .container-slim {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 60px 80px;
  gap: 48px;
  background: #E6E9F4;
  border-radius: 24px;
}
@media screen and (max-width: 400px) {
  #scenario .container-slim {
    padding: 30px 30px 40px;
  }
}
#scenario .scenario__images img:last-child {
  display: none;
}
@media screen and (max-width: 400px) {
  #scenario .scenario__images {
    padding: 0;
  }
  #scenario .scenario__images img:first-child {
    display: none;
  }
  #scenario .scenario__images img:last-child {
    display: unset;
  }
}

#ansible-core {
  min-height: 276px;
  background: #0269CF url("/local/templates/astra-automation-2/img/ansible_core.png") no-repeat center center;
  background-size: cover;
  background-position: right;
  border-radius: 24px;
}
#ansible-core .container {
  padding: 58px 20px;
}
.ansible-core__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}
.ansible-core__cards .ansible-core__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.ansible-core__cards .ansible-core__card__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 400px;
  height: 200px;
  background: #013B74;
  border-radius: 20px;
  font-family: var(--font-bold);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  color: #FFFFFF;
  padding: 36px 32px;
  background-size: cover;
  background-repeat: no-repeat;
}
.ansible-core__cards .ansible-core__card__image::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 12C0 5.37258 5.37258 0 12 0H20C26.6274 0 32 5.37258 32 12V20C32 26.6274 26.6274 32 20 32H12C5.37258 32 0 26.6274 0 20V12Z' fill='white' fill-opacity='0.3'/%3E%3Cpath d='M22.1553 17.2511L16.8147 22.5916L15.1715 20.9484L18.9627 17.1572L9.77229 17.1455L8.61028 15.9835L9.77229 14.8215L18.9862 14.8332L15.1832 11.0303L15.1715 11.0185L16.8147 9.37529L16.8265 9.38703L22.1553 14.7158L22.1553 17.2511Z' fill='white'/%3E%3C/svg%3E%0A");
}
.ansible-core__cards .ansible-core__card:nth-child(1) {
  width: calc(50% - 16px);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.ansible-core__cards .ansible-core__card:nth-child(2) {
  width: calc(50% - 16px);
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.ansible-core__cards .ansible-core__card:nth-child(3) {
  width: calc(33% - 18px);
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.ansible-core__cards .ansible-core__card:nth-child(4) {
  width: calc(33% - 18px);
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ansible-core__cards .ansible-core__card:nth-child(5) {
  width: calc(33% - 18px);
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.ansible-core__cards .ansible-core__card:nth-child(6) {
  width: calc(50% - 16px);
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.ansible-core__cards .ansible-core__card:nth-child(7) {
  width: calc(50% - 16px);
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

#controller > .container,
#hub > .container,
#private_hub > .container,
#dev-kit > .container,
#driven > .container,
#analytics > .container {
  padding-top: 32px;
  padding-bottom: 32px;
  background: #343949;
  border-radius: 28px;
}
#controller ul {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#controller ul li {
  display: grid;
  color: #fff;
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  grid-template-columns: 20px 1fr;
  gap: 12px;
}
#controller ul li::before {
  width: 20px;
  height: 20px;
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6009_94)'%3E%3Cpath d='M0 6C0 2.68629 2.68629 0 6 0H14C17.3137 0 20 2.68629 20 6V14C20 17.3137 17.3137 20 14 20H6C2.68629 20 0 17.3137 0 14V6Z' fill='%23202432'/%3E%3Cpath d='M12.917 9.51723V10.4595C12.917 10.5792 12.8747 10.6988 12.8041 10.7886C12.409 11.2522 11.153 12.7329 10.5039 13.5107C10.4051 13.6154 10.2922 13.75 10.137 13.735C9.58661 13.75 9.02214 13.735 8.47178 13.75C8.28833 13.735 8.06254 13.765 7.96375 13.5705C7.85086 13.406 7.96375 13.2116 8.07665 13.0769C8.95158 12.0449 9.82651 11.0279 10.6873 9.99585C9.91118 9.08348 9.13503 8.15616 8.35888 7.2438C8.21777 7.07927 8.04842 6.91475 7.94964 6.72031C7.85086 6.51091 8.03431 6.24169 8.2601 6.25665C8.86691 6.24169 9.47372 6.25665 10.0664 6.25665C10.2216 6.24169 10.3769 6.31647 10.4757 6.45109C11.153 7.25875 12.4231 8.75443 12.8182 9.20314C12.8747 9.29288 12.917 9.39757 12.917 9.51723Z' fill='%234FA4FE'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6009_94'%3E%3Cpath d='M0 6C0 2.68629 2.68629 0 6 0H14C17.3137 0 20 2.68629 20 6V14C20 17.3137 17.3137 20 14 20H6C2.68629 20 0 17.3137 0 14V6Z' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

#hub .black-sections__wrapper {
  grid-template-columns: 1fr;
}
#hub .hub__desc .hub__desc__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
}
#hub .hub__desc .hub__desc__items p:last-child {
  font-family: var(--font-reqular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  color: #B3B9CE;
}
#hub .black-sections__dark img:last-child {
  display: none;
}
@media screen and (max-width: 400px) {
  #hub .black-sections__dark img:first-child {
    display: none;
  }
  #hub .black-sections__dark img:last-child {
    display: unset;
  }
}

#driven .black-sections__wrapper strong {
  display: block;
  font-family: var(--font-bold);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #FFFFFF;
  margin-bottom: 24px;
}

#dev-kit .black-sections__dark {
  padding: 48px 40px;
}
#dev-kit .dev-kit__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
#dev-kit .dev-kit__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 28px 32px 36px;
  gap: 40px;
  border: 1px solid #6D7690;
  border-radius: 16px;
}
#dev-kit .dev-kit__card strong {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 157%;
  color: #FFFFFF;
  padding-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#dev-kit .dev-kit__card strong::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.0501 1.3335L11.2937 5.3888L6.16551 13.5608C5.71679 14.2367 4.94756 14.6668 4.05013 14.6668H2L8.02564 5.08158L9.82051 2.37804C10.2692 1.7636 11.0385 1.3335 11.8718 1.3335H14.0501Z' fill='%2350576B'/%3E%3C/svg%3E%0A");
}
#dev-kit .dev-kit__card p {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  color: #D1D7E6;
}
#dev-kit .dev-kit__card:nth-child(1) {
  width: calc(50% - 10px);
}
#dev-kit .dev-kit__card:nth-child(2) {
  width: calc(50% - 10px);
}
#dev-kit .dev-kit__card:nth-child(3) {
  width: calc(33% - 10px);
}
#dev-kit .dev-kit__card:nth-child(4) {
  width: calc(33% - 10px);
}
#dev-kit .dev-kit__card:nth-child(5) {
  width: calc(33% - 10px);
}
#dev-kit .dev-kit__card:nth-child(6) {
  width: calc(50% - 10px);
}
#dev-kit .dev-kit__card:nth-child(7) {
  width: calc(50% - 10px);
}

#can-buy-widget-container {
  height: 700px;
  width: 100%;
  background: #fff;
  padding: 0;
  border-radius: 32px;
}
#can-buy-widget-container .widget {
  padding-left: 0;
  padding-right: 0;
}
#can-buy-widget-container .widget__container {
  border: none;
  border-radius: 32px 0 0 32px;
}
#can-buy-widget-container .widget__container .widget__box,
#can-buy-widget-container .widget__container .widget__aside {
  border: none;
}
#can-buy-widget-container .widget__container .widget__aside {
  padding-left: 40px;
  width: 300px;
  min-width: 300px;
}
/*# sourceMappingURL=style.css.map */
