.dynamic-video {
  overflow-x: hidden;
  .container {
    width: 1250px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    @media (max-width: 1440px) {
      width: 1120px;
      gap: 70px;
    }
    @media (max-width: 1280px) {
      width: 1005px;
      gap: 20px;
    }
    @media (max-width: 1024px) {
      width: auto;
      flex-direction: column;
      align-items: center;
      margin: 0 20px;
    }
    .dynamic-video-left {
      flex: 1;
      @media (max-width: 1024px) {
        width: 70%;
        margin-bottom: 0;
      }
      @media (max-width: 768px) {
        width: 100%;
      }
      h2 {
        margin-bottom: 32px;
        @media (max-width: 1440px) {
          margin-bottom: 28px;
          letter-spacing: -4px;
        }
        @media (max-width: 1024px) {
          letter-spacing: 0px;
        }
      }
      .text {
        margin-bottom: 64px;
        @media (max-width: 1024px) {
          margin-bottom: 0;
        }
      }
      .fibbl_lists_cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        @media (max-width: 1024px) {
          justify-content: center;
        }
        .fibbl_lists {
          width: 50%;
          @media (max-width: 1024px) {
            display: none;
          }
        }
      }
    }
    .dynamic-video-right {
      width: 335px;
      @media (max-width: 1280px) {
        width: 275px;
      }
      @media (max-width: 1024px) {
        width: 332px;
      }
      .dynamic-video-stack {
        position: relative;
        padding-top: 130%;
        @media (max-width: 1024px) {
          width: 284px;
          margin-bottom: 64px;
        }
        video,
        img {
          position: absolute;
          width: 100%;
          height: 100%;
          left: 0;
          top: 0;
          vertical-align: top;
          border: 1px solid var(--c-gray-900);
          border-radius: 18px;
          object-fit: cover;
          z-index: 4;
        }
        img {
          &:nth-of-type(1) {
            z-index: 3;
            left: 16px;
            top: 16px;
          }
          &:nth-of-type(2) {
            z-index: 2;
            left: 32px;
            top: 32px;
          }
          &:nth-of-type(3) {
            z-index: 1;
            left: 48px;
            top: 48px;
          }
        }
      }
      .tip {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        transform: translateX(-60%);
        color: #c1b4a3;
        text-align: center;
        @media (max-width: 1024px) {
          transform: none;
        }
        svg {
          &.desktop {
            display: block;
            @media (max-width: 1024px) {
              display: none;
            }
          }
          &.mobile {
            display: none;
            transform: translateX(-360%);
            @media (max-width: 1024px) {
              display: block;
            }
          }
        }
        p {
          width: 100%;
        }
      }
    }
  }
}
