/* dot cursor */
.dot-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: #fd7714;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: none; /* Initially hidden until mouse enters */
  }
/* other */
.center-image {

    z-index: 1 !important;
  
}
/* split.js */
.char {
    display: inline-block;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.5s ease;
  }
  
  .animate-text.visible .char {
    transform: translateX(0);
    opacity: 1;
  }
  
  .animate-text.visible .char:nth-child(n) {
    transition-delay: calc(0.05s * var(--char-index));
  }
  
@media(max-width:991px){
  .dot-cursor{
    display:none !important;
  }
}

  @media (max-width: 576px) {
    #indexpage {
        #brand_type {
            margin-top: 10% !important;
        }
    }
}

.animate-textsec{
  border: 1px solid  black !important;
}
.blog-margin{
  overflow:hidden;
}