:root {
  --main-color-black: #0D0D0D;
  --main-color-white: #FFFFFF;
  --color-grey-80: #333333;
  --color-grey-50: #808080;    
  --color-grey-40: #999999;    
  --color-grey-30: #B3B3B3;  
  --color-grey-10: #E6E6E6;
  --color-grey-5: #F2F2F2;
  --color-carrot: #E9603E;
}
@font-face {
  font-display: swap;
  font-family: "Gill Sans";
  src:  url("/wp-content/themes/showreal/fonts/GillSans.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}
  @font-face {
  font-display: swap;
  font-family: "Geologica";
  src:  url("/wp-content/themes/showreal/fonts/Geologica/Geologica-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-display: swap;
  font-family: "Geologica";
  src:  url("/wp-content/themes/showreal/fonts/Geologica/Geologica-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-display: swap;
  font-family: "Geologica";
  src:  url("/wp-content/themes/showreal/fonts/Geologica/Geologica-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-display: swap;
  font-family: "Geologica";
  src:  url("/wp-content/themes/showreal/fonts/Geologica/Geologica-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-display: swap;
  font-family: "Geologica";
  src:  url("/wp-content/themes/showreal/fonts/Geologica/Geologica-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Geologica';
  background-color: var(--color-grey-10);
  margin: 48px 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  height: 100%;
}
body.hidden-scroll {
  overflow: hidden;
}
button {
  font-family: 'Geologica';
}
/*Скрыть капчу */
.grecaptcha-badge {
    border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important; 
}

/* Виджет соц сетей */
.chat-widget {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;

    .chat-button {
        width: 60px;
        height: 60px;
        background-color: var(--main-color-black);
        border-radius: 50%;
        position: relative;
        cursor: pointer;
        animation: pulse 2s infinite;

        a {
          display: block;
          width: 100%;
          height: 100%;
        }

        svg.icon{
            transition: opacity 2s ease;
            width: 100%;
            height: 100%;
            padding: 20%;
        }
    }

    .hidden {
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media all and (max-width:769px) {
    .chat-widget {
        bottom: 85px;
    }
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 48px;
}
section {
  margin-top: 48px;
}
.logo {
  font-family: 'Geologica';
  font-weight: 200;
  text-transform: uppercase;
  font-size: 46px;
  line-height: 1em;
  color: var(--main-color-white);
}
.section-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  height: 768px;
}
.header-left, .header-right {
  border-radius: 32px;
}
.header-left {
  background-color: var(--main-color-black);
  color: var(--main-color-white);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: 1 / 3;
}
.header-left__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
}
.burger {
  display: none;
  position: relative;
  min-width: 16px;
  height: 32px;
  cursor: pointer;
  border: none;
  background: inherit;
  transform: translateX(-50%);
}
.burger:before {
  content: '';
  position: absolute;
  background-color: var(--main-color-white);
  width: 100%;
  height: 3px;
  top: 25%;
  transition: .2s all;
}
.burger:after {
  content: '';
  position: absolute;
  background-color: var(--main-color-white);
  width: 100%;
  height: 3px;
  bottom: 25%;
  transition: .2s all;
}
.burger i {
  opacity: 1;
  position: absolute;
  background-color: var(--main-color-white);
  width: 100%;
  height: 3px;
  top: 50%;
  transform: translateY(-50%);
  transition: .2S all;
}
.burger.active i {
  opacity: 0 !important;
  width: 0% !important;
}
.burger.active:before {
  top: 50% !important;
  transform: rotate(45deg);
  border-radius: 4px;
  transition: .2s all;
}
.burger.active:after {
  top: 50% !important;
  transform: rotate(-45deg);
  border-radius: 4px;
  transition: .2s all;
}
.header-menu nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
}
.header-menu nav ul li {
  padding: 4px 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.92px;
}
.header-menu nav ul li a {
  text-decoration: none;
  color: inherit;
  position: relative;
}
.header-slogan {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.header-slogan__text {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -1.4px;
}
.header-slogan__btn {
  padding: 16px 24px;
  font-size: 24px;
  font-weight: 600;
  width: fit-content;
  border-radius: 999px;
  cursor: pointer;
  color: var(--main-color-black);
  background: var(--main-color-white);
  transition: transform 0.5s ease;
  border: none;
}
.header-right {
  overflow: hidden;
  z-index: -100;
  position: relative;
  height: 100%;
  width: 100%;
}
.header-right__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-right__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.header-right__content .overlay {
  background: linear-gradient(to top, var(--main-color-black), transparent);
  padding: 48px;
}
.header-right__content .overlay .overlay-block {
  background: var(--main-color-white);
  border-radius: 99px;
  color: var(--main-color-black);
  padding: 8px 16px;
  font-size: 18px;
  width: fit-content;
  margin-bottom: 24px;
  font-weight: 500;
}
.header-right__content .overlay .overlay-text {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1.24px;
  color: var(--main-color-white);
}

.highlight {
  position: relative;
  display: inline-block;
  color: var(--main-color-white);
  padding: 0 5px;
  background: var(--color-grey-80);
}
.highlight .corner {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--main-color-white);
}
.why-highlight {
  position: relative;
  display: inline-block;
  color: var(--main-color-black);
  padding: 0 5px;
  background: var(--color-grey-10);
}
.why-highlight .corner {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--main-color-black);
}
.section-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-wrap: balance;
}
.numbers-block {
  padding: 48px;
  border-radius: 32px;
  background: var(--color-grey-5);
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
}
.numbers-block__text {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -1.08px;
  color: var(--main-color-black);
}
.numbers-block__achievement {
  background: var(--main-color-white);
  border-radius: 999px;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1.24px;
  font-weight: 700;
  padding: 12px 24px;
  height: fit-content;
}
.section-team {
  background: var(--main-color-white);
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.team-desc {
  padding: 96px;
  background-color: var(--color-grey-5);
}
.team-desc__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -1.56px;
  margin-bottom: 48px;
}
.team-desc__ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.team-desc__li {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -1.08px;
  width: 100%;
  height: 100%;
}
.team-highlight {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team-highlight__text {
  padding: 24px;
}
.team-highlight .corner {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 1px solid var(--main-color-black);
}
.highlight .top-left, .team-highlight .top-left, .why-highlight .top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.highlight .top-right, .team-highlight .top-right, .why-highlight .top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}
.highlight .bottom-left, .team-highlight .bottom-left, .why-highlight .bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}
.highlight .bottom-right, .team-highlight .bottom-right, .why-highlight .bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
.section-reach {
  display: flex;
  justify-content: flex-end;
}
.reach-block {
  border-radius: 32px;
  padding: 48px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.reach-block-main {
  background: var(--main-color-black);
  width: 100%;
}
.reach-block-back {
  margin-right: -8.26%;
}
.reach-block-back .reach-user-detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.reach-block-back .reach-user-detail span {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -1.08px;
  color: var(--main-color-white);
  opacity: .2;
  text-transform: uppercase;
}
.reach-block-grey-50 {
  background: var(--color-grey-50);
}
.reach-block-grey-40 {
  background: var(--color-grey-40);
}
.reach-block-grey-30 {
  background: var(--color-grey-30);
}
.reach-user {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.reach-user-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}
.reach-user-name svg.ellipse {
  width: 64px;
  height: 64px;
}
.reach-user-name svg.status {
  width: 172px;
  height: 32px;
}
.reach-user-detail {

}
.reach-user-detail__text {
  color: var(--main-color-white);
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -1.08px;
  margin-bottom: 12px;
  text-wrap: balance;
}
.reach-user-detail__info {
  background: var(--main-color-white);
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1.24px;
  font-weight: 700;
  color: var(--main-color-black);
  width: fit-content;
}
.reach-icons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end;
}
.reach-icons svg {
  width: 40px;
  height: 40px;
}
.section-niches {
  padding: 48px 0;
}
.niches-title {
  margin-bottom: 48px;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.56px;
  color: var(--main-color-black);
}
.niches-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.niches-block {
  background: var(--main-color-white);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--main-color-black);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -1.08px;
}
.section-why, .section-how {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 48px;
  border-radius: 32px;
  overflow: hidden;
}
.section-why {
  background: var(--main-color-white);
  color: var(--main-color-black);
}
.why-title, .how-title {
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.56px;
}
.why-bullets, .how-bullets {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-wrap: balance;
}
.why-block, .how-block {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -1.08px;
}
.why-block {
  color: var(--main-color-black);
}
.why-block svg, .how-block svg {
  width: 80px;
  height: 80px;
}
.why-block div, .how-block div {
  margin-top: 24px;
}
.why-btn {
  background: var(--main-color-black);
  color: var(--main-color-white);
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.92px;
  width: fit-content;
  cursor: pointer;
  transition: transform 0.5s ease;
  border: none;
}
.section-how {
  background: var(--main-color-black);
  color: var(--main-color-white);
}
.how-block div {
  font-weight: 500;
}
.section-partners {
  padding: 48px 0;
  position: relative;
}
.partners-bookmarks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}
.partners-bookmark {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.partners-bookmark__text {
  background: var(--main-color-white);
  border-radius: 24px;
  padding: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -1.08px;
  width: fit-content;
  position: relative;
  overflow: hidden;
  text-wrap: balance;
  margin-left: 10px;
}
.partners-bookmark__text--black {
  background: var(--main-color-black);
  color: var(--main-color-white);
}
.partners-bookmark svg {
  height: 72px;
  position: absolute;
  align-self: end;
}

.section-partners .container {
  position: relative;
  overflow: hidden;
  /*background: linear-gradient(to right, var(--color-grey-10), rgba(0, 0, 0, 0), var(--color-grey-10));*/
}
.partners-logo {
  display: flex;
  flex-direction: column;
  gap: 24px;
  -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
  );
  mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
  );
}
.partners-line {
  display: flex;
  gap: 16px;
  flex-direction: row;
  width: fit-content;
  align-items: center;
}
.partners-item {
  background: var(--main-color-white);
  border-radius: 16px;
  width: 216px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
}
.partners-item img,
.partners-item svg {
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}

