

/* Start:/local/templates/desktopx/assets/css/style.css?175378246333542*/
@font-face {
  font-family: "PT Astra Fact regular";
  src: url(/local/templates/desktopx/assets/fonts/PTAstraFact-Regular.ttf);
}

@font-face {
  font-family: "PT Astra Fact";
  src: url(/local/templates/desktopx/assets/fonts/PTAstraFact-Bold.ttf);
}

@font-face {
  font-family: "Geologica";
  src: url(/local/templates/desktopx/assets/fonts/Geologica-Light.ttf);
}
html {
  scroll-padding-top: 55px;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PT Astra Fact regular";
  scrollbar-width: thin;
  /* outline: 1px solid red; */
}



h1,
h2,
h3,
h4,
h5 {
  font-weight: normal;
  margin: 0;
}

body {
  overflow-x: hidden;
  background-color: #f4f6fb;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

.locked {
  overflow: hidden;
}

.title {
  font-size: 48px;
  line-height: 54px;
  color: #3193dd;
}
.title-orange {
  color: #ee4a23;
}

@media screen and (max-width: 577px) {
  .title {
    font-size: 32px;
    line-height: 34px;
  }
}

.container-small {
  width: 100%;
  max-width: 1484px;
  margin: 0 auto;
  padding: 0 10px;
}
.container-middle {
  width: 100%;
  max-width: 1647px;
  margin: 0 auto;
  padding: 0 10px;
}
.container-big {
  width: 100%;
  max-width: 1860px;
  margin: 0 auto;
  padding: 0 10px;
}

.first-screen-wrap {
  position: relative;
  border-radius: 30px;
  padding: 40px 20px 128px 20px;
  margin-top: 30px;
  background: radial-gradient(
      58.61% 81.16% at 51.51% 44.51%,
      rgba(201, 226, 244, 0.5) 0%,
      #84b6dc 100%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
}

/*header*/

.first-screen-header {
  padding: 20px 30px;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.first-screen-header-logo-link {
  display: block;
  width: 41px;
  height: 34px;
}

.first-screen-header-logo-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.first-screen-header-menu-list {
  display: flex;
  gap: 40px;
  align-items: center;
}

.first-screen-header-burger-icon {
  display: none;
}

.first-screen-header-menu-link {
  font-size: 18px;
  color: #28334e;
  font-family: "Geologica";
}

.first-screen-header-menu-item:first-of-type {
  display: none;
}

/*адаптив header*/

@media screen and (max-width: 1240px) {
  .first-screen-header-menu-item .first-screen-header-logo-link {
    width: 120px;
    height: 15px;
  }
  .first-screen-header {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }
  .first-screen-header-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .first-screen-header-menu {
    display: none;
  }
  .first-screen-header-menu.active {
    position: absolute;
    display: flex;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 24px;
    padding: 20px;
    animation: showMenu 0.3s 1;
  }
  .first-screen-header-menu-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .first-screen-header-burger-icon {
    display: block;
    width: 26px;
    height: 18px;
    position: relative;
    z-index: 50;
    cursor: pointer;
    float: right;
    transition: 0.8s;
  }
  .first-screen-header-burger-icon span {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: #fff;
  }
  .first-screen-header-burger-icon span:first-child {
    top: 0;
  }

  .first-screen-header-burger-icon span:last-child {
    top: auto;
    bottom: 0;
  }
  .first-screen-header-menu-item {
    width: 100%;
    border-radius: 8px;
  }
  .first-screen-header-menu-item:hover {
    background-color: #fff;
  }
  .first-screen-header-menu-link {
    display: block;
    padding: 15px 8px;
    width: 100%;
    border-radius: 8px;
  }
  .first-screen-header-menu-item:first-of-type:hover {
    background-color: transparent;
  }
  /* .first-screen-header-menu-item {
    padding: 15px 8px;
    width: 100%;
    border-radius: 8px;
  } */

  .first-screen-header-menu-item:first-of-type {
    display: block;
    padding: 0 8px 15px 8px;
  }
  .first-screen-header-burger-icon.active {
    transform: rotate(-90deg);
    transition: 0.8s;
  }
  .first-screen-header-logo-link {
    font-size: 18px;
  }
}

@keyframes showMenu {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*завершение адаптива*/

.first-screen-content {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  margin-top: 133px;
  display: flex;
  flex-direction: column;
}
.first-screen-content-img {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 47px;
  width: 100%;
  max-width: 854px;
  height: auto;
}
.first-screen-content-logo {
  width: 100%;
  max-width: 761px;
  height: 95px;
}
.first-screen-content-subtitle {
  margin-top: 60px;
  color: #126cb0;
  font-size: 36px;
  line-height: 54px;
}
.first-screen-content-link {
  margin-top: 80px;
  width: 100%;
  max-width: 560px;
  height: 72px;
  background-color: #ee4a23;
  color: #fff;
  font-size: 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  cursor: pointer;
  border: none;
}
.first-screen-content-link:hover {
  background-color: #ff623d;
}
.first-screen-content-icon {
  width: 8px;
  height: 16px;
}
.first-screen-content-extra-link{
  margin-top: 40px;
  font-size: 16px;
  color: #071c27;
  text-decoration: underline;
}
@media (max-width: 1860px) {
  .first-screen-content-img {
    max-width: 740px;
    height: auto;
    bottom: 84px;
  }
}
@media (max-width: 1495px) {
  .first-screen-content-img {
    bottom: 133px;
    max-width: 600px;
    height: auto;
  }
}
@media (max-width: 1360px) {
  .first-screen-content {
    justify-content: center;
    align-items: center;
  }
  .first-screen-content-img {
    margin-top: 22px;
    margin-right: -20px;
    position: static;
    align-self: flex-end;
    max-width: 720px;
  }
  .first-screen-content-subtitle {
    text-align: center;
  }
}
@media (max-width: 1040px) {
  .first-screen-content-img {
    max-width: 481px;
  }
}
@media (max-width: 577px) {
  .first-screen-content-logo {
    height: 38px;
  }
  .first-screen-content-img {
    max-width: 399px;
  }
  .first-screen-content-subtitle {
    margin-top: 25px;
    font-size: 24px;
    line-height: 29px;
  }
  .first-screen-wrap {
    border-radius: 20px;
    padding: 40px 20px 22px 20px;
    margin-top: 10px;
    background: radial-gradient(
        58.61% 81.16% at 51.51% 44.51%,
        rgba(201, 226, 244, 0.5) 0%,
        #84b6dc 100%
      )
      /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  }
  .first-screen-content-link {
    margin-top: 35px;
    gap: 16px;
    font-size: 18px;
  }
  .first-screen-header-logo-link {
    width: 30px;
    height: auto;
  }
  .first-screen-content {
    margin-top: 84px;
  }
  .first-screen-content-extra-link{
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
  }
}

.list {
  margin-top: 147px;
  position: relative;
}
.list-wrap {
  display: flex;
  gap: 30px;
}
.list-titles {
  display: flex;
  flex-direction: column;
  width: 30%;
}
.list-items {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 30px;
}
.list-item {
  position: relative;
  padding: 30px 30px 40px 30px;
  background: linear-gradient(
      98.46deg,
      rgba(242, 245, 246, 0) 3.49%,
      rgba(49, 147, 221, 0.1) 100%
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e3b2a7;
}

.list-item-icon {
  width: 48px;
  height: 48px;
}
.list-item-text {
  margin-top: 40px;
  font-size: 18px;
  color: #071c27;
}
.list-item:last-child {
  grid-column: 1/3;
}
.list-wrap-glow {
  position: absolute;
  z-index: -1;
  top: -20%;
  right: 0;
  overflow: hidden;
  width: 90vw;
  height: 90vh;
}

.list-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      44.27% 44.27% at 49.94% 55.73%,
      rgba(49, 147, 221, 0.24) 0%,
      rgba(49, 147, 221, 0) 100%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

  filter: blur(30px);
}
@media (max-width: 1200px) {
  .list-wrap {
    flex-direction: column;
  }
  .list-titles {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .list-items {
    width: 100%;
  }
  .list-glow {
    top: 0;
  }
}
@media (max-width: 700px) {
  .list-items {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    gap: 16px;
  }
  .list-item:last-child {
    grid-column: 1/2;
  }
  .list-wrap-glow {
    width: 190vw;
    height: 190vh;
  }

  .list-glow {
    right: -25%;
    top: -12%;
  }
}
@media (max-width: 577px) {
  .list {
    margin-top: 61px;
  }
  .list-item-text {
    font-size: 14px;
  }
}
.systems {
  margin-top: 149px;
  position: relative;
}
.systems-wrap {
  display: flex;
  gap: 100px;
}
.systems-items {
  display: grid;
  grid-template-columns: repeat(2, 363px);
  grid-template-rows: repeat(3, 1fr);
  gap: 30px;
}
.systems-item {
  display: flex;
  flex-direction: column;
  padding: 30px 30px 40px 30px;
  border-radius: 24px;
  background: linear-gradient(116.81deg, #126cb0 3.9%, #3193dd 99.3%);
}
.systems-item-icon {
  width: 48px;
  height: 48px;
}
.systems-item-text {
  margin-top: 40px;
  font-size: 18px;
  color: #fff;
  font-family: "Geologica";
}
.systems-wrap-glow {
  position: absolute;
  z-index: -1;
  top: -20%;
  left: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.systems-glow {
  position: absolute;
  top: 0;
  left: -20%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      44.27% 44.27% at 49.94% 55.73%,
      rgba(49, 147, 221, 0.24) 0%,
      rgba(49, 147, 221, 0) 100%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

  filter: blur(30px);
}
@media (max-width: 1320px) {
  .systems-wrap {
    flex-direction: column;
    gap: 30px;
  }
  .systems-items {
    grid-template-columns: repeat(2, 1fr);
    order: 2;
  }
  .systems-titles {
    order: 1;
  }
}
@media (max-width: 700px) {
  .systems-items {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 16px;
  }
  .systems-glow {
    top: 0;
    left: 0;
  }
}
@media (max-width: 577px) {
  .systems {
    margin-top: 79px;
  }
}
.app {
  margin-top: 140px;
}
.app-wrap {
  position: relative;
  padding: 118px 84px 72px 84px;
  border-radius: 30px;
  background: radial-gradient(
      69.35% 72.44% at 78.49% 79.53%,
      #7cb9e7 0%,
      #3193dd 100%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
}
.app-title {
  color: #fff;
}
.app-title .title-orange {
  color: #ff8f74;
}
.app-items {
  margin-top: 115px;
  display: flex;
  gap: 35px;
}
.app-item {
  display: flex;
  flex-direction: column;
  padding: 40px 40px 60px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  width: 100%;
  max-width: 340px;
  height: 368px;
}
.app-item-icon {
  width: 48px;
  height: 48px;
}
.app-item-text {
  margin-top: 40px;
  color: #28334e;
  font-size: 24px;
  font-family: "Geologica";
  line-height: 30px;
}
.app-img-bg {
  position: absolute;
  top: -340px;
  right: 7%;
  width: 100%;
  max-width: 546px;
}
.app-table-wrap{
  margin: 115px auto 0 auto;
  padding: 60px;
  border-radius: 24px;
  background-color: #E3F1FA;
  width: 100%;
  max-width: 1076px;
}
.app-table{
  padding: 60px 80px;
  border-radius: 20px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;

}
.app-table-describe{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-table-describe-col{
  font-size: 16px;
  color: #5C6369;
  line-height: 1.5;
  width: 100%;
  max-width: 305px;
}
.app-table-describe-col:nth-child(2), .app-table-describe-col:last-child{
  font-size: 20px;
  color: #FF6F4A;
  line-height: 1.5;
  width: 100%;
  max-width: 145px;
  font-weight: bold;
  text-align: center;
}
.app-table-item-row{
  width: 100%;
  max-width: 145px;
}
.app-table-items{
  margin-top: 60px;
  display:flex;
  flex-direction: column;
}
.app-table-item{
  padding: 40px 0;
  border-bottom: 1px solid #EBF0F3;
  display: flex;
  justify-content: space-between;
}
.app-table-item:first-of-type{
  padding-top: 0;
}
.app-table-item:last-of-type{
  padding-bottom: 0;
  border-bottom: none;
}
.app-table-item-row:first-of-type{
  width: 100%;
  max-width: 305px;
}
.app-table-item-desc{
  color: #1C2328;
  font-size: 18px;
  line-height: 1.5;

}
.app-table-item-connect{
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-table-bottom{
  margin-top: 40px;
  padding: 32px 80px;
  border-radius: 20px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-between;
}
.app-table-bottom-text{
  font-size: 16px;
  color: #1C2328;
  line-height: 1.5;
display:flex;
align-items: center;
gap: 9px;
}
.app-table-bottom-text::before{
  content: '';
  min-width: 5px;
  height: 5px;
  background-color: #1C2328;
  border-radius: 100%;
}
.app-table-item-row .app-table-describe-col{
  display: none;
}
@media (max-width: 1450px) {
  .app-wrap {
    position: relative;
    padding: 118px 50px 72px 50px;
  }
  .app-img-bg {
    position: absolute;
    top: -250px;
    right: 2%;
    max-width: 410px;
  }
  .app-items {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 1320px) {
  .app {
    margin-top: 200px;
  }
  .app-img-bg {
    position: absolute;
    top: -180px;
    right: 2%;
    max-width: 300px;
  }
  .app-table {
    padding: 60px;
}
.app-table-bottom{
  padding: 32px 60px;
}
}
@media(max-width: 900px){
  .app-table-wrap {
    padding: 40px 20px;
}
.app-table {
  padding: 60px 24px;
}
.app-table-bottom{
  padding: 32px 24px;
}
}
@media (max-width: 835px) {
  .app-item {
    max-width: 100%;
    height: fit-content;
  }
  .app-table-bottom{
    gap: 20px;
    flex-direction: column;
  }
}

@media(max-width: 680px){
  .app-table-describe{
    display: none;
  }
  .app-table-items {
    margin-top: 0;
}
.app-table-item-row .app-table-describe-col{
  display: block;
}
.app-table-item-row:nth-child(2) .app-table-describe-col, .app-table-item-row:last-of-type .app-table-describe-col{
  font-size: 20px;
  color: #FF6F4A;
  font-weight: bold;

}
.app-table-item-row{
  max-width: 100%;
}
.app-table-item-connect {

  justify-content:start;
  align-items: center;
}
.app-table-item-row{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.app-table-item {
  flex-direction: column;
  gap: 32px;
}
}

@media (max-width: 577px) {
  .app {
    margin-top: 170px;
  }
  .app-img-bg {
    position: absolute;
    top: -136px;
    right: 2%;
    max-width: 221px;
  }
  .app-wrap {
    position: relative;
    padding: 32px 18px 18px 18px;
  }
  .app-items {
    margin-top: 32px;
  }
  .app-item {
    padding: 30px 20px;
  }
  .app-item-text {
    font-size: 18px;
    line-height: 22px;
  }
}

.application {
  margin-top: 160px;
}
.application-wrap {
  display: flex;
  gap: 140px;
  position: relative;
}
.application-items {
  display: grid;
  grid-template-columns: repeat(2, 340px);
  grid-template-rows: repeat(3, auto);
  gap: 40px;
}
.application-item {
  padding: 40px 40px 60px 40px;
  border-radius: 20px;
  background: linear-gradient(
      98.46deg,
      rgba(242, 245, 246, 0) 3.49%,
      rgba(49, 147, 221, 0.1) 100%
    ),
    linear-gradient(0deg, #ffffff, #ffffff);
  border: 1px solid #e3b2a7;
}
.application-item-text {
  font-size: 24px;
  color: #28334e;
  font-family: "Geologica";
}
.application-item-img {
  position: absolute;
  right: 0;
  bottom: -155px;
  z-index: -1;
  width: 965px;
  height: auto;
}
@media (max-width: 1270px) {
  .application-wrap {
    flex-direction: column;
    gap: 62px;
  }
  .application-items {
    grid-template-columns: repeat(2, 1fr);
    order: 2;
  }
  .application-title {
    order: 1;
  }
  .application-item-img {
    position: static;
    order: 3;
    align-self: flex-end;
    width: 100%;
    max-width: 800px;
    margin-bottom: -2px;
  }
}
@media (max-width: 1040px) {
  .application-item-img {
    max-width: 600px;
  }
}
@media (max-width: 650px) {
  .application-items {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, auto);
    gap: 18px;
  }
}
@media (max-width: 577px) {
  .application {
    margin-top: 62px;
  }
  .application-item {
    padding: 30px 30px 40px 30px;
  }
  .application-item-text {
    font-size: 14px;
  }
}
.info {
  margin-top: 152px;
}
.info-wrap {
  background: radial-gradient(
    72.27% 4095.43% at 73.15% 50%,
    #00509b 0%,
    #003555 100%
  );
  padding: 82px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info-img {
  width: 100%;
  max-width: 299px;
  height: 37px;
}
.info-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  gap: 24px;
  background-color: #ee4a23;
  color: #fff;
  border-radius: 16px;
  height: 72px;
  width: 100%;
  max-width: 668px;
  border: none;
  cursor: pointer;
}
.info-link:hover {
  background-color: #ff623d;
}
.info-link-arrow {
  width: 8px;
  height: 16px;
}
@media (max-width: 1270px) {
  .info {
    margin-top: 0;
  }
}
@media (max-width: 1200px) {
  .info-wrap {
    flex-direction: column;
  }
  .info-link {
    margin-top: 90px;
  }
}
@media (max-width: 1040px) {
  .info .container-middle {
    padding: 0;
  }
  .info-wrap {
    border-radius: 0;
  }
}
@media (max-width: 577px) {
  .info-link {
    gap: 16px;
    font-size: 18px;
  }
  .info-wrap {
    padding: 66px 30px 35px 30px;
  }
}

/*documentation*/
.documentation{
  margin-top: 104px;
}
.documentation-wrap{
  display: flex;
  flex-direction: column;
}
.documentation-items{
  margin-top: 60px;
  display: flex;
  gap: 42px;
  /* justify-content: space-between; */
}
.documentation-item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 466px;
  box-sizing: border-box;
}
.documentation-item-text{
  color: #28334E;
  text-decoration: underline;
  font-size: 24px;
  line-height: 1.5;
}
/* .documentation-item .documentation-item-icon-wrap{
  text-decoration: none;
} */
.documentation-item:hover{
  outline: solid 1px #EE4A23;
}
.documentation-item:hover .documentation-item-icon-wrap{
  background-color: #EE4A23;
}
.documentation-item-icon{
  min-width: 24px;
  max-width: 24px;
  height: 24px;
}
.documentation-item-icon-wrap{
  margin-top: 40px;
  width: 100%;
  max-width: 112px;
  height: 57px;
  background-color: #FF623D;
  color: #ffffff;
  font-size: 20px;
  /* text-decoration: none; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 16px;
  padding: 16px 19px;
}
@media(max-width: 1200px){
  .documentation-items{
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media(max-width: 769px){
  .documentation{
    margin-top: 90px;
  }
  .documentation-item{
    padding: 40px 30px;
    font-size: 18px;
  }
  .documentation-item-icon-wrap{
    max-width: 105px;
    height: 52px;
    font-size: 16px;
    padding: 14px 20px;
  }
}
/*faq*/
.faq {
  padding-top: 152px;
  padding-bottom: 160px;
  /* margin-top: 152px; */
  position: relative;
  overflow: hidden;
}
.faq-wrap {
  display: flex;
  gap: 140px;
  position: relative;
}
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  padding: 36px;
  background-color: #ffffff;
  /* background-color: #f4f6fb; */
  border-radius: 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.faq-item-header {
  display: flex;
  justify-content: space-between;
}
.faq-item-title {
  color: #28334e;
  font-size: 24px;
}
.faq-item-text {
  display: none;
  margin-top: 32px;
  color: #28334e;
  font-size: 18px;
  line-height: 28px;
}
.faq-item-arrow {
  min-width: 36px;
  height: 36px;
  background: url("/local/templates/desktopx/assets/img/grey-arrow.svg") center center/cover no-repeat;
}
.faq-item-arrow.active {
  min-width: 36px;
  height: 36px;
  background: url("/local/templates/desktopx/assets/img/blue-arrow.svg") center center/cover no-repeat;
}
.faq-wrap-glow {
  position: absolute;
  z-index: -1;
  top: -60%;
  right: 0;
  overflow: hidden;
  width: 50vw;
  height: 50vw;
}

.faq-glow {
  position: absolute;
  top: 0;
 right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      44.27% 44.27% at 49.94% 55.73%,
      rgba(49, 147, 221, 0.24) 0%,
      rgba(49, 147, 221, 0) 100%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

  filter: blur(30px);
}
.faq-item-arrow-mobile {
  display: none;
}
@media (max-width: 1500px) {
  .faq-wrap-glow {
    top: -10%;
  }

  .faq-glow {
    right: -5%;
  }
}
@media (max-width: 1250px) {
  .faq-wrap {
    gap: 40px;
  }
}
@media (max-width: 1040px) {
  .faq-wrap {
    flex-direction: column;
    gap: 62px;
  }
  .faq-wrap-glow {
    display: none;
  }
}
@media (max-width: 577px) {
  .faq {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .faq-item-title {
    font-size: 18px;
  }
  .faq-item-text {
    margin-top: 24px;
    font-size: 14px;
    line-height: 17px;
  }
  .faq-item-arrow-mobile {
    margin-top: 24px;
    display: block;
    width: 36px;
    height: 36px;
    background: url("/local/templates/desktopx/assets/img/grey-arrow.svg") center center/cover no-repeat;
    align-self: flex-end;
  }
  .faq-item-arrow-mobile.active {
    margin-top: 24px;
    min-width: 36px;
    height: 36px;
    background: url("/local/templates/desktopx/assets/img/blue-arrow.svg") center center/cover no-repeat;
    align-self: flex-end;
  }
  .faq-item-arrow {
    display: none;
  }
}
.footer {
  /* margin-top: 160px; */
  margin-bottom: 30px;
}
.footer-wrap {
  background: radial-gradient(
    51.43% 2914.43% at 52.31% 50%,
    #00509b 0%,
    #003555 100%
  );
  padding: 75px 30px 36px 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-logo {
  width: 100%;
  max-width: 298px;
  height: 37px;
}
.footer-menu {
  display: flex;
  gap: 20px;
  margin-top: 64px;
}
.footer-link {
  font-size: 18px;
  color: #ffffff;
  font-family: "Geologica";
  padding: 10px 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 32px;
}
.footer-contacts {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-contact-icon-wrap {
  width: 28px;
  height: 28px;
  background-color: #0f6baf;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-contact-icon {
  width: 16px;
  height: 16px;
}
.footer-contact-link {
  color: #fff;
  font-size: 18px;
  font-family: "Geologica";
}
.footer-copywriting {
  margin-top: 30px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.2);
  font-family: "Geologica";
}
@media (max-width: 1080px) {
  .footer-menu {
    flex-wrap: wrap;
  }
}
@media (max-width: 769px) {
  .footer-contacts {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 577px) {
  .footer {
    /* margin-top: 90px; */
    margin-bottom: 10px;
  }
  .footer-wrap {
    padding: 60px 20px 48px 20px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer-menu {
    flex-direction: column;
    margin-top: 60px;
  }
  .footer-link {
    width: fit-content;
  }
  .footer-contacts {
    margin-top: 60px;
  }
  .footer-copywriting {
    text-align: center;
    align-self: center;
  }
  .footer-logo {
    align-self: center;
  }
}

/*modal*/
.modal {
  /* overflow: scroll; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  display: none;
  background: rgba(48, 52, 54, 0.30);
backdrop-filter: blur(5px);
}
.modal-wrap {
  background-color: #fff;
  width: 100%;
  max-width: 500px;
  /* height: 870px; */
  height: fit-content;
  margin: 2% auto;
  padding: 32px;
  border-radius: 32px;

  position: relative;
  z-index: 20;
  overflow: hidden;
}
.form-wrap {
  display: flex;
  flex-direction: column;
  /* color: #ffffff; */
  position: relative;
}
.form-title {
  font-size: 34px;
  color: #3193dd;
}

.form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-input-wrap {
  position: relative;
  width: 100%;
  border: 1px solid #d5dadd;
  border-radius: 8px;
  background: transparent;
  height: 50px;
}
.form-input-wrap.error {
  border: 1px solid #e8112d;
}
.form-input-label {
  font-size: 14px;
  color: #afb8bf;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
}

.form-input {
  width: 100%;
  border: none;
  border-radius: 8px;
  background: transparent;
  height: 50px;
  padding-left: 20px;
  color: #071c27;
  font-size: 16px;
  outline: none;
}
.form-custom-textarea {
  position: relative;
  width: 100%;
  background-color: #fff;
  min-height: 120px;
  border-radius: 10px;
  border: 1px solid #d5dadd;
}
.form-textarea {
  padding: 20px;
  width: 100%;
  background-color: #fff;
  min-height: 120px;
  border-radius: 10px;
  outline: none;
  border: none;
  font-size: 16px;
  resize: none;
}
.form-textarea-label {
  position: absolute;
  top: 10%;
  transform: translateY(-10%);
  left: 16px;
  color: #afb8bf;
  font-size: 14px;
  font-weight: 400;
}
.form-footer {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.form-policy {
  font-size: 14px;
  color: #6a7e95;
  line-height: 20px;
}
.form-policy-link {
  color: #3193dd;
}
.form-btn {
  height: 60px;
  width: 100%;
  max-width: 130px;
  background-color: #ee4a23;
  border-radius: 16px;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.form-btn:hover {
  background-color: #ff623d;
}
.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal-subtitle {
  margin-top: 32px;
  font-size: 18px;
  color: #6a7e95;
  text-align: center;
}
.modal-title {
  font-size: 34px;
  color: #3193dd;
  margin-top: 30px;
}
.modal-btn {
  margin-top: 32px;
  height: 50px;
  width: 100%;
  background-color: #ee4a23;
  border-radius: 16px;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.modal-btn:hover {
  background-color: #ff623d;
}
.modal-icon {
  width: 150px;
  height: 150px;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 2%;
  font-size: 40px;
  color: rgba(51, 51, 51, 0.6);
  cursor: pointer;
  transition: transform 0.3s;
  transform-origin: center;
}
.modal-close:hover {
  transform: rotate(180deg);
}
.form-input-error {
  color: #e8112d;
  font-size: 12px;
  position: absolute;
  bottom: -15px;
  left: 5px;
}

@media screen and (max-width: 650px) {
  .form-title {
    font-size: 27px;
  }
  .modal-close {
    top: -7px;
  }
}

.where-buy {
  margin-bottom: 30px;
}

.footer-policy-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.footer-policy-item {
  color: #fff;
  font-size: 14px;
}
.footer-policy-item:hover {
  text-decoration: underline;
}



.form-group {
  position: relative;
}
.form-checkbox-label {
  font-size: 12px;
  color: #000000;
  line-height: 20px;
}

/* *********************************
Чекбоксы
********************************* */

.form-real-checkbox {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.form-custom-checkbox {
  position: relative;
  display: inline-block;
  min-width: 18px;
  height: 18px;
  background: transparent;
  border: 1px solid #3193dd;
  border-radius: 4px;
  vertical-align: sub;
  margin-right: 15px;
  cursor: pointer;
}

.form-custom-checkbox::before {
  content: "";

  /* Рисуем галочку */
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url("/local/templates/desktopx/assets/css/../img/checked.svg");
  background-size: contain;
  background-repeat: no-repeat;

  /* Выравниваем по центру */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  margin-top: 1px;

  transition: 0.2s ease-in;
}

.form-custom-checkbox.active {
  background: rgb(2, 128, 253, 0.5);
}

.form-custom-checkbox.active::before {
  transform: translate(-50%, -50%) scale(1);
}
/*modal with policy*/

.popup {
  overflow: scroll;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: none;
  overflow-x: hidden;
  z-index: 25;
}
.popup-wrap {
  z-index: 35;
  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: flex;
  flex-direction: column;
}
.popup-title {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  font-family: "PT Astra Fact";
  font-weight: bold;
}
.popup-desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
}
.popup-close {
  margin-top: 30px;
  background-color: #ee4a23;
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
  padding: 16px 24px;
  border-radius: 30px;
  align-self: flex-end;
}

.popup-group {
  margin-top: 20px;
  position: relative;
}
.popup-checkbox-label {
  font-size: 12px;
  color: #000000;
  line-height: 20px;
}
.popup-group:nth-child(9) .popup-checkbox-label,
.popup-group:nth-child(4) .popup-checkbox-label,
.popup-group:nth-child(5) .popup-checkbox-label,
.popup-group:nth-child(6) .popup-checkbox-label {
  font-weight: bold;
}

.popup-link {
  color: rgb(2, 128, 253);
}

.popup-required {
  color: red;
  font-size: 18px;
}
/* *********************************
Чекбоксы
********************************* */

.popup-real-checkbox {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.popup-custom-checkbox {
  position: relative;
  display: inline-block;
  min-width: 18px;
  height: 18px;
  background: transparent;
  border: 1px solid #3193dd;
  border-radius: 4px;
  vertical-align: sub;
  margin-right: 15px;
  cursor: pointer;
}

.popup-custom-checkbox::before {
  content: "";

  /* Рисуем галочку */
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url("/local/templates/desktopx/assets/css/../img/checked.svg");
  background-size: contain;
  background-repeat: no-repeat;

  /* Выравниваем по центру */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  margin-top: 1px;

  transition: 0.2s ease-in;
}

.popup-real-checkbox:checked + .popup-custom-checkbox {
  background: rgb(2, 128, 253, 0.5);
}

.popup-real-checkbox:checked + .popup-custom-checkbox::before {
  transform: translate(-50%, -50%) scale(1);
}
/* End */
/* /local/templates/desktopx/assets/css/style.css?175378246333542 */
