* {
  font-family: "Roboto Flex", "system-ui", "verdana", "tahoma", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

html, body {
  margin: 0;
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

:root {
  --white: #ffffff;
  --black: #264445;
  --dblue: #263e56;
  --blue: #1F4078;
}

img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--dblue);
}

a:hover {
  color: var(--white);
  text-decoration: underline;
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  max-width: 1140px;
  z-index: 10;
}

.f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}

.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.text, .text * {
  line-height: 1.6;
  color: #000000;
}

.text--big, .text--big * {
  font-size: 24px;
  line-height: 1.2;
}

.text--big li {
  margin-bottom: 20px;
}

p.text, .text > p {
  margin-bottom: 25px;
}

.text--center {
  text-align: center;
}

.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  outline: none;
  cursor: pointer;
  background-color: var(--blue);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: 48px;
  border-radius: 25px;
  min-width: 242px;
}

.btn:hover {
  text-decoration: none;
}

.btn--white {
  background-color: #fff;
  color: var(--black);
  padding: 0 65px 0 40px;
}

.btn--white:hover {
  color: var(--blue);
}

.btn--white:hover .icon {
  background-image: url("../images/ambits_june/arrow-top-right.svg");
  background-color: #fff;
  border-color: #1F4078;
}

.icon-arrow-right {
  background-color: #fff;
  background-image: url("../images/ambits_june/arrow-top-right.svg");
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-size: 16px;
}

.icon-arr-top-right-white {
  background-color: #1F4078;
  background-image: url("../images/ambits_june/arrow-top-right-white.svg");
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-size: 16px;
  border: 1px solid #1F4078;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn--white::after {
  background-image: url("../images/ambits_june/arrow-top-right-white.svg");
}

.btn--header {
  margin-right: -10px;
  margin-top: -10px;
  padding-right: 26px;
  min-width: 262px;
  display: flex;
  gap: 3px;
}

/*.btn--header:hover::before {
  width: 10px;
  height: 10px;
  top: 20px;
  left: 14px;
}*/

.btn .icon {
  position: absolute;
  right: 10px;
}

/*.btn--header::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #66FC75;
  left: 15px;
  top: 21px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}*/

.cover-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  cursor: pointer;
}