@media (hover: hover) {
  .partners-item:hover img,
  .partners-item:hover svg {
      filter: grayscale(0%) opacity(1);
  }
}
.partners-line-top { animation: scroll-left 30s linear infinite; }
.partners-line-bottom { animation: scroll-right 30s linear infinite; }

@media all and (min-width: 1280px) {
  .partners-line-top { animation: scroll-left 55s linear infinite; }
  .partners-line-bottom { animation: scroll-right 55s linear infinite; }
}
@keyframes scroll-left {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
      transform: translateX(-50%);
  }
  100% {
      transform: translateX(0);
  }
}

.section-video {
  height: 768px;
}
.swiper-video {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.swiper-slide {
  background-color: lightgray;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
  opacity: 1;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.swiper-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-block {
  display: flex;
  flex-direction: row;
  gap: 12px;
  position: relative;
  justify-content: space-between;
  color: var(--main-color-white);
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 24px;
}
.video-stat {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  align-items: flex-end;
}
.video-stat span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  justify-content: center;
  background: var(--main-color-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px 28px 16px 28px;
  padding: 18px 27px;
}
.video-stat svg {
  margin-top: auto;
}
.video-name {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -1.08px;
  font-weight: 600;
}
.video-title {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.92px;
}
.video-button .video-button-navigation {
  position: absolute;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 16px;
  border-radius: 999px;
  background: var(--main-color-white);
  color: var(--main-color-black);
}
.video-button .video-button-navigation svg {
  fill: var(--main-color-black);
}
.video-play {
  position: absolute;
  width: 55px;
  height: 55px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color-white);
  border-radius: 50%;
  transition: .2s;
  z-index: 1;
}
.swiper-slide::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--main-color-white);
  border-radius: 50%;
  opacity: 0.2;
  transition: .4s ease-in-out;
  z-index: 1;
}
.video-play svg {
  position: relative;
  transition: .2s;
}
.video-button .video-button-prev {
  left: 33%;
}
.video-button .video-button-next {
  right: 33%;
}
.swiper-slide:not(.swiper-slide-active) {
  transform: scale(1, 0.88) !important;
  opacity: 0.4;
  pointer-events: none;
}
.swiper-slide:not(.swiper-slide-active) .video-play, .swiper-slide:not(.swiper-slide-active) svg.svg-play, .swiper-slide:not(.swiper-slide-active)::before {
  display: none;
}

