

/* Start:/local/templates/itls/components/nastart/block/about_banner/style.css?17746193176974*/
@charset "UTF-8";
.banner h1 {
  color: var(--white-100);
  position: relative;
  z-index: 5;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.banner h1.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media screen and (max-width: 767px) {
  .banner .container {
    padding: 0;
  }
}
.banner__items {
  padding: 50px;
  background: var(--primary);
  min-height: 700px;
  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;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .banner__items {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .banner__items {
    min-height: 830px;
    padding: 20px;
  }
}
.banner__items::before {
  content: "";
  position: absolute;
  width: 1174px;
  height: 1165px;
  border-radius: 1000px;
  background: var(--black);
  -webkit-filter: blur(200px);
  filter: blur(200px);
  z-index: 0;
  left: -300px;
  bottom: -400px;
}
@media screen and (max-width: 1380px) {
  .banner__items::before {
    width: 1004px;
    height: 1005px;
    left: -240px;
    bottom: -280px;
  }
}
@media screen and (max-width: 1180px) {
  .banner__items::before {
    left: -340px;
  }
}
@media screen and (max-width: 991px) {
  .banner__items::before {
    width: 704px;
    height: 705px;
    left: -250px;
    bottom: -220px;
  }
}
@media screen and (max-width: 767px) {
  .banner__items::before {
    width: 670px;
    height: 665px;
    left: -400px;
    bottom: -200px;
  }
}
.banner__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 395px;
  position: absolute;
  right: 50px;
  bottom: 50px;
}
@media screen and (max-width: 1380px) {
  .banner__img {
    max-width: 360px;
  }
}
@media screen and (max-width: 1180px) {
  .banner__img {
    bottom: 180px;
  }
}
@media screen and (max-width: 991px) {
  .banner__img {
    bottom: 200px;
  }
}
@media screen and (max-width: 767px) {
  .banner__img {
    /*  max-width: 320px;
    min-width: 320px; */
    width: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: 278px;
    bottom: auto;
  }
}
.banner__img img {
  width: 100%;
  height: 100%;
}
.banner__text {
  font-size: 20px;
  color: var(--white-80);
  max-width: 800px;
  font-family: var(--second-family);
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.banner__text.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media screen and (max-width: 1380px) {
  .banner__text {
    max-width: 700px;
  }
}
@media screen and (max-width: 767px) {
  .banner__text {
    font-size: 18px;
    max-width: 100%;
  }
}
.banner__end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .banner__end {
    gap: 20px;
  }
}
.banner__btn {
  position: relative;
  font-weight: 600;
  color: var(--white-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--white-100);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  display: none;
}
@media screen and (max-width: 767px) {
  .banner__btn {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.banner__btn:hover {
  color: var(--primary);
  background: var(--white-100);
}
.banner__btn:hover::after {
  -webkit-animation: buttonArrow 0.7s infinite
    cubic-bezier(0.84, -0.01, 0.25, 0.99);
  animation: buttonArrow 0.7s infinite cubic-bezier(0.84, -0.01, 0.25, 0.99);
  background-image: url("/local/templates/itls/assets/images/arrow-2.svg");
}
.banner__btn::after {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  background-image: url("/local/templates/itls/assets/images/arrow-w.svg");
  background-repeat: repeat-x; /* Повтор по горизонтали */
  background-size: 24px 24px;
  background-position: 0 0;
  z-index: 9;
}
@-webkit-keyframes buttonArrow {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background-position: 0 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background-position: 24px 0;
  }
}
@keyframes buttonArrow {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background-position: 0 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background-position: 24px 0;
  }
}
.banner__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.banner__btns.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media screen and (max-width: 767px) {
  .banner__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.banner__btns a {
  height: 54px;
}

.banner-second .banner__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner-second .banner__items {
  background: url("/local/templates/itls/assets/images/5ce889ade20f87005021cd079130496d66bf4752.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .banner-second .banner__items {
    min-height: 740px;
  }
}
.banner-second .banner__items::before {
  display: none;
}
.banner-second .banner__img {
  display: none;
}

/* End */


/* Start:/local/templates/itls/components/nastart/block/about_numbers_white/style.css?17746193177501*/
.about {
  padding: 150px 0;
  background: var(--black);
  position: relative;
}
@media screen and (max-width: 991px) {
  .about {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding: 80px 0;
  }
}
.about::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 60%;
  background: var(--primary-down-gradient);
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.about h2 {
  color: var(--white-100);
  max-width: 850px;
}
@media screen and (max-width: 1380px) {
  .about h2 {
    max-width: 700px;
  }
}
@media screen and (max-width: 991px) {
  .about h2 {
    max-width: 100%;
  }
}
.about__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.about__head.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media screen and (max-width: 991px) {
  .about__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about__head {
    margin-bottom: 40px;
  }
}
.about__text {
  color: var(--white-80);
  font-family: var(--second-family);
}
.about__info {
  max-width: 415px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1380px) {
  .about__info {
    max-width: 325px;
  }
}
@media screen and (max-width: 991px) {
  .about__info {
    max-width: 100%;
  }
}
.about__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding: 130px 0 0;
}
@media screen and (max-width: 991px) {
  .about__blocks {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    padding: 60px 0 0;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
@media screen and (max-width: 767px) {
  .about__blocks {
    gap: 10px;
    padding: 30px 0 0;
  }
}
.about__block {
  padding: 20px 20px 100px;
  background: var(--primary-down-gradient);
  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;
  -webkit-transition: 1600ms;
  transition: 1600ms;
  width: 100%;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (max-width: 991px) {
  .about__block {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .about__block {
    padding: 15px;
    gap: 10px;
  }
}
.about__block-num {
  color: var(--white-100);
  font-size: 90px;
  font-weight: 400;
  line-height: 110%;
}
@media screen and (max-width: 1380px) {
  .about__block-num {
    font-size: 80px;
  }
}
@media screen and (max-width: 1180px) {
  .about__block-num {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .about__block-num {
    font-size: 50px;
  }
}
.about__block-text {
  font-family: var(--second-family);
  font-size: 20px;
  color: var(--white-80);
}
@media screen and (max-width: 767px) {
  .about__block-text {
    font-size: 18px;
  }
}
.about__block--top {
  -webkit-transform: translateY(-130px);
  -ms-transform: translateY(-130px);
  transform: translateY(-130px);
}
@media screen and (max-width: 991px) {
  .about__block--top {
    -webkit-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}
@media screen and (max-width: 767px) {
  .about__block--top {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.about__block--bottom {
  -webkit-transform: translateY(130px);
  -ms-transform: translateY(130px);
  transform: translateY(130px);
}
@media screen and (max-width: 991px) {
  .about__block--bottom {
    -webkit-transform: translateY(60px);
    -ms-transform: translateY(60px);
    transform: translateY(60px);
  }
}
@media screen and (max-width: 767px) {
  .about__block--bottom {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
}

.scrolled-in .about__block {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}


.about-us {
  padding: 150px 0;
}
@media screen and (max-width: 1180px) {
  .about-us {
    padding: 120px 0;
  }
}
@media screen and (max-width: 991px) {
  .about-us {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-us {
    padding: 80px 0;
  }
}
.about-us__title {
  font-size: 54px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  text-align: center;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.about-us__title.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media screen and (max-width: 1180px) {
  .about-us__title {
    font-size: 42px;
  }
}
@media screen and (max-width: 991px) {
  .about-us__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .about-us__title {
    font-size: 28px;
  }
}
.about-us__text {
  font-family: var(--second-family);
  font-size: 20px;
  color: var(--black-80);
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.about-us__text.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media screen and (max-width: 767px) {
  .about-us__text {
    font-size: 18px;
  }
}
.about-us__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: 50px;
}
@media screen and (max-width: 767px) {
  .about-us__items {
    gap: 40px;
  }
}
.about-us .about__block {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fff),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  height: auto;
}
.about-us .about__block-num {
  color: var(--primary);
}
.about-us .about__block-text {
  color: var(--black-80);
}

/* End */


/* Start:/local/templates/itls/components/nastart/block/block_video/style.css?17748758503113*/
.leading {
  position: relative;
  color: var(--white-100);
}
.leading h2 {
  max-width: 850px;
}
@media screen and (max-width: 1380px) {
  .leading h2 {
    max-width: 600px;
  }
}
.leading__bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 100%;
  height: 100%;
}
.leading__bg img, .leading__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.leading__items {
  padding: 748px 0 100px;
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1580px) {
  .leading__items {
    padding: 500px 0 100px;
  }
}
@media screen and (max-width: 1180px) {
  .leading__items {
    padding: 400px 0 100px;
  }
}
@media screen and (max-width: 991px) {
  .leading__items {
    -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;
    gap: 50px;
    padding: 537px 0 100px;
  }
}
@media screen and (max-width: 767px) {
  .leading__items {
    padding: 537px 0 40px;
    gap: 33px;
  }
}
.leading__video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 18px;
  padding-right: 18px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .leading__video {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }

}

.leading__video::after{
  content: '';
  position: relative;
  background: url('/local/templates/itls/assets/images/play.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  
}

.leading__video::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 640px;
  background: var(--black-20);
  right: 0px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-backdrop-filter: blur(5.1px);
  backdrop-filter: blur(5.1px);
}
@media screen and (max-width: 767px) {
  .leading__video::before {
    right: 0;
  }
}
.leading__video:hover::before {
  width: calc(100% + 18px);
  border-radius: 640px;
}
.leading__video p {
  position: relative;
  z-index: 5;
}
.leading__video span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 5;
}

.leading{
  margin-bottom: -2px;
}
/* End */


/* Start:/local/templates/itls/components/nastart/block/blocks/style.css?17746193172425*/
.benefit-second {
  padding: 150px 0;
  background: var(--white-100);
}
@media screen and (max-width: 1180px) {
  .benefit-second {
    padding: 120px 0;
  }
}
@media screen and (max-width: 991px) {
  .benefit-second {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .benefit-second {
    padding: 80px 0;
  }
}
.benefit-second h4 {
  color: var(--primary);
}
.benefit-second__blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 50px;
}
@media screen and (max-width: 1380px) {
  .benefit-second__blocks {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .benefit-second__blocks {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .benefit-second__blocks {
    margin-top: 40px;
  }
}
.benefit-second__block {
  padding: 20px;
  background: var(--light-gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.benefit-second__block.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media screen and (max-width: 767px) {
  .benefit-second__block {
    gap: 20px;
    padding: 15px;
  }
}
.benefit-second__block:first-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
@media screen and (max-width: 1380px) {
  .benefit-second__block:first-child {
    grid-column: auto;
  }
}
.benefit-second h2 {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.benefit-second h2.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.benefit-second__text {
  font-family: var(--second-family);
  color: var(--black-80);
}

/* End */


/* Start:/local/templates/itls/components/bitrix/news.list/clients/style.css?17746193174858*/
.clients {
  padding: 150px 0;
}
@media screen and (max-width: 991px) {
  .clients {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .clients {
    padding: 80px 0;
  }
}
.clients__blocks {
  -webkit-animation: ticker 20s linear infinite;
  animation: ticker 20s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  position: relative;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .clients__blocks {
    gap: 10px;
    padding: 0 5px;
  }
}
.clients__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@-webkit-keyframes ticker {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes ticker {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.clients__block {
  background: var(--primary);
  width: 326px;
  height: 138px;
  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;
}
@media screen and (max-width: 1180px) {
  .clients__block {
    width: 280px;
    height: 117px;
  }
}
@media screen and (max-width: 991px) {
  .clients__block {
    width: 220px;
    height: 88px;
  }
}
@media screen and (max-width: 767px) {
  .clients__block {
    width: 160px;
    height: 70px;
  }
}
.clients__block span {
  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;
  padding: 20px 59px 19px;
  background: var(--light-gray);
  border-radius: 40px;
}
@media screen and (max-width: 1180px) {
  .clients__block span {
    padding: 15px 50px 16px;
  }
}
@media screen and (max-width: 991px) {
  .clients__block span {
    border-radius: 30px;
    padding: 16px 50px 16px;
  }
}
@media screen and (max-width: 767px) {
  .clients__block span {
    padding: 9px 25px;
    border-radius: 20px;
  }
}
.clients__block span img {
  width: 100%;
}
@media screen and (max-width: 1180px) {
  .clients__block span img {
    max-width: 176px;
  }
}
@media screen and (max-width: 991px) {
  .clients__block span img {
    max-width: 116px;
  }
}
@media screen and (max-width: 767px) {
  .clients__block span img {
    max-width: 107px;
  }
}
.clients__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.clients__head.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media screen and (max-width: 991px) {
  .clients__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .clients__head {
    gap: 15px;
    margin-bottom: 40px;
  }
}
.clients__head h2 {
  width: 100%;
}
.clients__head-text {
  width: 100%;
}
.clients__head-text span {
  display: block;
  max-width: 293px;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  color: var(--primary);
}
@media screen and (max-width: 1380px) {
  .clients__head-text span {
    font-size: 26px;
  }
}
@media screen and (max-width: 1180px) {
  .clients__head-text span {
    font-size: 24px;
    max-width: 269px;
  }
}
@media screen and (max-width: 991px) {
  .clients__head-text span {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .clients__head-text span {
    font-size: 22px;
  }
}
.clients__bottom {
  font-family: var(--second-family);
  max-width: 50%;
  margin-top: 50px;
  padding-left: 10px;
  margin: 50px 0 0 auto;
  color: var(--black-80);
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.clients__bottom.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media screen and (max-width: 991px) {
  .clients__bottom {
    margin: 50px 0 0;
    padding-left: 0;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .clients__bottom {
    margin: 40px 0 0;
  }
}
.clients__bottom p {
  max-width: 570px;
}
@media screen and (max-width: 991px) {
  .clients__bottom p {
    max-width: none;
  }
}

/* End */


/* Start:/local/templates/itls/components/bitrix/news.list/about_team/style.css?177461931716606*/
.team {
  padding: 150px 0;
}
@media screen and (max-width: 1180px) {
  .team {
    padding: 120px 0;
  }
}
@media screen and (max-width: 991px) {
  .team {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .team {
    padding: 80px 0;
  }
}
.team h2 {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.team h2.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.team__btn {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.team__btn.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.team__mini {
  font-weight: 600;
  line-height: 100%;
  color: var(--primary);
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.team__mini.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.team__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  padding: 0 150px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1580px) {
  .team__head {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .team__head {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.team__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-transition: 3000ms;
  transition: 3000ms;
}
.team__img img {
  width: 100%;
}
.team__text {
  min-width: 500px;
  color: var(--black-80);
  font-family: var(--second-family);
}
@media screen and (max-width: 1580px) {
  .team__text {
    min-width: 450px;
  }
}
@media screen and (max-width: 991px) {
  .team__text {
    min-width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .team__text {
    min-width: auto;
  }
}
.team__name {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  color: var(--primary);
}
@media screen and (max-width: 767px) {
  .team__name {
    font-size: 20px;
  }
}
.team__info {
  padding-top: 20px;
  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;
  opacity: 0;
  min-height: 102px;
  max-height: 102px;
}
@media screen and (max-width: 1580px) {
  .team__info {
    min-height: 126px;
    max-height: 126px;
  }
}
@media screen and (max-width: 767px) {
  .team__info {
    min-height: auto;
    max-height: none;
    gap: 5px;
    padding-top: 15px;
  }
}
.team .team__blocks {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .team .team__blocks {
    padding: 0 15px;
    padding-bottom: 30px;
  }
}
.team .swiper-wrapper {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  margin-left: -120px;
}
@media screen and (max-width: 1780px) {
  .team .swiper-wrapper {
    margin-left: -130px;
  }
}
@media screen and (max-width: 1580px) {
  .team .swiper-wrapper {
    margin-left: -80px;
  }
}
@media screen and (max-width: 1180px) {
  .team .swiper-wrapper {
    margin-left: -80px;
  }
}
@media screen and (max-width: 991px) {
  .team .swiper-wrapper {
    margin-left: -40px;
  }
}
@media screen and (max-width: 767px) {
  .team .swiper-wrapper {
    margin-left: 0;
    width: 100%;
  }
}
.team .swiper-slide {
  width: auto;
  -webkit-transition: 300ms;
  transition: 300ms;
}
@media screen and (max-width: 767px) {
  .team .swiper-slide {
    width: 100% !important;
    min-width: 100% !important;
  }
}
.team .swiper-slide-active {
  min-width: 500px !important;
  width: 500px !important;
}
@media screen and (max-width: 1580px) {
  .team .swiper-slide-active {
    min-width: 450px !important;
    width: 450px !important;
  }
}
@media screen and (max-width: 991px) {
  .team .swiper-slide-active {
    min-width: 350px !important;
    width: 350px !important;
  }
}
@media screen and (max-width: 767px) {
  .team .swiper-slide-active {
    width: 100% !important;
    min-width: 100% !important;
  }
}
.team .swiper-slide-active .team__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
.team .swiper-button-l2,
.team .swiper-button-r2 {
  width: 44px;
  height: 44px;
  background: var(--primary);
  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;
  cursor: pointer;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.team .swiper-button-l2:hover,
.team .swiper-button-r2:hover {
  background: var(--primary-80);
}
.team .swiper-button-l2.swiper-button-disabled,
.team .swiper-button-r2.swiper-button-disabled {
  background: var(--light-gray);
}
.team .swiper-button-l2 .swiper-button-next,
.team .swiper-button-r2 .swiper-button-next {
  background-image: url("/local/templates/itls/assets/images/arrow-r.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 24px;
  height: 24px;
  z-index: 2;
  display: block;
  position: static;
  margin: 0;
}
.team .swiper-button-l2 .swiper-button-next::after,
.team .swiper-button-r2 .swiper-button-next::after {
  display: none;
}
.team .swiper-button-l2 .swiper-button-prev,
.team .swiper-button-r2 .swiper-button-prev {
  background-image: url("/local/templates/itls/assets/images/arrow-l.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 24px;
  height: 24px;
  z-index: 2;
  cursor: pointer;
  display: block;
  position: static;
  margin: 0;
}
.team .swiper-button-l2 .swiper-button-prev::after,
.team .swiper-button-r2 .swiper-button-prev::after {
  display: none;
}
.team .swiper__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .team .swiper__nav {
    display: none;
  }
}
.team .team__blocks .swiper-pagination3 {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  display: none;
}
@media screen and (max-width: 767px) {
  .team .team__blocks .swiper-pagination3 {
    gap: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.team .swiper-pagination3 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--primary);
  opacity: 1;
  -webkit-transition: 300ms;
  transition: 300ms;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .team .swiper-pagination3 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.team .swiper-pagination3 .swiper-pagination-bullet-active {
  width: 55px;
  background: var(--primary);
}
@media screen and (max-width: 767px) {
  .team .swiper-pagination3 .swiper-pagination-bullet-active {
    width: 35px;
  }
}

.squad {
  padding: 150px 0;
  background: var(--white-100);
}
@media screen and (max-width: 1180px) {
  .squad {
    padding: 120px 0;
  }
}
@media screen and (max-width: 991px) {
  .squad {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .squad {
    padding: 80px 0;
  }
}
.squad h2 {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.squad h2.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.squad__big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 20px;
  background: var(--light-gray);
}
@media screen and (max-width: 991px) {
  .squad__big {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .squad__big {
    padding: 15px;
    gap: 20px;
  }
}
.squad__big-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 40px);
}
@media screen and (max-width: 991px) {
  .squad__big-img {
    width: 100%;
  }
}
.squad__big-img img {
  width: 100%;
}
.squad__big h3 {
  color: var(--primary);
}
.squad__big-top {
  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;
}
.squad__big-prof {
  font-size: 20px;
  color: var(--black-80);
  font-family: var(--second-family);
}
@media screen and (max-width: 767px) {
  .squad__big-prof {
    font-size: 18px;
  }
}
.squad__big-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 15px;
  font-size: 36px;
  font-weight: 500;
  line-height: 110%;
}
@media screen and (max-width: 1380px) {
  .squad__big-bottom {
    font-size: 32px;
  }
}
@media screen and (max-width: 1180px) {
  .squad__big-bottom {
    font-size: 30px;
  }
}
@media screen and (max-width: 991px) {
  .squad__big-bottom {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .squad__big-bottom {
    font-size: 25px;
  }
}
.squad__big-bottom svg {
  min-width: 30px;
}
@media screen and (max-width: 767px) {
  .squad__big-bottom svg {
    min-width: 26px;
    height: 23px;
  }
}
.squad__big-info {
  width: 100%;
  padding: 10px 0;
  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;
}
@media screen and (max-width: 991px) {
  .squad__big-info {
    gap: 40px;
  }
}
.squad .squad__card {
  position: relative;
  height: 540px;
}
@media screen and (max-width: 1580px) {
  .squad  .squad__card {
    height: 450px;
  }
}
@media screen and (max-width: 1380px) {
  .squad  .squad__card {
    height: 375px;
  }
}
@media screen and (max-width: 991px) {
  .squad  .squad__card {
    height: 450px;
  }
}
@media screen and (max-width: 767px) {
  .squad .squad__card {
    min-height: 430px;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .squad  .squad__card:hover .squad__card-img {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }
  .squad  .squad__card:hover .squad__card-info {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
.squad__card-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.squad__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}
.squad__card-info {
  position: absolute;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: var(--light-gray);
  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;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding: 20px;
}
.squad__card-info h4 {
  color: var(--primary);
}
.squad__card-bottom {
  font-family: var(--second-family);
  color: var(--black-80);
}
.squad__card-logo {
  position: absolute;
  top: 40px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1380px) {
  .squad__card-logo {
    max-width: 150px;
    top: 20px;
  }
}
@media screen and (max-width: 991px) {
  .squad__card-logo {
    max-width: 200px;
  }
}
.squad .squad__cards {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .squad .squad__cards {
    padding-bottom: 30px;
    margin-top: 40px;
  }
}
.squad .swiper-button-l3,
.squad .swiper-button-r3 {
  width: 44px;
  height: 44px;
  background: var(--primary);
  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;
  cursor: pointer;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.squad .swiper-button-l3:hover,
.squad .swiper-button-r3:hover {
  background: var(--primary-80);
}
.squad .swiper-button-l3.swiper-button-disabled,
.squad .swiper-button-r3.swiper-button-disabled {
  background: var(--light-gray);
}
.squad .swiper-button-l3 .swiper-button-next,
.squad .swiper-button-r3 .swiper-button-next {
  background-image: url("/local/templates/itls/assets/images/arrow-r.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 24px;
  height: 24px;
  z-index: 2;
  display: block;
  position: static;
  margin: 0;
}
.squad .swiper-button-l3 .swiper-button-next::after,
.squad .swiper-button-r3 .swiper-button-next::after {
  display: none;
}
.squad .swiper-button-l3 .swiper-button-prev,
.squad .swiper-button-r3 .swiper-button-prev {
  background-image: url("/local/templates/itls/assets/images/arrow-l.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 24px;
  height: 24px;
  z-index: 2;
  cursor: pointer;
  display: block;
  position: static;
  margin: 0;
}
.squad .swiper-button-l3 .swiper-button-prev::after,
.squad .swiper-button-r3 .swiper-button-prev::after {
  display: none;
}
.squad .squad__cards .swiper__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .squad .squad__cards .swiper__nav {
    display: none;
  }
}
.squad .squad__cards .swiper-pagination4 {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  display: none;
}
@media screen and (max-width: 767px) {
  .squad .squad__cards .swiper-pagination4 {
    gap: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.squad .swiper-pagination4 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--primary);
  opacity: 1;
  -webkit-transition: 300ms;
  transition: 300ms;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .squad .swiper-pagination4 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.squad .swiper-pagination4 .swiper-pagination-bullet-active {
  width: 55px;
  background: var(--primary);
}
@media screen and (max-width: 767px) {
  .squad .swiper-pagination4 .swiper-pagination-bullet-active {
    width: 35px;
  }
}

@media screen and (max-width: 767px) {
  .squad__slide_turn .squad__card-info {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .squad__slide_turn .squad__card-img {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }
}

/* End */


/* Start:/local/templates/itls/components/bitrix/news.list/history/style.css?17746193178257*/
.history {
  padding: 150px 0;
  background: var(--black);
  position: relative;
}
.history::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 60%;
  background: var(--primary-down-gradient);
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media screen and (max-width: 1180px) {
  .history {
    padding: 120px 0;
  }
}
@media screen and (max-width: 991px) {
  .history {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .history {
    padding: 80px 0;
  }
}
.history__items {
  position: relative;
  z-index: 5;
}
.history h2 {
  color: var(--white-100);
  max-width: 850px;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.history h2.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.history__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 216px;
}
@media screen and (max-width: 991px) {
  .history__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .history__head {
    margin-bottom: 40px;
    gap: 20px;
  }
}
.history__mini {
  color: var(--white-80);
  max-width: 415px;
  font-family: var(--second-family);
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.history__mini.element-show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media screen and (max-width: 991px) {
  .history__mini {
    max-width: 100%;
  }
}
.history__year {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  color: var(--white-100);
}
@media screen and (max-width: 1380px) {
  .history__year {
    font-size: 48px;
  }
}
@media screen and (max-width: 1180px) {
  .history__year {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  .history__year {
    font-size: 31px;
  }
}
.history__text {
  font-family: var(--second-family);
  color: var(--white-80);
  max-width: 405px;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .history__text {
    font-size: 18px;
  }
}

.history .history__blocks {
  overflow: visible;
}
@media screen and (max-width: 1180px) {
  .history .history__blocks {
    padding-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .history .history__blocks {
    padding-bottom: 30px;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .history .history__blocks {
    padding-left: 0;
  }
}
.history__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding-left: 10px;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .history__block {
    padding-top: 60px;
  }
}
.history__block::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: var(--white-100);
}
.history__strip {
  background-image: url("/local/templates/itls/assets/images/timeline.svg");
  background-repeat: repeat;
  height: 30px;
  min-width: 3000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
@media screen and (max-width: 1180px) {
  .history__strip {
    left: calc(50% - 15px);
  }
}
@media screen and (max-width: 991px) {
  .history__strip {
    left: calc(50% - 15px);
    min-width: 1020px;
  }
}
@media screen and (max-width: 767px) {
  .history__strip {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.history .swiper__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .history .swiper__nav {
    display: none;
  }
}
.history .swiper-button-l4,
.history .swiper-button-r4 {
  width: 44px;
  height: 44px;
  border: 1px solid var(--white-100);
  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;
  cursor: pointer;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.history .swiper-button-l4:hover,
.history .swiper-button-r4:hover {
  background: var(--white-100);
}
.history .swiper-button-l4:hover .swiper-button-next,
.history .swiper-button-r4:hover .swiper-button-next {
  background-image: url("/local/templates/itls/assets/images/arrow-r2.svg");
}
.history .swiper-button-l4:hover .swiper-button-prev,
.history .swiper-button-r4:hover .swiper-button-prev {
  background-image: url("/local/templates/itls/assets/images/arrow-l2.svg");
}
.history .swiper-button-l4.swiper-button-disabled,
.history .swiper-button-r4.swiper-button-disabled {
  background: var(--light-gray);
}
.history .swiper-button-l4 .swiper-button-next,
.history .swiper-button-r4 .swiper-button-next {
  background-image: url("/local/templates/itls/assets/images/arrow-r.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 24px;
  height: 24px;
  z-index: 2;
  display: block;
  position: static;
  margin: 0;
}
.history .swiper-button-l4 .swiper-button-next::after,
.history .swiper-button-r4 .swiper-button-next::after {
  display: none;
}
.history .swiper-button-l4 .swiper-button-prev,
.history .swiper-button-r4 .swiper-button-prev {
  background-image: url("/local/templates/itls/assets/images/arrow-l.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 24px;
  height: 24px;
  z-index: 2;
  cursor: pointer;
  display: block;
  position: static;
  margin: 0;
}
.history .swiper-button-l4 .swiper-button-prev::after,
.history .swiper-button-r4 .swiper-button-prev::after {
  display: none;
}
.history .history__blocks .swiper-pagination2 {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .history .history__blocks .swiper-pagination2 {
    gap: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.history .swiper-pagination2 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--white-100);
  opacity: 1;
  -webkit-transition: 300ms;
  transition: 300ms;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .history .swiper-pagination2 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.history .swiper-pagination2 .swiper-pagination-bullet-active {
  width: 55px;
  background: var(--white-100);
}
@media screen and (max-width: 767px) {
  .history .swiper-pagination2 .swiper-pagination-bullet-active {
    width: 35px;
  }
}
.history .swiper-slide {
  opacity: 0.3;
}
.history .swiper-slide-next {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .history .swiper-slide-next {
    opacity: 0.3;
  }
}
@media screen and (max-width: 991px) {
  .history .swiper-slide-active {
    opacity: 1;
  }
}

.history .history__blocks .swiper-pagination2 .swiper-pagination-bullet {
  margin: 0;
}

.squad .squad__cards .swiper-pagination4 .swiper-pagination-bullet {
  margin: 0;
}

/* End */
/* /local/templates/itls/components/nastart/block/about_banner/style.css?17746193176974 */
/* /local/templates/itls/components/nastart/block/about_numbers_white/style.css?17746193177501 */
/* /local/templates/itls/components/nastart/block/block_video/style.css?17748758503113 */
/* /local/templates/itls/components/nastart/block/blocks/style.css?17746193172425 */
/* /local/templates/itls/components/bitrix/news.list/clients/style.css?17746193174858 */
/* /local/templates/itls/components/bitrix/news.list/about_team/style.css?177461931716606 */
/* /local/templates/itls/components/bitrix/news.list/history/style.css?17746193178257 */
