
/** Start Home Hero Section CSS Property **/
.home-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 9rem 0 8rem;
    background-color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .home-hero h1 {
    font-size: 6rem;
    line-height: 136px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }
  .hero-cursor {
    position: relative;
    width: 100%;
    padding: 150px 0;
  }
  .home-hero canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  @media only screen and (max-width: 767px) {
    .cursor-gifs-mobile {
      display: block;
    }
    .home-hero h1 {
      font-size: 4rem;
      line-height: 5.5rem;
    }
    .home-hero h1 span {
      display: block;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .home-hero {
      padding: 0 1rem;
    }
    .home-hero h1 {
      font-size: 3rem;
      line-height: 5rem;
    }
    .home-hero h1 span {
      font-size: 4rem;
    }
    .cursor-gifs-mobile {
      width: 30vw;
      height: 30vw;
      border-radius: 15px;
      position: relative;
      z-index: 9;
      background-position: center;
      background-size: cover;
    }
  }
  /** End Home Hero Section CSS Property **/
  
/** Start About Hero CSS Property **/
.about-hero {
    background: var(--black-color);
    min-height: 700px;
    padding: var(--padding-tb-medium) 0;
    align-content: center;
  }
  .about-hero .container {
    margin-bottom: 60px;
  }
  .about-hero p {
    color: var(--white-color);
    margin: 0;
  }
  .about-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 15px;
    width: 100%;
    background: var(--gradient-02);
    background-size: 200%;
    animation: scroll-gradient 6s linear infinite;
  }
  .about-hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 100%;
    background: var(--gradient-02);
    background-size: 200%;
    animation: scroll-gradient 6s linear infinite;
    filter: blur(36px);
    opacity: 1;
  }
  .video-with-content-box .video-box {
    margin-top: -250px;
    margin-bottom: calc(var(--padding-tb-medium) - 10px);
  }
  .video-with-content-box .content-box img {
    border-radius: 10px;
  }
  @media only screen and (max-width: 767px) {
    .about-hero h1 {
      margin-bottom: 30px;
    }
  }
  /** End About Hero CSS Property **/
  
/** Start Services Hero CSS Property **/
.services-hero {
    background: var(--black-color);
    min-height: 500px;
    padding: var(--padding-tb-medium) 0;
    align-content: center;
    text-align: center;
  }
  .services-hero .container {
    margin-top: 60px;
  }
  .services-hero h1 {
    margin-bottom: 30px;
  }
  .services-hero p {
    color: var(--white-color);
    margin: 0;
  }
  .services-hero p:has(+ .btn) {
    margin-bottom: 30px;
  }
  .services-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 15px;
    width: 100%;
    background: var(--gradient-02);
    background-size: 200%;
    animation: scroll-gradient 6s linear infinite;
  }
  .services-hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 100%;
    background: var(--gradient-02);
    background-size: 200%;
    animation: scroll-gradient 6s linear infinite;
    filter: blur(36px);
    opacity: 1;
  }
  /** End Services Hero CSS Property **/
  
/** Start Work Hero CSS Property **/
.work-hero {
    min-height: 280px;
    padding: var(--padding-tb-medium) 0;
    align-content: center;
    text-align: center;
  }
  .work-hero .container {
    margin-top: 60px;
  }
  .work-hero h1 {
    margin-bottom: 30px;
    color: var(--black-color);
  }
  .work-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 15px;
    width: 100%;
    background: var(--gradient-02);
    background-size: 200%;
    animation: scroll-gradient 6s linear infinite;
  }
  .work-hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 100%;
    background: var(--gradient-02);
    background-size: 200%;
    animation: scroll-gradient 6s linear infinite;
    filter: blur(36px);
    opacity: 1;
  }
  /** End Work Hero CSS Property **/