.section-plans {
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  color: var(--main-color-black);
}
.plans-title {
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.56px;
}
.plans-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.plans-item {
  border-radius: 32px;
  background: var(--color-grey-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.plans-item-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.plan-header {
  padding: 32px;
  border-top-right-radius: 32px;
  border-top-left-radius: 32px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.plan-header__pro {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1.08px;
  font-weight: 700;
}
.plan-header__name {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1.24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  opacity: .5;
}
.plan-main {
  height: 100%;
  padding: 32px 32px 0;
  border-top-right-radius: 32px;
  border-top-left-radius: 32px;
  background-color: var(--main-color-white);
}
.plans-message {
  position: relative;
  width: fit-content;
  border-radius: 20px;
  padding: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.92px;
  background: var(--main-color-black);
  color: var(--main-color-white);
  margin-bottom: 24px;
  margin-left: 10px;
}
.plans-message__tail {
  height: 40px;
  position: absolute;
  bottom: 0;
  transform: translateX(-19px);   
}
.plans-message__text {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
}
.plans-message__text svg {
  width: 32px;
  height: 32px;
}
.plan-main__desc {
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -1.08px;
  font-weight: 700;
}
.plan-main__list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style-type: none;
  padding: 0;
}
.plan-main__item {
  position: relative;
  padding-left: 36px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -1.08px;
}
.plan-main__item::before {
  content: '';
  position: absolute;
  background-image: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20opacity%3D%220.4%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M24.8215%208.15485L27.1785%2010.5119L12.6666%2025.0237L4.82147%2017.1785L7.17849%2014.8215L12.6666%2020.3097L24.8215%208.15485Z%22%20fill%3D%22%230D0D0D%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}
.plan-footer {
  padding: 52px 32px 32px;
  background-color: var(--main-color-white);
}
.plan-footer button {
  background: var(--main-color-black);
  color: var(--main-color-white);
  padding: 16px;
  border-radius: 999px;
  text-align: center;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.92px;
  border: none;
  cursor: pointer;
  transition: transform 0.5s ease;
  width: 100%;
}
.plans-item--special {
  align-items: center;
  justify-content: space-evenly;
}
.plans-item--special span {
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  letter-spacing: -1.4px;
  font-feature-settings: 'ss01' on;
  background: linear-gradient(93.17deg, #808080 0%, #333333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plans-item--special span b {
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.56px;
}
.plans-item--special svg {
  
}
.plans-button {
  padding: 48px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  background: linear-gradient(to right, #808080, #333333);
  border-radius: 24px;
}
.plans-button__text {
  font-size: 48px;
  color: var(--main-color-white);
  line-height: 56px;
  letter-spacing: -1.56px;
}
.plans-button__btn {
  padding: 16px 24px;
  border-radius: 999px;
  color: var(--main-color-black);
  background: var(--main-color-white);
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.92px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.5s ease;
  white-space: nowrap;
  height: fit-content;
  margin: auto 0;
  border: none;
}
.section-backstage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 768px;
  gap: 24px;
}
.backstage-video {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.backstage-video__content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.backstage-right {
  grid-column: 2/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.backstage-right__title {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1.24px;
  text-align: center;
}
.backstage-right__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.backstage-right__item {
  padding: 24px;
  border-radius: 24px;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -1.08px;
  width: fit-content;
  position: relative;
  text-wrap: balance;
}
.backstage-right__item:nth-child(odd) {
  background: var(--main-color-white);
  color: var(--main-color-black);
  align-self: flex-start;
}
.backstage-right__item:nth-child(even) {
  color: var(--main-color-white);
  background: var(--main-color-black);
  align-self: flex-end;
}
.backstage-right__item:nth-child(odd)::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 55px;
  background: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2045%2055%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M9.71925%2015.9653C9.71925%2046.4644%20-3.38711%2048.9638%201.65415%2053.9644C6.69541%2058.9649%2044.5%2045.4644%2044.5%2021.9644C44.5%20-11.0358%209.71925%200.489029%209.71925%2015.9653Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  transform: translateX(-76%) translateY(7%);
  z-index: -1;
  bottom: 0;
}
.backstage-right__item:nth-child(even)::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 55px;
  background: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2045%2055%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M35.2807%2015.9653C35.2807%2046.4644%2048.3871%2048.9638%2043.3458%2053.9644C38.3046%2058.9649%200.5%2045.4644%200.5%2021.9644C0.5%20-11.0358%2035.2807%200.489029%2035.2807%2015.9653Z%22%20fill%3D%22%230D0D0D%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  transform: translateX(-24%) translateY(4%);
  z-index: -1;
  bottom: 0;
}
.section-photos {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--main-color-black);
}
.photos-card {
  flex: 1 1 calc(50% - 12px);
  max-width: calc(50% - 12px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 768px;
}
.photos-card__photo {
  background: var(--color-grey-5);
  border-radius: 24px;
}
.photos-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.photos-card__desc {
  background: var(--main-color-white);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}
.photos-card__header {

}
.photos-card__name {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -1.56px;
}
.photos-card__position {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -1.08px;
  margin-bottom: 48px;
}
.photos-card__education {
  display: flex;
  gap: 12px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.92px;
  text-wrap: balance;
}
.photos-card__footer {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.92px;
}
.section-comments {
  overflow: hidden;
  max-width: 100vw;
}
.comments-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  width: 100%;
}
.comments-line {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: fit-content;
  position: relative;
}
.comments-line-top {
  animation: scroll-left 80s linear infinite;
}
.comments-line-bottom {
  animation: scroll-right 80s linear infinite;
}
@media all and (min-width:1280px) {
  .comments-line-top {
      animation: scroll-left 160s linear infinite;
  }
  .comments-line-bottom {
      animation: scroll-right 160s linear infinite;
  }
}
.comments-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: 32px;
}
.comments-line-top .comments-item:nth-child(odd), .comments-line-bottom .comments-item:nth-child(even) {
  background: var(--main-color-white);
}
.comments-line-top .comments-item:nth-child(even), .comments-line-bottom .comments-item:nth-child(odd) {
  background: var(--color-grey-5);
}
.comments-item__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.92px;
  color: var(--main-color-black);
}
.comments-item__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 218px;
}
.comments-item__footer--user svg {
  width: 124px;
  height: 32px;
}
.comments-item__footer--quote svg {
  width: 32px;
  height: 32px;
}
.section-button {

}
.section-button__btn {
  padding: 48px;
  background: linear-gradient(to right, #808080, #333333);
  border-radius: 24px;
  font-size: 48px;
  color: var(--main-color-white);
  line-height: 56px;
  letter-spacing: -1.56px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  font-weight: 700;
  border: none;
  overflow: hidden;
  position: relative;
}
.section-button__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  border-radius: 24px;
}
.footer {
  padding: 48px 0;    
}
.footer-block {
  display: flex;
  flex-direction: row;
  gap: 48px;
  background: var(--main-color-black);
  padding: 48px;
  border-radius: 32px;
  justify-content: space-between;
  align-items: center;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}
