.section {
  padding-bottom: var(--padding);
  margin-bottom: var(--padding);
  border-bottom: 1px solid var(--color-background);
  position: relative;
}
.section:last-child {
  padding: 0px;
  margin: 0px;
  border: 0;
}

.section__title {
  margin-bottom: 40px;
}
.section__text {
  color: var(--color-gray);
  margin-bottom: 40px;
}
.section__title + .section__text {
  margin-top: -33px;
}
@media (max-width: 991px) {
  .section__title + .section__text {
    margin-top: -25px;
  }
}

.section--hero {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
  position: relative;
  z-index: 0;
}
.section-hero {
  min-height: 840px;
  position: relative;
  padding-bottom: 90px;
}
.section-hero__video {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.section-hero__video:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(22, 22, 24, 0.75) 0%,
    rgba(22, 22, 24, 1) 100%
  );
}
.section-hero__video video {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  opacity: 1;
  transform: translateX(-50%) translateY(-50%);
}
.section-hero__header {
  margin: 0px 0px 50px 0px;
}
.section-hero__title {
  margin: 0px 0px 0px 0px;
  white-space: nowrap;
}

@media (min-width: 1600px) {
  .section-hero__title {
    font-size: 155px;
  }
}

@media (min-width: 1920px) {
  .section-hero__title {
    font-size: 190px;
  }
}
.section-hero__title span {
  color: var(--color-blue);
}
.section-hero__subtitle {
  color: #747475;
  max-width: 360px;
  text-align: right;
  position: relative;
  top: 18px;
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .section-hero__subtitle {
    max-width: 320px;
  }
}
.section-hero__text {
  margin: 0px 0px 0px 0px;
  max-width: 1350px;
}
.section-hero__line {
  background: rgba(255, 255, 255, 0.25);
  font-size: 0;
  height: 2px;
  position: relative;
  margin-left: 24px;
  margin-top: 5px;
}
.section-hero__line:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: -24px;
  top: -3px;
}
.section-hero__scroll {
  position: absolute;
  left: 0;
  bottom: 110px;
  display: flex;
  align-items: center;
}
.section-hero__scroll-icon {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: border-color 0.25s;
}
.section-hero__scroll-line {
  background: rgba(255, 255, 255, 0.25);
  font-size: 0;
  height: 2px;
  width: 90px;
  margin: 0px 15px;
}
.section-hero__scroll-text a {
  text-decoration: none;
}
body.-notouch .section-hero__scroll:hover .section-hero__scroll-icon {
  border-color: #fff;
}

