/* loader css start*/
.loader-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #212529;
    animation: changeBg 2s linear infinite;
  }
  @keyframes changeBg {
    to {
      filter: hue-rotate(360deg);
    }
  }

  .loader {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(to left, #212529 30%, #f71735);
    border: 6px solid #f71735;
    animation: rotate 1s linear infinite;
  }

  .loader::before {
    content: " ";
    position: absolute;
    background: #212529;
    inset: 5px;
    border-radius: 100%;
  }

  @keyframes rotate {
    to {
      transform: rotate(360deg);
    }
  }
  /* loader css end */

  /* landing page slider image loader start */
  .brand-slider.owl-carousel .item {
      background: url("../img/ajax-loader.gif") center center no-repeat;
  }
  /* landing page slider image loader end */