.footer-soc {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-soc__back {
  background: var(--main-color-white);
  border-radius: 999px;
}
.footer-soc__item {
  color: var(--main-color-black);
  background: transparent;
  padding: 12px;
  border-radius: 999px;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.92px;
  overflow: hidden;
  transition: color 0.3s ease;
  position: relative;
  border: 1px solid var(--main-color-white);
}
.footer-soc__item::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main-color-black);
  transition: top 0.3s ease;
}
.footer-soc__item svg {
  z-index: 1;
}
.footer-soc__item span {
  padding: 0 8px;
  z-index: 1;
}
.footer-soc__item path {
  fill: var(--main-color-black);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.footer-bottom a {
  width: fit-content;
  margin: 4px 8px;
  color: var(--main-color-white);
  text-decoration: none;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.92px;
  position: relative;
  text-align: right;
  text-wrap: nowrap;
}
.footer-bottom a::after, .header-menu nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
@media all and (max-width: 1512px) {
  .numbers-block {
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
  }
  .team-desc {
      padding: 48px;
  }
  .reach-block-back {
      margin-right: calc(-8.7% - 66px);
  }
  .section-partners .container {
      padding: 0;
  }
  .partners-bookmarks {
      width: 70%;
      margin-inline: auto;
  }
  .plan-header, .plan-main {
      padding: 24px;
  }
  .plan-footer button, .plan-main__desc {
      font-size: 18px;
      line-height: 24px;
      letter-spacing: -0.92px;
  }
  .plan-main__list {
      gap: 20px;
  }
  .plan-main__desc {
      margin-bottom: 24px;
  }
  .plans-message {
      padding: 10px 13px;
  }
  .plan-header__pro, .plan-header__name, .plans-item--special span {
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -1.08px;
  }
  .plans-item--special span b {
      font-size: 32px;
      line-height: 40px;
      letter-spacing: -1.24px;
  }
  .plans-item--special svg {
      width: 200px;
      height: 200px;
  }
  .plans-message__tail {
      height: 30px;
  }
  .plans-message__text svg {
      width: 22px;
      height: 22px;
  }
  .plan-main__item {
      padding-left: 30px;
  }
  .plan-main__item, .plans-message__text {
      font-size: 14px;
      line-height: 18px;
      letter-spacing: -0.76px;
  }
  .plan-footer {
      padding: 0 24px 24px;
  }
  .plan-main__item::before {
      width: 18px;
      height: 18px;
  }
  .video-button .video-button-prev {
      left: 28%;
  }
  .video-button .video-button-next {
      right: 28%;
  }
  .footer-block {
      gap: 0;
  }
}
@media all and (max-width: 1500px) {
  .photos-card {
      flex: 1 1 100%;
      max-width: 100%;
  }
  .photos-card__photo {
      height: inherit;
      display: flex;
      justify-content: center;
  }
  .photos-card__photo img {
      width: inherit;
  }
}
@media all and (max-width: 1280px) {
  .section-header {
      height: 674px;
  }
  .team-desc__title {
      font-size: 40px;
      line-height: 48px;
      letter-spacing: -1.4px;
  }
  .header-slogan__text, .plans-button__text, .photos-card__name, .section-button__btn {
      font-size: 32px;
      line-height: 40px;
      letter-spacing: -1.24px;
  }
  .header-right__content .overlay .overlay-text, .backstage-right__title, .numbers-block__achievement {
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -1.08px;
  }
  .header-slogan__btn, .numbers-block__text, .team-desc__li, .why-block, .how-block, .plans-button__btn, .backstage-right__item, .photos-card__position {
      font-size: 18px;
      line-height: 24px;
      letter-spacing: -0.92px;
  }
  .numbers-block__achievement {
      padding: 8px 16px;
  }
  .team-highlight__text {
      padding: 12px;
  }
  .team-highlight .corner {
      width: 12px;
      height: 12px;
  }
  .reach-block-back {
      margin-right: -18.7%;
  }
  .section-video {
      height: 672px;
  }
  .section-backstage {
      height: 674px;
      overflow: hidden;
  }
  .backstage-right__item {
      padding: 16px;
  }
  .backstage-right__item:nth-child(odd)::before {
      transform: translateX(-58%) translateY(7%);
  }
  .backstage-right__item:nth-child(even)::after {
      transform: translateX(19%) translateY(4%);
      right: 0;
  }
  .photos-card {
      height: 674px;
  }
}
@media all and (max-width: 1024px) {
  .section-header {
      grid-template-columns: repeat(2, 1fr);
  }
  .header-left {
      grid-column: 1/2;
      justify-content: space-between;
      gap: 144px;
      position: relative;
  }
  .header-left__title {
      z-index: 12;
  }
  .burger {
      display: block;
  }
  .header-menu {
      background: var(--main-color-black);
      border-radius: 32px;
      overflow: hidden;
      line-height: 0;
      color: transparent;
      transition: line-height 0.5s, color 0.5s;
      position: absolute;
      width: 100%;
      height: fit-content;
      top: 0;
      left: 0;
      padding: 96px 48px 48px 48px;
  }
  .header-left.active .header-menu {
      z-index: 11;
  }
  .header-left.active .header-menu nav ul li {
      line-height: 1.2;
      color: var(--main-color-white);
  }
  .header-left .header-menu nav ul li a {
      pointer-events: none;
  }   
  .header-left.active .header-menu nav ul li a {
      pointer-events: all;
  }
  .header-left .header-menu nav ul li {
      line-height: 0;
      color: transparent;
      transition: line-height 0.5s, color 0.5s;
  }
  .header-left::after {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 10;
      transition: background 0.5s ease;
      pointer-events: none;
  }
  .header-left.active::after {
      background: rgba(51, 51, 51, .8);
      pointer-events: all;
  }
  .header-menu nav ul {
      flex-direction: column;
  }
  .header-slogan {
      height: 100%;
      justify-content: space-between;
  }
  .highlight {
      margin-bottom: 3px;
  }
  .header-slogan__btn {
      width: 100%;
  }
  .reach-block-back {
      margin-right: -21.3%;
  }
  .why-bullets, .how-bullets {
      grid-template-columns: repeat(3, 1fr);
      row-gap: 48px;
  }
  .partners-bookmarks {
      width: 100%;
  }
  .plans-block {
      grid-template-columns: repeat(3, 1fr);
  }
  .section-backstage {
      grid-template-columns: repeat(2, 1fr);
  }
  .backstage-right {
      grid-column: 2/3;
  }
  .backstage-right__item:nth-child(even) {
      margin-right: 10px;
  }
  .backstage-right__item {
      width: 70%;
  }
  .video-button .video-button-prev {
      left: 21%;
  }
  .video-button .video-button-next {
      right: 21%;
  }
}
@media all and (max-width: 1024px) {
  .logo {
      font-size: 35px;
      line-height: 32px;
  }
  .team-desc__title {
      font-size: 32px;
      line-height: 40px;
      letter-spacing: -1.24px;
  }
  .header-slogan__text, .reach-user-detail__info {
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -1.08px;
  }
  .reach-user-detail__text {
      font-size: 18px;
      line-height: 24px;
      letter-spacing: -0.92px;
  }
  .header-right__content .overlay .overlay-block {
      font-size: 14px;
      line-height: 18px;
      letter-spacing: -0.76px;
  }
  .header-left {
      padding: 24px;
  }
  .header-menu {
      padding: 130px 24px 24px 24px;
      width: 100%;
  }
  .header-right__content .overlay {
      padding: 24px;
  }
  .header-right__content .overlay .overlay-block {
      padding: 7px 14px;
  }
  .section-header {
      height: 576px;
  }
  .team-desc {
      padding: 24px;
  }
  .team-desc__title {
      margin-bottom: 24px;
  }
  .team-desc__ul {
      grid-template-columns: 1fr;
      gap: 12px;
  }
  .section-team {
      gap: 0px;
  }
  .section-reach {
      flex-direction: column-reverse;
  }
  .reach-block {
      padding: 24px;
  }
  .reach-block-main {
      width: auto;
  }
  .reach-block-back {
      margin-right: 0;
      margin-top: -14%;
  }
  .reach-user-name svg.ellipse {
      width: 48px;
      height: 48px;
  }
  .reach-user-name svg.status {
      width: 120px;
      height: 24px;
  }
  .reach-icons {
      gap: 12px;
  }
  .reach-icons svg {
      width: 24px;
      height: 24px;
  }
  .team-highlight {
      justify-content: flex-start;
  }
  .section-backstage {
      height: 576px;
  }
  .photos-card {
      height: 576px;
  }
  .photos-card__desc {
      padding: 24px;
      gap: 24px;
  }
  .photos-card__position {
      margin-bottom: 24px;
  }
  .photos-card__photo img {
      width: 100%;
  }
  .photos-card__footer {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 15;
      line-clamp: 15;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  .footer-block {
      display: flex;
      flex-direction: column;
      gap: 32px;
  }
  .footer-top {
      gap: 32px;
  }
  .footer-bottom {
      flex-direction: row;
  }
}
@media all and (max-width: 768px) {
  .logo {
    font-size: 24px;
    line-height: 32px;
  }
  .why-title, .how-title, .niches-title, .plans-title {
      font-size: 32px;
      line-height: 40px;
      letter-spacing: -1.24px;
  }
  .plans-button__text {
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -1.08px;
  }
  .numbers-block__achievement, .niches-block, .why-btn, .section-button__btn {
      font-size: 18px;
      line-height: 24px;
      letter-spacing: -0.92px;
  }
  .comments-item__text {
      font-size: 14px;
      line-height: 18px;
      letter-spacing: -0.76px;
  }
  .numbers-block {
      padding: 24px;
      gap: 60px;
  }
  .reach-block-back {
      margin-top: -18.7%;
  }
  .section-niches {
      padding: 24px 0;
  }
  .niches-title {
      margin-bottom: 24px;
  }
  .niches-block {
      padding: 8px 12px;
  }
  .section-why, .section-how {
      padding: 24px;
      gap: 24px;
  }
  .why-bullets, .how-bullets {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 24px;
  }
  .why-block, .how-block {
      display: flex;
      flex-direction: row;
      gap: 24px;
  }
  .why-block div, .how-block div {
      margin-top: 0;
  }
  .why-block svg, .how-block svg {
      width: 48px;
      height: 48px;
      flex: 0 0 auto;
  }
  .section-partners {
      padding: 24px 0;
  }
  .partners-bookmarks {
      padding: 0 48px; 
  }
  .partners-bookmark, .partners-bookmark__text {
      width: 100%;
  }
  .section-video {
      height: 576px;
  }
  .section-plans {
      padding-top: 24px;
      gap: 24px;
  }
  .plans-block {
      grid-template-columns: repeat(2, 1fr);
  }
  .plans-button {
      padding: 24px
  }
  .comments-item {
      gap: 12px;
      padding: 24px;
  }
  .comments-item__footer--user svg {
      width: 92px;
      height: 24px;
  }
  .comments-item__footer--quote svg {
      width: 24px;
      height: 24px;
  }
  .comments-item__footer {
      gap: 100px;
  }
  .section-button__btn {
      padding: 24px;
  }
  .footer-top {
      flex-direction: column;
      align-items: flex-start;
  }
  .footer .logo {
      font-size: 34px;
      line-height: 40px;
  }
  .footer-block {
      padding: 24px;
  }
  .comments-line, .comments-block {
      gap: 8px;
  }
}
@media all and (max-width: 767px) {
  .section-backstage {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: auto;
  }
  .backstage-video {
      position: absolute;
      width: 100%;
      height: 100%;
  }
  .backstage-right__title {
      z-index: 1;
      color: var(--main-color-white);
      width: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent);
      border-top-right-radius: 24px;
      border-top-left-radius: 24px;
  }
  .backstage-right__title div {
      padding: 24px;
  }
  .backstage-right {
      width: 100%;
      justify-content: space-between;
      gap: 96px;
  }
  .backstage-right__block {
      padding: 24px;
      gap: 8px;
  }
  .backstage-right__item:nth-child(even), .backstage-right__item:nth-child(odd) {
      width: 60%;
      z-index: 1;
  } 
  .backstage-right__item:nth-child(even) {
      margin-right: 0;
      background: rgba(13, 13, 13, .5);
  }
  .backstage-right__item:nth-child(odd) {
      background: rgba(255, 255, 255, 0.5);
  }
  .backstage-right__item:nth-child(odd)::before {
      mask-image: linear-gradient(to left bottom, transparent 50%, rgb(255 255 255) 85%);
      -webkit-mask-image: linear-gradient(to left bottom, transparent 50%, rgb(255 255 255) 85%);
  }
  .backstage-right__item:nth-child(even)::after {
      mask-image: linear-gradient(to right bottom, transparent 50%, rgb(13 13 13) 85%);
      -webkit-mask-image: linear-gradient(to right bottom, transparent 50%, rgb(13 13 13) 85%);
  }
  .backstage-right__item:nth-child(odd)::before, .backstage-right__item:nth-child(even)::after {
      opacity: .5;
  }
  .video-button {
      display: none;
  }
}
@media all and (max-width: 700px) {
  body {
      margin: 24px 0;
  }
  .container {
      padding: 0 24px;
  }
  section {
      margin-top: 24px;
  }
  .header-slogan__text, .partners-bookmark__text, .plans-button__text {
      font-size: 18px;
      line-height: 24px;
      letter-spacing: -0.92px;
  }
  .numbers-block__text, .photos-card__footer, .backstage-right__item {
      font-size: 14px;
      line-height: 18px;
      letter-spacing: -0.76px;
  }
  .section-header {
      display: flex;
      flex-direction: column;
      height: auto;
      gap: 12px;
  }
  .header-left {
      gap: 48px;
  }
  .header-left::after {
      width: calc(100vw + 20px);
      height: calc(100vh + 20px);
  }
  .header-menu {
      padding-top: 0;
  }
  .header-left.active .header-menu {
      padding-top: 130px;
  }
  .header-right {
      height: 576px;
  }
  .section-numbers {
      grid-template-columns: 1fr;
      gap: 12px;
  }
  .numbers-block {
      flex-direction: row;
      align-items: center;
  }
  .numbers-block__achievement {
      padding: 6px 12px;
  }
  .section-team {
      display: flex;
      flex-direction: column;
  }
  .team-desc__title {
      text-align: center;
  }
  .reach-block-back {
      margin-top: -19.7%;
  }
  .why-bullets, .how-bullets {
      display: flex;
      flex-direction: column;
  }
  .why-btn {
      width: 100%;
  }
  .why-block, .how-block {
      align-items: center;
  }
  .partners-logo {
      position: relative;
      flex-direction: row;
      margin-top: 24px;
  }
  .plans-block {
      grid-template-columns: 1fr;
  }
  .plans-button {
      flex-direction: column;
      text-align: center;
      gap: 24px;
  }
  .plans-button__btn {
      width: 100%;
  }
  .photos-card {
      height: auto;
      display: flex;
      flex-direction: column;
  }
  .photos-card__photo img {
      width: auto;
      height: 400px;
  }
  .footer {
      padding: 24px 0;
  }
  .partners-line-bottom {
      display: none;
  }
  .team-photo img {
      height: 312px;
  }
}
@media all and (max-width: 440px) {
  .reach-block-back {
      margin-top: -32.7%;
  }
  .partners-bookmarks {
      gap: 8px;
  }    
  .partners-bookmark {
      max-width: 257px;
  }
  .partners-bookmark__text {
      padding: 16px;
  }
  .partners-bookmarks .partners-bookmark:nth-last-child(1) svg {
      height: 55px;
  }
  .plans-item--special {
      padding: 58px 0;
  }
  .partners-line-top {
      gap: 8px;
  }
  .backstage-right__title {
      text-align: left;
	  visibility: hidden;
  }
  .backstage-right__item:nth-child(odd) {
	  background: rgba(255, 255, 255, 1);
	  width: 70%;
  }
  .backstage-right__item:nth-child(even) {
	  background: rgba(13, 13, 13, 1);
  }
  .backstage-right__item:nth-child(odd)::before, .backstage-right__item:nth-child(even)::after {
      opacity: 1;
	  mask-image: none;
      -webkit-mask-image: none;
  }
  .photos-card__photo img {
      height: 312px;
  }
  .reach-user-detail__info {
      padding: 2px 8px;
  }
  .section-backstage {
      height: 555px;
  }
  .backstage-right {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      height: 100%;
  }
  .section-video {
      height: 555px;
  }
  .swiper-slide:not(.swiper-slide-active) {
      transform: scale(1) !important;
  }
  .footer .logo {
      font-size: 24px;
      line-height: 32px;
  }
  .footer-bottom a {
      font-size: 14px;
      line-height: 18px;
      letter-spacing: -0.92px;
      text-align: left;
      text-wrap: auto;
  }
}
@media all and (max-width: 393px){
  .reach-block-back {
      margin-top: -37%;
  }
  .numbers-block {
      gap: 20px;
  }
}
@media all and (max-width: 360px){
  .reach-block-back {
      margin-top: -41%;
  }
}
@media all and (max-width: 359px) {
  .logo {
      font-size: 18px;
      line-height: 26px;
  }
  .footer-soc__item span, .why-block div, .how-block div {
      word-break: break-word;
  }
  .section-backstage {
      height: auto;
  }
}

/* popup form | modal block */
.popup, .modal-video {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  background: rgba(51, 51, 51, .8);
  transition: .5s;
}
.popup.active, .modal-video.active {
  opacity: 1;
  pointer-events: all;
}
.popup-background, .modal-background {
  position: absolute;
  width: 100%;
  height: 100%;
}
.popup-form {
  border-radius: 10px;
  overflow: hidden;
  position: fixed;
  min-width: 250px;
  max-width: 460px;
  width: 100%;
  max-height: 100%;
  padding: 20px;
  background: white;
  overflow-y: auto;
}
.popup-form__header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.popup-form__title {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -1.08px;
  font-weight: 500;
}
.popup-form__subtitle {
  color: #4D4D4D;
}
.popup-form__subtitle, .popup-form form p label input, .popup-form form p input[type="submit"] {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.92px;
}
.popup-form__close {
  margin-right: 10px;
  cursor: pointer;
  transition: .3s;
  border: none;
  background: none;
}
.popup-form__close::before {
  content: '';
  position: relative;
  background-color: var(--main-color-black);
  display: block;
  width: 2px;
  height: 1em;
  border-radius: 4px;
  transform: translate(50%, 50%) rotate(45deg);
}
.popup-form__close::after {
  content: '';
  position: relative;
  background-color: var(--main-color-black);
  display: block;
  width: 2px;
  height: 1em;
  border-radius: 4px;
  transform: translate(50%, -50%) rotate(-45deg);
}
.popup-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
  margin-top: 32px;
}
.popup-form form p {
  margin: 0;
}
.popup-form form p label {
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}
.popup-form form p label input {
  width: 100%;
  padding: 15px;
  border: 1px solid #cccccc;
  border-radius: 12px;
  margin-top: 5px;
}
.popup-form form p label input:focus {
  border-color: black;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.popup-form form p input[type="submit"] {
  background: var(--main-color-black);
  color: var(--main-color-white);
  padding: 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.5s ease;
  border: none;
  width: 100%;
  margin-top: 12px;
}
.popup-form form a {
  color: #4661DA;
}
.wpcf7 form .wpcf7-response-output {
  margin-top: 0 !important;
  border-color: var(--main-color-black) !important;
}
.modal-block {
  border-radius: 10px;
  overflow: hidden;
  position: fixed;
  width: 0;
  height: 0;
  background: white;
  overflow-y: auto;
  transition: .3s;
}

@media all and (max-width:1260px) {
  .section-video .container {
      padding: 0;
  }
}

@media (max-width: 440px) {
  .popup-form {
      bottom: 0;
  }
}

/* hover elements */
.burger:focus-visible i {
  width: 90%;
  transition: .2S all;
}
.header-slogan__btn:focus-visible, .why-btn:focus-visible, .plans-button__btn:focus-visible, .popup-form form p input[type="submit"]:focus-visible, .plan-footer button:focus-visible {
  transform: scale(1.05);
  opacity: .8;
}
.video-button .video-button-navigation:focus-visible {
  background-color: var(--main-color-black);
}
.video-button .video-button-navigation:focus-visible svg {
  fill: var(--main-color-white);
}
.section-button__btn:focus-visible::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.footer-soc__item:focus-visible {
  color: var(--main-color-white);
}
.footer-soc__item:focus-visible path {
  fill: var(--main-color-white);
}
.footer-soc__item:focus-visible::before {
  top: 0;
}
.footer-bottom a:focus-visible::after, .header-menu nav ul li a:focus-visible::after {
  width: 100%; 
}
.popup-form__close:focus-visible {
  opacity: .5;
}
.swiper-slide:focus-visible::before {
  width: 800%;
  height: 800%;
}
.swiper-slide:focus-visible .video-play svg {
  transform: scale(1.2);
}

.section-partners .container:hover .partners-line-bottom, .section-partners .container:hover .partners-line-top, .comments-line-top:hover, .comments-line-bottom:hover {
  animation-play-state: paused;
}
@media (hover:hover) {
  .burger:hover i {
      width: 90%;
      transition: .2S all;
  }
  .header-slogan__btn:hover, .why-btn:hover, .plans-button__btn:hover, .popup-form form p input[type="submit"]:hover, .plan-footer button:hover {
      transform: scale(1.05);
      opacity: .8;
  }
  .video-button .video-button-navigation:hover {
      background-color: var(--main-color-black);
  }
  .video-button .video-button-navigation:hover svg {
      fill: var(--main-color-white);
  }
  .section-button__btn:hover::before {
      width: 100%;
      height: 100%;
      opacity: 1;
  }
  .footer-soc__item:hover {
      color: var(--main-color-white);
  }
  .footer-soc__item:hover path {
      fill: var(--main-color-white);
  }
  .footer-soc__item:hover::before {
      top: 0;
  }
  .footer-bottom a:hover::after, .header-menu nav ul li a:hover::after {
      width: 100%; 
  }
  .popup-form__close:hover {
      opacity: .5;
  }
  .swiper-slide:hover::before {
      width: 800%;
      height: 800%;
  }
  .swiper-slide:hover .video-play svg {
      transform: scale(1.2);
  }
}

.page-content pre {
    text-wrap: auto;
}

.cookie-container {
    overflow: hidden;
}
.cookie-container.fixed {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 93%;
    max-width: 1824px;
}
.cookie-container.hidden {
    display: none;
}
.cookie-block {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border: 2px solid var(--main-color-black);
	border-radius: 24px;
	padding: 22px;
	gap: 22px;
    background-color: var(--color-grey-10);
}
.cookie-block p {
	margin: 0;
	font-size: 24px;
	line-height: 32px;
	color: var(--main-color-black);
	letter-spacing: -1.08px;
}
.cookie-block a {
	color: inherit;
	transition: .3s;
}
.cookie-block button {
	position: relative;
	cursor: pointer;
	padding: 0;
	min-width: 56px;
	height: 56px;
	border: 1px solid var(--main-color-black);
	border-radius: 50%;
	background-color: var(--main-color-black);
	transition: .3s;
}
.cookie-block button::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	border-bottom: 3px solid var(--main-color-white);
	border-right: 3px solid var(--main-color-white);
	width: 8px;
	height: 16px;
	transform: translate(-40%, -60%) rotate(45deg);
	transition: .3s;
}

.cookie-block a:active, .cookie-block a:focus-visible {
	opacity: .5;
}
.cookie-block button:active, .cookie-block button:focus-visible {
	background-color: inherit;
}
.cookie-block button:active::after, .cookie-block button:focus-visible::after {
	border-color: var(--main-color-black);
}
@media (hover: hover) {
	.cookie-block a:hover {
		opacity: .5;
	}
	.cookie-block button:hover {
		background-color: inherit;
	}
	.cookie-block button:hover::after {
		border-color: var(--main-color-black);
	}
}

@media (max-width: 440px) {
	.cookie-block {
		padding: 14px;
		gap: 16px;
	}
	.cookie-block p {
		font-size: 14px;
		line-height: 18px;
		letter-spacing: -0.76px;
	}
    .cookie-block button {
        min-width: 48px;
        height: 48px;
    }
}