@media (max-width: 1279px) {
  .section-hero {
    min-height: 750px;
    padding-bottom: 50px;
  }
  .section-hero__scroll {
    bottom: 90px;
  }
}
@media (max-width: 991px) {
  .section-hero__scroll-icon {
    width: 60px;
    height: 60px;
  }
  .section-hero__scroll-icon svg {
    width: 25px;
    height: 24px;
  }
}
@media (max-width: 767px) {
  .section-hero {
    min-height: 660px;
  }
  .section-hero__header {
    margin-bottom: 20px;
  }
  .section-hero__text {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .section-hero__text {
    font-size: 38px;
  }
}

.section-about {
  background: var(--color-blue);
  padding: 80px 520px 80px 50px;
  border-radius: 24px;
  position: relative;
}
.section-about__image {
  position: absolute;
  right: -60px;
  top: -190px;
}
.section-about__image img {
  max-width: none;
  border-radius: 16px;
}
.section-about__text {
  margin: 0px 0px 40px 0px;
}
.about-list > .row {
  margin-left: -20px;
  margin-right: -20px;
}
.about-list > .row > div {
  padding-left: 20px;
  padding-right: 20px;
}
.about-list__title {
  padding-bottom: 16px;
  margin: 0px 0px 19px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  max-width: 90%;
}
.about-list__text {
  letter-spacing: -0.02em;
  max-width: 550px;
}

@media (max-width: 1439px) {
  .section-about {
    padding-right: 370px;
  }
  .section-about__image {
    right: -170px;
  }
}
@media (max-width: 1279px) {
  .section-about {
    padding-right: 50px;
  }
  .section-about__text {
    font-size: 33px;
    padding-right: 180px;
  }
  .section-about__image {
    width: 340px;
    top: -160px;
    right: -120px;
  }
  .section-about__image img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
}
@media (max-width: 991px) {
  .section-about {
    padding: 50px;
  }
  .section-about__text {
    font-size: 28px;
    line-height: 1.2;
    padding-right: 0;
  }
  .section-about__image {
    width: 220px;
    right: -60px;
    top: -190px;
  }
  .about-list__title {
    max-width: 100%;
  }
  .about-list__text {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .section-about {
    padding-left: 24px;
    padding-right: 24px;
  }
  .section-about__image {
    width: 200px;
    top: -170px;
  }
}
@media (max-width: 575px) {
  .section-about {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
  }
  .section-about__title {
    margin-bottom: 15px;
  }
  .section-about__text {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .section-about__image {
    width: 180px;
    right: 0;
  }
  .section-about__image img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .about-list__title {
    font-size: 24px;
    line-height: 1.3;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .about-list__text {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .section-services__list {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.services-list {
}
.services-list__item {
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-background);
  margin-bottom: 40px;
  transition: background 0.25s;
}
.services-list__item.-secondary {
  display: none;
}
.services-list__header {
  padding: 56px;
  cursor: pointer;
}
.services-list__header-icon {
  margin-right: 68px;
  min-width: 206px;
  flex: 0 0 206px;
  height: 206px;
  background: linear-gradient(
    42.64deg,
    rgba(255, 255, 255, 0.11) -25.52%,
    rgba(255, 255, 255, 0) 110.39%
  );
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-list__header-icon span {
  position: relative;
  display: block;
  width: 99px;
  height: 99px;
}
.services-list__header-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: opacity 0.25s;
}
.services-list__header-icon img:first-child {
  opacity: 1;
}
.services-list__header-icon img:last-child {
  opacity: 0;
}
.services-list__header-content {
  margin-top: -10px;
}
.services-list__title {
  margin-bottom: 17px;
}
.services-list__header-text {
  color: var(--color-gray);
  max-width: 1200px;
}
.services-list__header-meta {
  margin-top: 32px;
  letter-spacing: -0.02em;
}
.services-list__header-meta ul {
  margin: 0px 0px -15px;
  padding: 0px;
  list-style: none;
  display: flex;
}
.services-list__header-meta ul li {
  margin: 0px 50px 15px 0px;
  padding: 0px;
}
.services-list__header-meta ul li:last-child {
  margin-right: 0;
}
.services-list__hidden {
  display: none;
}
.services-list__content {
  padding: 56px 56px 56px 330px;
  position: relative;
}
.services-list__content.-secondary {
  background: #313135;
}
.services-list__content:first-child:before {
  content: "";
  position: absolute;
  left: 330px;
  right: 56px;
  top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.services-list__content > .row {
  margin-left: -30px;
  margin-right: -30px;
}
.services-list__content > .row > div {
  padding-left: 30px;
  padding-right: 30px;
}
.services-list__content .team-list__item {
  width: 285px;
  height: auto;
}
.services-list__image {
  position: relative;
  border-radius: 16px;
  height: 306px;
  overflow: hidden;
  margin: 48px 0px;
}
.services-list__image:first-child {
  margin-top: 0;
}
.services-list__image:last-child {
  margin-bottom: 0;
}
.services-list__image:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(22, 22, 24, 0.34);
}
.services-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-list__btn {
  margin-top: 56px;
}
body.-notouch .services-list__item:not(.-active):hover {
  background: #19191c;
}
body.-notouch
  .services-list__item:hover
  .services-list__header-icon
  img:first-child,
.services-list__item.-active .services-list__header-icon img:first-child {
  opacity: 0;
}
body.-notouch
  .services-list__item:hover
  .services-list__header-icon
  img:last-child,
.services-list__item.-active .services-list__header-icon img:last-child {
  opacity: 1;
}
@media (max-width: 1279px) {
  .services-list__header {
    padding: 50px;
  }
  .services-list__header-icon {
    margin-right: 50px;
  }
  .services-list__content {
    padding: 50px;
  }
  .services-list__content:first-child:before {
    left: 50px;
    right: 50px;
  }
  .services-list__btn {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .services-list__header-icon {
    min-width: 162px;
    flex: 0 0 162px;
    height: 162px;
    width: 162px;
    margin-bottom: 25px;
  }
  .services-list__header-content {
    margin-top: 0;
  }
  .services-list__content .team-list__item {
    margin-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .services-list__header {
    padding: 24px 24px 32px 24px;
  }
  .services-list__header-icon {
    margin-bottom: 20px;
  }
  .services-list__header-meta {
    margin-top: 20px;
  }
  .services-list__content {
    padding: 40px 24px 36px 24px;
  }
  .services-list__content:first-child:before {
    left: 24px;
    right: 24px;
  }
  .services-list__btn {
    margin-top: 36px;
  }
  .services-list__image {
    margin: 36px 0px;
  }
  .services-list__image:first-child {
    margin-top: 0;
  }
  .services-list__image:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .services-list__item {
    margin-bottom: 24px;
  }
  .services-list__header {
    padding: 15px 15px 32px 15px;
  }
  .services-list__header-meta ul li {
    min-width: auto;
  }
  .services-list__content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .services-list__content:first-child:before {
    left: 15px;
    right: 15px;
  }
}
@media (max-width: 375px) {
  .services-list__content .team-list__item {
    width: 100%;
  }
}

.privet-promo {
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-background);
  margin-bottom: 40px;
  transition: background 0.25s;
  text-align: center;
  position: relative;
  padding: 48px;
  z-index: 0;
}
.privet-promo__video {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.privet-promo__video:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: var(--color-background);
  opacity: 0.87;
  transition: background 0.25s, opacity 0.25s;
}
.privet-promo__video video {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  opacity: 1;
  transform: translateX(-50%) translateY(-50%);
}
.privet-promo__logo {
  margin-bottom: 30px;
}
.privet-promo__title {
  margin: 0px 0px 0px 0px;
}
.privet-promo__link {
  margin-top: 35px;
}
.privet-promo__link a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.privet-promo__link svg {
  fill: var(--color-white);
  opacity: 0.4;
  transition: opacity 0.25s, transform 0.25s;
  margin-left: 16px;
  flex: 0 0 25px;
}
body.-notouch .privet-promo:hover .privet-promo__link svg {
  transform: translate3d(3px, -3px, 0px);
  opacity: 1;
}
body.-notouch .privet-promo:hover .privet-promo__video:after {
  background: var(--color-black);
  opacity: 0.95;
}
@media (max-width: 575px) {
  .privet-promo {
    margin-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .privet-promo__link svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }
}

@media (min-width: 992px) {
  .section-cases {
    padding-top: 17px;
  }
}
.cases-images {
  position: relative;
  right: 30px;
  background: url(../../i/logo-mini.svg) 50% 50% no-repeat;
  background-size: 200px auto;
  height: 100%;
}
.cases-images__item {
  position: absolute;
  right: 0px;
  top: 0px;
  transform: translateX(-150px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
}
.cases-images__item img {
  width: 473px;
  max-width: none;
  border-radius: 16px;
}
.cases-images__item.-active {
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}

.cases-list__item {
  margin: 0px 0px 25px 0px;
  padding: 0px 70px 35px 48px;
  position: relative;
  border-bottom: 1px solid var(--color-background);
  transition: transform 0.25s, border 0.25s;
  cursor: pointer;
}
.cases-list__item:after {
  content: "";
  background: var(--color-background);
  position: absolute;
  bottom: -1px;
  width: 100%;
  right: 0px;
  height: 1px;
  transition: transform 0.25s, background 0.25s;
}
.cases-list__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.cases-list__item:last-child:after {
  display: none;
}
.cases-list__item svg {
  position: absolute;
  right: 0px;
  top: 10px;
  fill: var(--color-gray-2);
  transition: transform 0.25s, fill 0.25s;
}
.cases-list__image {
  height: 275px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 18px;
}
.cases-list__image img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cases-list__num {
  position: absolute;
  left: -20px;
  top: 7px;
  align-items: center;
  width: 50px;
  justify-content: flex-end;
}
.cases-list__num:before {
  content: "";
  left: 0px;
  top: 0px;
  width: 8px;
  height: 8px;
  background: var(--color-blue);
  border-radius: 50%;
  margin-right: 8px;
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
}
.cases-list__title {
  margin: 0px 0px 4px 0px;
}
.cases-list__text {
  color: var(--color-gray-2);
  transition: color 0.25s;
  max-width: 760px;
}
@media (min-width: 992px) {
  body.-notouch .cases-list__item:hover {
    transform: translateX(-35px);
    border-bottom-color: var(--color-white);
  }
  body.-notouch .cases-list__item:hover .cases-list__text {
    color: var(--color-white);
  }
  body.-notouch .cases-list__item:hover svg {
    fill: var(--color-white);
    transform: translateX(35px);
  }
  body.-notouch .cases-list__item:hover::after {
    background: var(--color-white);
    transform: translateX(35px);
  }
  body.-notouch .cases-list__item:hover .cases-list__num:before {
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .cases-list__item {
    padding: 0;
    margin: 0;
    border: 0;
  }
  .cases-list__item:after {
    display: none;
  }
  .cases-list__title {
    margin-bottom: 18px;
    padding-right: 50px;
  }
  .cases-list__text {
    color: #fff;
  }
  .cases-list__item svg {
    fill: currentColor;
    top: 295px;
  }
}

.section-team__subtext {
  padding-top: 12px;
  letter-spacing: -0.02em;
  margin: 0px;
  max-width: 490px;
}

.team-list .row {
  margin-bottom: -30px;
}
.team-list .row > div {
  padding-bottom: 30px;
}
.team-list__item {
  height: 100%;
  background: var(--color-blue-dark);
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px 25px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: background 0.25s;
  z-index: 0;
  line-height: 1.1;
}
.team-list__name {
  transition: color 0.25s;
}
.team-list__position {
  opacity: 0.6;
  margin-top: 5px;
}
.team-list__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  z-index: -1;
}
.team-list__item.-career {
  background: var(--color-background);
  justify-content: space-between;
}
.team-list__item.-career .team-list__name {
  color: var(--color-gray);
}
.team-list__link {
  margin: 0px;
}
.team-list__link a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.team-list__link svg {
  position: relative;
  left: 20px;
  top: -5px;
  transition: fill 0.25s, transform 0.25s;
}
body.-notouch .team-list__item.-career:hover {
  background: var(--color-blue);
}
body.-notouch .team-list__item.-career:hover .team-list__name {
  color: var(--color-white);
}
body.-notouch .team-list__item.-career:hover .team-list__link svg {
  fill: var(--color-white);
  transform: translate3d(3px, -3px, 0px);
}

@media (min-width: 1920px) {
  .team-list .team-list__item {
    min-height: 440px;
  }
}
@media (max-width: 991px) {
  .team-list .swiper {
    overflow: inherit;
  }
  .team-list .swiper-slide {
    width: 282px;
  }
}
@media (max-width: 450px) {
  .team-list .swiper-slide {
    opacity: 0.4;
    transition: opacity 0.25s;
  }
  .team-list .swiper-slide-active {
    opacity: 1;
  }
}

.section-contacts {
  background-color: var(--color-background);
  padding: 80px 50px;
  border-radius: 24px;
}
.section-contacts__title {
  margin-bottom: 45px;
  max-width: 1200px;
}
@media (max-width: 991px) {
  .section-contacts {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .section-contacts {
    padding: 32px 24px;
  }
  .section-contacts__title {
    margin-bottom: 30px;
  }
  .section-contacts__btn .btn {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .section-contacts {
    padding-left: 15px;
    padding-right: 15px;
  }
}
