: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-family: "Gill Sans";
    src:  url("/wp-content/themes/showreal/fonts/GillSans.ttf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
  }
  @font-face {
    font-family: "Geologica";
    src:  url("/wp-content/themes/showreal/fonts/Geologica/Geologica-Regular.ttf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
  }
  @font-face {
    font-family: "Geologica";
    src:  url("/wp-content/themes/showreal/fonts/Geologica/Geologica-Medium.ttf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
  }
  @font-face {
    font-family: "Geologica";
    src:  url("/wp-content/themes/showreal/fonts/Geologica/Geologica-SemiBold.ttf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
  }
  @font-face {
    font-family: "Geologica";
    src:  url("/wp-content/themes/showreal/fonts/Geologica/Geologica-Bold.ttf") format("opentype");
    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;
      }
  
      .chat-button svg.icon{
          transition: opacity 2s ease;
          position: absolute;
          padding: 15%;
      }
  
      .hidden {
          opacity: 0;
      }
  
      .social-links {
          display: none;
          position: absolute;
          bottom: 70px;
          left: 50%;
          flex-direction: column;
          transform: translateX(-50%) translateY(20px);
          opacity: 0;
          transition: all 0.5s ease;
          gap: 15px;
      }
  
      .social-links.show {
          transform: translateX(-50%) translateY(0);
          opacity: 1;
          display: flex !important;
      }
  
      .social-links a {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
          transition: transform 0.3s ease;
          padding: 15%;
      }
  
      .social-links a.telegram {
          background-color: #0088cc;
      }
  
      .social-links a.whatsapp {
          background-color: #25d366;
      }
  }
  
  @keyframes pulse {
      0% {
          transform: scale(1);
      }
      50% {
          transform: scale(1.1);
      }
      100% {
          transform: scale(1);
      }
  }
  
  @media (hover: hover) {
      .chat-widget .social-links a:hover {
          transform: scale(1.20);
      }
  }
  
  @media all and (max-width:769px) {
      .chat-widget {
          bottom: 85px;
      }
  }
  
  .container {
    max-width: 1824px;
    margin: 0 auto;
    padding: 0 48px;
  }
  section {
    margin-top: 48px;
  }
  .logo {
    font-family: 'Geologica';
    text-transform: uppercase;
    font-size: 47px;
    line-height: 32px;
    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;
    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);
    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: column;
    gap: 24px;
  }
  .partners-bookmark {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .partners-bookmark__text {
    background: var(--main-color-white);
    border-radius: 12px 0 0 12px;
    padding: 20px 0px 20px 24px;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -1.08px;
    width: fit-content;
    position: relative;
    overflow: hidden;
    text-wrap: balance;
  }
  .partners-bookmark svg {
    height: 72px;
  }
  
  .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;
    position: absolute;
    top: 0;
    z-index: -1;
  }
  .partners-line {
    display: flex;
    gap: 24px;
    flex-direction: row;
    width: fit-content;
  }
  .partners-item {
    background: var(--main-color-white);
    border-radius: 24px;
    width: 216px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partners-line-top {
    animation: scroll-left 20s linear infinite;
  }
  .partners-line-bottom {
    animation: scroll-right 20s linear infinite;
  }
  @media all and (min-width: 1280px) {
    .partners-line-top {
        animation: scroll-left 40s linear infinite;
    }
    .partners-line-bottom {
        animation: scroll-right 40s 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-desc {
  
  }
  .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, .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: 12px;
    background: var(--color-grey-5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .plan-header {
    padding: 48px;
    background: var(--main-color-white);
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
  }
  .plan-header__pro {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -1.08px;
    opacity: .5;
  }
  .plan-header__name {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1.24px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .plan-main {
    padding: 48px;
  }
  .plan-main__desc {
    margin-bottom: 48px;
    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: 44px;
    font-size: 24px;
    line-height: 32px;
    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: 32px;
    height: 32px;
    top: 0;
    left: 0;
  }
  .plan-footer {
    margin: 48px;
    background: var(--main-color-black);
    color: var(--main-color-white);
    padding: 16px;
    border-radius: 999px;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.92px;
    border: none;
    cursor: pointer;
    transition: transform 0.5s ease;
  }
  .plans-item-popular {
    position: relative;
  }
  .plans-item-popular::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(to right, #808080, #333333);
    border-radius: 12px;
    z-index: -1;
  }
  .plans-item-popular .plan-main__list .plan-main__item:nth-last-child(1) {
    color: var(--color-carrot);
  }
  .plans-item-popular .plan-main__list .plan-main__item:nth-last-child(1)::before {
    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%22%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%23E9603E%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  }
  .plan-trend, .plan-header__popular {
    border-radius: 999px;
    background: linear-gradient(to right, #808080, #333333);
    width: fit-content;
    color: var(--main-color-white);
    padding: 8px 16px;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.92px;
    font-weight: 500;
    text-align: center;
  }
  .plan-trend {
    transform: rotate(-2deg);
    margin: 0 auto;
  }
  .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: column;
    gap: 48px;
    background: var(--main-color-black);
    padding: 48px;
    border-radius: 32px;
  }
  .footer-top {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: center;
  }
  .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: row;
    gap: 8px;
    flex-wrap: wrap;
  }
  .footer-bottom a {
    margin: 4px 8px;
    color: var(--main-color-white);
    text-decoration: none;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.92px;
    position: relative;
  }
  .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: -12.7%;
    }
    .section-partners .container {
        padding: 0;
    }
    .partners-bookmark__text {
        border-radius: 0;
        padding: 20px 0px 20px 48px;
    }
    .plan-header, .plan-main {
        padding: 24px;
    }
    .plan-header__pro, .plan-main__desc {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: -0.92px;
    }
    .plan-header__pro {
        margin-bottom: 8px;
    }
    .plan-main__desc {
        margin-bottom: 24px;
    }
    .plan-header__name {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: -1.08px;
    }
    .plan-trend, .plan-header__popular {
        padding: 7px 14px;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: -0.76px;
    }
    .plan-main__item {
        padding-left: 30px;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: -0.76px;
    }
    .plan-main__item::before {
        width: 18px;
        height: 18px;
    }
    .plan-footer {
        margin: 24px;
    }
    .video-button .video-button-prev {
        left: 28%;
    }
    .video-button .video-button-next {
        right: 28%;
    }
  }
  @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;
    }
    .plans-block {
        grid-template-columns: repeat(2, 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: 1000px) {
    .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: 96px 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;
        overflow: hidden;
        text-overflow: ellipsis;
    }
  }
  @media all and (max-width: 768px) {
    .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;
    }
    .section-video {
        height: 576px;
    }
    .section-plans {
        padding-top: 24px;
        gap: 24px;
    }
    .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-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: 96px;
    }
    .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-bookmark__text {
        padding: 24px 0px 24px 24px;
    }
    .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-bookmark__text {
        padding: 24px 48px 24px 24px;
        border-radius: 0 12px 12px 0;
        width: 60%;
    }
    .partners-bookmark svg {
        display: none;
    }
    .partners-bookmark__text::after {
        content: '';
        position: absolute;
        height: 2.3em;
        background: var(--color-grey-10);
        right: 0;
        top: 50%;
        transform: translateX(50%) translateY(50%) rotate(45deg);
        border-bottom-left-radius: 12px;
        width: 2.3em;
        transform: translateX(50%) translateY(-50%) rotate(45deg);
    }
    .partners-bookmarks {
        gap: 8px;
    }
    .partners-line-top {
        gap: 8px;
    }
    .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;
    }
  }
  @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) {
    .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: 20;
    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: center;
    justify-content: space-between;
    gap: 12px;
  }
  .popup-form__title {
    font-size: 24px;
    font-weight: 600;
  }
  .popup-form__close {
    margin-right: 10px;
    cursor: pointer;
    transition: .3s;
  }
  .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 p {
    margin: 15px 0 0 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: 10px;
    border: 1px solid #cccccc;
    border-radius: 12px;
    font-size: 16px;
    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: 12px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.92px;
    cursor: pointer;
    transition: transform 0.5s ease;
    border: none;
    width: 100%;
    margin-top: 12px;
  }
  .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;
    }
  }
  
  /* 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: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: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;
}