.icon:before, .icon::after {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.h1 {
  font-size: 48px;
  margin: 0 0 50px;
}

.h2 {
  font-size: 36px;
  margin: 0 0 40px;
}

.h3 {
  font-size: 28px;
  margin: 20px 0;
}

.block {
  padding: 90px 0;
  border-top: 1px solid var(--black);
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -36px;
  width: 72px;
  height: 72px;
  border: 3px dotted #000;
  border-style: solid solid dotted dotted;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: rotation 2s linear infinite;
  animation: rotation 2s linear infinite;
  z-index: 222;
  display: none;
}

.loader::after {
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px dotted #fff;
  border-style: solid solid dotted;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-animation: rotationBack 1s linear infinite;
  animation: rotationBack 1s linear infinite;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.loader::before {
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -24px;
  border: 2px dotted #fff;
  border-style: solid dotted solid dotted;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -webkit-animation: rotationBack 2.5s linear infinite;
  animation: rotationBack 2.5s linear infinite;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.form-messages {
  position: absolute;
  background-color: rgba(28, 55, 104, 0.7);
  z-index: 20;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  color: #fff;
  align-items: center;
  font-size: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
  padding: 2rem;
  display: none;
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
}

.form-messages.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotationBack {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes rotationBack {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  height: 80px;
}

.logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.logos a:first-child img {
  width: 80px;
}

.logos a:last-child img {
  width: 87px;
}

.header-nav {
  display: flex;
  gap: 15px;
}

.lang {
  position: relative;
}

.lang:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.lang-active {
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px;
  display: inline-block;
}

.lang-active:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url('../images/ambits_june/arrow-down.svg');
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  margin-left: 10px;
}

.lang-menu {
  position: absolute;
  width: 40px; 
  background-color: #fff;
  box-shadow: 0 0 1px #999;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: .3s all;
}

.lang-menu a {
  padding: 10px;
  display: inline-block;
  color: #000;
}

.hero {
  border-radius: 25px;
  background-image: url("../images/ambits_june/hero.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 147px 71px 37px 71px;
  position: relative;
}

.hero-ty {
  padding: 150px 71px;
}

.h1 {
  color: #fff;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin: 0 0 25px;
  max-width: 644px;
  text-transform: uppercase;
}

.under-h1 {
  font-size: 24px;
  color: #fff;
  line-height: 1.3;
  max-width: 578px;
  margin-bottom: 75px;
}

.stats {
  gap: 20px;
  margin-top: 125px;
  max-width: 700px;
}

.stat--num {
  font-size: 48px;
  font-weight: 300;
  color: #fff;
}

.stat--info {
  font-size: 12px;
  color: #fff;
  line-height: 1.1;
  max-width: 168px;
  margin: 9px 0 0;
}

.hero--info {
  position: absolute;
  right: 0;
  bottom: -1px;
  border-top-left-radius: 25px;
  background-color: #fff;
  padding: 59px 64px 59px 81px;
  font-size: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.corners::after, .corners::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-image: url("../images/ambits_june/rad1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  left: -40px;
  bottom: 0;
}

.corners::after {
  left: auto;
  right: 0;
  bottom: auto;
  top: -40px;
}

.block-ai {
  padding: 175px 0 0 0;
  gap: 20px 30px;
}

.block-ai-left {
  width: 100%;
  max-width: 637px;
  margin-bottom: 90px;
}

.block-ai-left p {
  margin-bottom: 30px;
}

main {
  padding-top: 92px;
}

.block--title {
  font-weight: 700;
  font-size: 36px;
  margin: 0 0 32px;
  letter-spacing: 1.6px;
  line-height: 1.1;
}

.block-ai--img {
  height: 311px;
  width: 100%;
  border-radius: 25px;
  margin-top: 20px;
}

.block-ai-right {
  margin-top: -54px;
  /* width: 100% */
  /* max-width: 404px */
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

.block-ai-item {
  border-radius: 32px;
  background-color: #f3f3f3;
  padding: 26px 29px;
  margin-bottom: 12px;
}

.block-ai-item p {
  font-size: 18px;
  line-height: 1.5;
  width: 100%;
}

.block-ai-item h3 {
  margin: 0;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.6px;
}

.icon-target {
  display: block;
  width: 60px;
  height: 60px;
  background-image: url("../images/ambits_june/target.svg");
  background-size: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  margin-bottom: 12px;
  border-radius: 50%;
}
.aspects {
  margin: 0 0 120px 0;
}

.aspects-nav {
  position: relative;
  height: 172px;
}

.aspects-grid {
  grid-template-columns: repeat(2, 1fr); 
}

.aspect-img {
  position: relative;
  z-index: 10;
  height: 88px;
  max-width: 48%;
  width: auto;
  object-fit: contain;
  border-radius: 32px;
}

.aspect-nav-item {
  position: absolute;
  z-index: 5;
  height: 67px;
  width: calc(50% - 15px);
  display: flex;
  padding-bottom: 20px;
  align-items: center;
  border-bottom: 1px solid #C7C7C7;
}

.aspect-nav-item:not(._1) {
  cursor: pointer;
}

.aspect-nav-item._1 {
  bottom: 0;
  left: 0;
}

.aspect-nav-item._2 {
  right: 0;
  top: 16px;
}

.aspect-nav-item._3 {
  right: 0;
  bottom: 0;
}

.aspect-nav--title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto 0 4px;
  color: #C7C7C7;
  width: 100%;
  max-width: 410px;
  text-transform: uppercase;
  transition: .3s all;
}

.aspect-nav--num {
  font-size: 48px;
  line-height: 1;
  display: inline-block;
  color: #C7C7C7;
  transition: .3s all;
  width: 62px;
}

.aspect-nav--arrow {
  background-image: url("../images/ambits_june/arrow-left.svg");
  margin-right: 14px;
  width: 26px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: .3s all;
}

.aspect-nav-item.active {
  border-color: #000;
} 
.aspect-nav-item.active .aspect-nav--title,
.aspect-nav-item.active .aspect-nav--num {
  color: #000;
}

.aspect-nav-item.active .aspect-nav--arrow {
  background-image: url("../images/ambits_june/arrow-down.png");
}

.aspects-content {
  margin-top: 57px;
}

.aspects-content-item {
  display: none;
}

.block-text-border p:first-child,
.aspects-content-item div p:first-child {
  margin-bottom: 20px;
}

.aspects-content-item div p {
  margin-bottom: 20px;
}

.aspects-content-item div p:last-child {
  margin-bottom: 0;
}

.block-text-gray {
  border-radius: 32px;
  background-color: #F3F3F3;
  padding: 32px 25px 32px 32px;
}

.block-text-border {
  border-left: 1px solid #1F4078;
  padding: 0 32px 0 27px;
}

.block-text-border p {
  font-size: 18px;
}

.block-text-border strong {
  font-size: 24px;
  display: block;
  margin-bottom: -23px;
}

.aspects-content-item.active {
  display: grid;
}

.block-text-half {
  grid-template-columns: repeat(2, 1fr); 
}

.cisco-logo {
  display: block;
  margin: 0 auto;
  max-width: 310px;
  width: 100%;
  object-fit: contain;
}

.block-rand {
  margin: 0 0 120px 0;
  background-color: #F3F3F3;
  padding: 37px 65px 50px;
  border-radius: 32px;
}

.block-rand-content {
  margin-bottom: 35px;
}

.block-rand-info {
  grid-template-columns: repeat(4, 1fr);
  gap: 33px;
}

.block-rand-info {
  margin-top: 32px;
}

.block-rand-info * {
  font-size: 18px;
}

.block-rand-content p {
  flex: 1 0 auto;
  margin-right: 60px;
  max-width: 570px;
}

.block-rand-content img {
  flex: 0 1 320px;
  object-fit: contain;
  border-radius: 32px;
}

.block-ways { 
  width: 100%;
  position: relative;
}

.block-ways::after {
  position: absolute;
  content: "";
  height: 60px;
  bottom: 0;
  width: 100%;
  max-width: 568px;
  bottom: -38px;
  background-color: #fff;
  z-index: 22;
}

.block-ways-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0 0 20px;
  width: 100%;
}

.block-ways-top h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0;
  max-width: 542px;
}

.block-ways-left {
  width: 100%;
  max-width: 568px;
  position: relative;
  padding-right: 30px;
}

.block-ways-left p {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 25px;
  max-width: 95%;
}

.ways-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  z-index: 222;
}

.ways-item.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.ways-item h3 {
  font-size: 24px;
  margin: 7px 0 15px;
  font-weight: 600;
}

.block-ways-right {
  width: 100%;
  /* max-width: 500px */
  position: relative;
  /* overflow: hidden */
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.we-offer-img {
  margin-bottom: 22px;
}

div.selectize-dropdown {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: #fff;
}

div.selectize-dropdown .active {
    background-color: #fff;
    color: #000;
}

div.selectize-input.items {
  background: none!important;
  border: 0!important;;
  border-bottom: 1px solid #fff!important;;
  box-shadow: none!important;;
  border-radius: 0 !important;
  padding: 8px 8px 8px 0;
}

div.selectize-input.items.error {
  border-bottom: 1px solid #ff0000!important;;
}

.selectize-dropdown.single {
  z-index: 22;
}

div.selectize-input .item,
div.selectize-input .option {
  color: #fff;
}

@media screen and (min-width: 1200px) {
  .ways-item-shown {
    position: absolute;
    /* position: relative */
    width: 350px;
    top: 13px;
    -webkit-transition: left 0.3s;
    -o-transition: left 0.3s;
    transition: left 0.3s;
  }
  [data-ways-item="1"] {
    left: 0;
    left: -50%;
    top: 70%;
  }
  [data-ways-item="1"].active {
    left: 0;
    top: 13px;
  }
  [data-ways-item="2"] {
    z-index: 2;
    left: 12px;
    top: 84%;
  }
  [data-ways-item="2"].active {
    left: 108px;
  }
  [data-ways-item="2"].active3 {
    left: -41%;
    top: 85%;
  }
  [data-ways-item="3"] {
    z-index: 1;
    right: 6%;
    top: 81%;
  }
  [data-ways-item="3"].active {
    left: 43%;
  }
  .ways-item-shown.active {
    position: relative;
    z-index: 10;
    top: 13px;
  }
  .ways-item-shown.active img {
    display: block;
  }
  .ways-item-shown img {
    position: relative;
    z-index: 1;
    display: none;
  }
  .ways-item-shown.active .ways-item-placeholder {
    opacity: 0;
    z-index: 0;
  }
  [data-ways-item="3"] .ways-item-placeholder {
    bottom: 21%;
    padding: 44px 0 16px 0;
  }
  [data-ways-item="2"] .ways-item-placeholder {
    bottom: 18%;
  }
  [data-ways-item="2"] .ways-item-placeholder::after {
    left: 162%;
  }
  [data-ways-item="3"] .ways-item-placeholder::after {
    left: 146%;
  }
  [data-ways-item="3"] .ways-item-placeholder::before {
    bottom: -1px;
  }
  .ways-item-placeholder {
    padding: 50px 0 16px 0;
    position: absolute;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(-90deg);
    text-transform: uppercase;
    font-size: 48px;
    background-color: #fff;
    border-bottom: 1px solid #c7c7c7;
    right: -50%;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: 25%;
    color: #c7c7c7;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    z-index: 200;
  }
  .ways-item-shown.active .ways-item-text {
    opacity: 1;
  }
  .ways-item-placeholder::after {
    position: absolute;
    content: "";
    top: 55px;
    background-image: url("../images/ambits_june/arrow-left.svg");
    width: 28px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    left: 107%;
  }
  .ways-item-placeholder::before {
    position: absolute;
    content: "";
    right: 5px;
    height: 1px;
    left: 0;
    background-color: #c7c7c7;
    right: -60px;
    bottom: -1px;
  }
  .ways-item-placeholder span {
    font-weight: 700;
    text-transform: uppercase;
    color: #c7c7c7;
    font-size: 26px;
    margin-left: 16px;
    margin-top: 17px;
  }
  .ways-item-text--num {
    font-size: 40px;
    display: block;
  }
  .ways-item-text--info {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 12px;
    display: block;
  }
  .ways-item-text {
    position: absolute;
    padding: 4px 12px 0px 26px;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: #fff;
    width: 190px;
    border-top-left-radius: 32px;
    opacity: 0;
    -webkit-transition: 0.3s opacity;
    -o-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
}
.block-ready {
  padding: 134px 0 143px;
}

.block--undertitle {
  font-size: 24px;
  max-width: 600px;
  margin: 35px 0 35px 0;
  line-height: 1.2;
}

.graph-item {
  position: relative;
  padding-left: 15px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.graph-item:after, .graph-item:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  content: "";
  bottom: -16px;
  background-color: #d5d5e8;
}

.graph-item:after {
  top: 50%;
  background-color: #1f4078;
}

.icon-graph {
  background-image: url("../images/ambits_june/graph.svg");
  background-color: #f3f3f3;
  width: 60px;
  height: 60px;
  display: block;
  margin-bottom: 16px;
  border-radius: 50%;
  background-size: 26px;
  margin-left: -10px;
}

.graph--info {
  font-size: 18px;
  padding-bottom: 20px;
}

.weak-item {
  border-radius: 20px;
  background-color: #f3f3f3;
  padding: 19px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.weak-item--numb {
  border-radius: 50%;
  background-color: #fff;
  font-size: 30px;
  font-weight: 600;
  color: var(--blue);
  display: -webkit-box;
  width: 60px;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
  height: 60px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 60px;
  flex: 1 0 60px;
  max-width: 60px;
}

.weak-item--info {
  font-size: 18px;
  padding: 10px 4px;
  line-height: 1.2;
}

.block-step p.text--center,
.block-weak p.text--center {
  max-width: 735px;
  margin: 0 auto;
}

.weak {
  gap: 30px 32px;
  grid-template-columns: repeat(3, 1fr);
  margin: 60px 0;
}

.block-solutions {
  padding: 0 0 120px 0;
}

.block-solutions p.text--center {
  max-width: 600px;
  margin: 0 auto 19px;
}

.line-block {
  position: relative;
  padding: 58px 6px 0 40px;
}

.line-block-top {
  padding-left: 0;
}



.line {
  position: absolute;
  height: 9px;
  background-color: #efefef;
  left: 0;
  right: 0;
  top: 70px;
}

.line-fill {
  background: -o-linear-gradient(351.76deg, #0BAFC0 5.77%, #1F4078 53.37%);
  background: linear-gradient(98.24deg, #0BAFC0 5.77%, #1F4078 53.37%);
  height: 9px;
  left: 0;
  width: 65px;
  position: absolute;
  -webkit-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}

.line-fill::after {
  position: absolute;
  content: "";
  background-image: url("../images/ambits_june/spinner.svg");
  width: 22px;
  height: 22px;
  right: -7px;
  top: -6px;
  background-repeat: no-repeat;
}

.line-item {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  cursor: pointer;
  padding: 62px 0 0 8px;
}

.line-item b {
  display: block;
}

.line-item.active .line-item--num {
  opacity: 1;
}

.line-item.active .line-item--info {
  color: #000;
}

.line-item::after {
  position: absolute;
  content: "";
  right: -9px;
  top: 4px;
  width: 1px;
  height: 17px;
  background-color: #3f3f46;
}

.line-item--num {
  position: absolute;
  top: -36px;
  left: -26px;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
  width: 70px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url("../images/ambits_june/bgnum.png");
  background-size: contain;
  background-position: 0 5px;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  opacity: 0;
}

.line-item:nth-child(2) .line-item--num {
  left: -14px;
}

.line-item:last-child:after {
  display: none;
}

.line-item--info { 
  font-size: 18px;
  color: #767676;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  line-height: 1.5;
}

.block-step--titile {
  text-transform: uppercase;
  font-size: 38px;
  color: #1f4078;
  margin: 0 0 35px;
}

.block-form {
  background-image: url("../images/ambits_june/bg-form.png");
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 120px 0;
  border-radius: 32px;
  overflow: hidden;
  padding: 69px 67px 69px 62px;
}

.block-form-conent {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.form {
  width: 100%;
  max-width: 570px;
  margin-left: auto;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  -webkit-box-shadow: 0px 1px 80px 0px rgba(0, 0, 0, 0.2392156863);
  box-shadow: 0px 1px 80px 0px rgba(0, 0, 0, 0.2392156863);
  border-radius: 16px;
  padding: 34px 47px 34px 40px;
}

.form--title {
  color: #fff;
  font-weight: 600;
  font-size: 38px;
  margin: 0 0 20px;
  line-height: 1.18;
  max-width: 370px;
}

.form--text {
  font-size: 18px;
  color: #fff;
  margin-top: 34px;
  line-height: 1.1;
  max-width: 367px;
}

.form--two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 42px;
}

.input-item {
  margin-bottom: 20px;
  max-width: 220px;
  position: relative;
  width: 100%;
}

.input-item label {
  max-width: 236px;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 10px;
  right: -20px;
}

.input-item input {
  width: 100%;
  outline: none;
  color: #fff;
  border: 0;
  border-bottom: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0);
  padding: 5px 0 9px;
}

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

.input-item input::-moz-placeholder {
  color: #fff;
}

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

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

.input-item input::placeholder {
  color: #fff;
}

.form-acceptance {
  width: 220px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px 0 0 auto;
}

.form-acceptance a {
  text-decoration: underline;
  color: #fff;
}

.form-acceptance label {
  color: #fff;
  font-size: 8px;
  cursor: pointer;
  line-height: 1;
  margin-left: 9px;
  margin-top: -2px;
}

.checkbox {
  position: relative;
  /* overflow: hidden */
  width: 12px;
  height: 12px;
  display: block;
}

.checkbox input {
  width: 12px;
  height: 12px;
  position: absolute;
  z-index: 10;
  opacity: 0;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
  display: block;
}

.checkbox input:checked {
  opacity: 1;
}

.checkbox-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #fff;
  border-radius: 2px;
  z-index: 2;
  width: 12px;
  height: 12px;
}

.form-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 50px 0 0;
  position: relative;
}

.form-submit input {
  width: 274px;
  color: #1f4078;
  padding: 14px 24px 14px 0;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 400;
}

.form-submit .icon {
  position: absolute;
  width: 32px;
  height: 32px;
  right: 10px;
  top: 8px;
  background-color: #1f4078;
  background-image: url("../images/ambits_june/arrow-top-right-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}


.hide-on-desk,
.menu-toggle {
  display: none;
}

@media screen and (max-width: 1200px) {
  .block-rand {
    padding: 32px 48px 50px;
  }

  .block-rand-content p {
    flex: 1;
    max-width: 100%;
  }

  .block-rand-content img {
    display: none;
  }
  .header {
    padding-top: 10px;
  }
  .stats {
    gap: 14px;
  }
  .hero--info {
    padding: 50px 24px;
    font-size: 36px;
  }
  .form--title {
    font-size: 30px;
  }
  .form {
    padding: 34px 30px;
  }
  .ways-item-shown img,
.ways-item-text {
    display: none;
  }
  .block-ways {
    padding-bottom: 90px;
  }
  .ways-item-text {
    padding-left: 20px;
  }
  .ways-item-text--num {
    font-size: 32px;
  }
  .ways-item-text--info {
    margin-top: 5px;
  }
  .ways-item-placeholder span {
    font-size: 20px;
    white-space: nowrap;
  }
  .ways-item-placeholder {
    padding: 16px 0;
    text-transform: uppercase;
    font-size: 48px;
    background-color: #fff;
    border-bottom: 1px solid #c7c7c7;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #c7c7c7;
  }
  .ways-item-placeholder::before {
    position: absolute;
    content: "";
    right: 5px;
    height: 1px;
    left: 0;
    background-color: #c7c7c7;
    right: 0;
    bottom: -1px;
  }
  .ways-item-placeholder span {
    font-weight: 700;
    text-transform: uppercase;
    color: #c7c7c7;
    font-size: 26px;
    margin-left: 16px;
    margin-top: 17px;
  }
  .ways-item-text--num {
    font-size: 40px;
    display: block;
  }
  .ways-item-text--info {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 12px;
    display: block;
  }
  .block-ways-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 300px;
    width: 100%;
  }
  .ways-item {
    position: static;
    display: none;
    min-height: 500px;
  }
  .ways-item.active {
    display: block;
  }
  .ways-item-shown {
    position: absolute;
    right: 0;
    bottom: 44%;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(-90deg);
    width: 435px;
  }
  [data-ways-item="1"] {
    right: -3%;
  }
  [data-ways-item="2"] {
    right: -31%;
  }
  [data-ways-item="3"] {
    right: -59%;
  }
}
@media screen and (max-width: 992px) {
  .block-ai-left {
    margin-top: 60px;
  }
  .aspects {
    margin: 0;
  }
  .block-rand {
    padding: 32px 32px 50px;
  }
  .stats {
    gap: 3px;
  }
  .hero-ty {
    padding: 50px 30px;
  }
  .hero {
    padding: 30px;
  }
  .h1 {
    font-size: 32px;
    line-height: 1.4;
  }
  .under-h1 {
    font-size: 20px;
    margin-bottom: 50px;
  }
  .stats {
    margin-top: 50px;
  }
  .hero--info {
    padding: 25px;
    font-size: 20px;
  }
  .line-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    width: 100%;
    padding-top: 30px;
  }
  .line-item {
    padding: 0 0 0 85px!important;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
  }
  .line-item:nth-child(2) {
    padding-top: 0;
  }
  .line-item:nth-child(2) .line-item--num {
    left: -2px;
  }
  .line {
    width: 9px;
    left: 28px;
    top: 24px;
    bottom: 0;
    height: 100%;
  }
  .line-fill {
    height: 15%;
    width: 9px;
  }
  .line-item::after {
    display: none;
  }
  .line-fill::after {
    top: auto;
    bottom: -3px;
  }
  .line-item--num {
    opacity: 1;
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(21px);
    padding: 12px 10px 15px;
    background-position: 0px 3px;
  }
  .weak {
    grid-template-columns: repeat(2, 1fr);
  }
  .ways-item-shown {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 100%;
  }
  .ways-item-shown.active .ways-item-placeholder,
.ways-item-shown.active .ways-item-placeholder span {
    color: #000;
  }
  .block-ways-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .block-ways-left {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    height: auto;
    padding: 30px 0 0;
  }
  .block-ways {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0;
  }
  .block-ways-top {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .block-ways-top h2 {
    max-width: 100%;
  }
  .ways-item {
    min-height: auto;
    opacity: 1;
    height: auto;
  }
  .ways-item.active {
    display: block;
  }
  .block-ready,
.block-ai {
    padding-top: 100px;
  }
  .form--title {
    max-width: 100%;
  }
  .form--text {
    max-width: 500px;
  }
  .form {
    margin: 30px auto 0;
  }
  .block--title,
.block-ways-top h2 {
    font-size: 28px;
  }
  .block-text-border strong,
  .aspect-nav--title,
  .text--big, .text--big * {
    font-size: 20px;
  }

  .aspect-nav--title {
    margin-left: 15px;
  }
}

@media (min-width: 992px) {
.line-block-top .line-item:nth-child(2) {
  padding-left: 4px;
  max-width: 278px;
}
.line-block-top .line-item:nth-child(3),
.line-block-top .line-item:nth-child(4) {
  max-width: 238px;
}
.block--title-business {
  margin-bottom: 59px;
}
}
@media (min-width: 768px) {
  .form-grid {
    display: grid;
    gap: 0 37px;
    grid-template-columns: 1fr 1fr; 
    grid-template-areas:
      "name position"
      "email qty"
      "phone galyz"
      "company initiatives";
  }
  .item-name         { grid-area: name; }
  .item-position     { grid-area: position; }
  .item-email        { grid-area: email; }
  .item-qty          { grid-area: qty; }
  .item-phone        { grid-area: phone; }
  .item-galyz        { grid-area: galyz; }
  .item-company      { grid-area: company; }
  .item-initiatives  { grid-area: initiatives; }
}
@media screen and (max-width: 768px) {

  .hide-on-mob  {
    display: none;
  }

  .hide-on-desk {
    display: block;
  }
  .block-text-half {
    grid-template-columns: repeat(1, 1fr);
  }
 
  .block-rand-info {
    grid-template-columns: repeat(2, 1fr);
  }
  .block-ai--img {
    height: auto;
  }
  .block-rand, 
  .block-ai-left {
    margin-bottom: 60px;
  }
  .block-ready,
.block-ai {
    padding-top: 60px;
  }
  .block--title,
.block-ways-top h2,
.block-step--titile,
.form--title {
    font-size: 26px;
  }
  .ways-item,
.block-form {
    margin-top: 30px;
  }
  .ways-item h3 {
    font-size: 20px;
  }
  .text--big, .text--big *,
.ways-item-placeholder span,
.block--undertitle {
    font-size: 18px;
  }
  .graph {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
  .weak-item--numb {
    max-width: 40px;
    height: 40px;
    font-size: 22px;
    margin-right: 15px;
  }
  .line-fill {
  }
  .weak {
    gap: 15px;
  } 
  .line-block {
    padding-left: 0;
  }
  .line-item:nth-child(2) .line-item--num {
    left: -2px;
  }
  .block-form {
    padding: 30px 15px;
    border-radius: 20px;
    flex-direction: column;
    background-position: 71% 0;
  }
  .form--two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .input-item {
    max-width: 100%
  }
  .form-messages {
    padding: 20px 10px;
    top: -10px;
    right: -10px;
    font-size: 16px;
    left: -10px;
    bottom: 10px;
  }
  
  .form-acceptance {
    margin-left: 0
  }
  .block-text-border {
    padding: 0 16px;
  }
  .block-text-gray {
    padding: 16px;
    border-radius: 16px;
  }

  .cisco-logo { 
    max-width: 210px;
  }
}

@media screen and (min-width: 576px) {
  .aspect-nav-item:hover .aspect-nav--title,
  .aspect-nav-item:hover .aspect-nav--num {
    color: #000;
  }
  .aspect-nav-item:not(._1):hover .aspect-nav--arrow {
    transform: translateX(-6px);
  }
} 
@media screen and (max-width: 576px) {
  .btn--header span:first-child {
    display: block;
  }

  .btn--header {
    font-size: 14px; 
    gap: 0;
    flex-direction: column;
    padding-right: 50px;
    padding-left: 20px;
  }
  .mob,
.hero--info,
.ways-item-placeholder::before {
    display: none;
  }
  .btn--header {
    min-width: 140px;
  }

  .lang-active {
    padding: 5px 0 0;
  }
  .logos {
    gap: 10px;
  }
  .logos a:first-child img {
    width: 60px;
  }
  .logos a:last-child img {
    width: 65px;
  }
  .h1 {
    font-size: 28px;
  }
  .block-ai-item h3 {
    font-size: 22px;
  }
  .text--big, .text--big *, .ways-item-placeholder span, .block--undertitle,
.block-ai-item p,
.weak-item--info,
.line-item--info,
.block-ways-left p {
    font-size: 16px;
  }
  .block-ai-item {
    padding: 15px;
    border-radius: 16px;
  }
  .block-ai-left p {
    margin-bottom: 15px;
  }
  .block-ready {
    padding: 60px 0;
  }
  .block-solutions {
    padding-bottom: 60px;
  }
  .weak {
    grid-template-columns: 1fr;
  } 
  .form {
    padding: 30px;
    max-width: 100%;
    width: 100%;
  }
  .block-ways-left {
    padding: 0;
  }
  .block-ways-left p {
    max-width: 100%;
  }
  .graph {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .aspects-grid {
    grid-template-columns: 1fr;
  }
  .aspects-nav {
    height: auto;
  }
  .aspects-content {
    margin-top: 30px;
  }

  .aspect-nav-item {
    padding: 16px 0;
    position: static;
    width: 100%;
  }
  .aspect-img {
    max-width: 100%;
  }
  .block-rand {
    padding: 16px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 375px) {
  .btn--header {
    min-width: 180px;
  }
  .logos {
    gap: 10px;
  }
  .logos a:first-child img {
    width: 50px;
  }
  .logos a:last-child img {
    width: 55px;
  }
  .h1 {
    font-size: 26px;
  }
  .block--title, .block-ways-top h2, .block-step--titile, .form--title {
    font-size: 24px;
  }
  .block-form {
    padding: 20px 15px;
  }
  .hero-ty,
  .hero {
    padding: 20px 15px;
  }
  .btn--white {
    padding: 0 63px 0 20px;
  }
}


@media screen and (max-width: 992px) {

  .block--title-business {
  margin-bottom: 20px;
}
  .line-item--num {
    left: -2px;
  }
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 999;
    width: 40px;
    height: 40px;
  }
  .menu-toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
  }
  .menu-toggle span:nth-child(1) {
    top: 5px;
    left: 0;
  }
  .menu-toggle span:nth-child(2) {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .menu-toggle span:nth-child(3) {
    bottom: 5px;
    left: 0;
  }
  .menu-toggle.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 46%;
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    bottom: 48%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  } 

  .input-item {
    margin-bottom: 10px;
  }
} 