* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Montserrat", sans-serif;
    min-height: 100vh;
    background: url("camsbdbg4.png");
    background-size: cover;
    background-position: center ;
    height: 120vh;
  }
  html {
    scroll-behavior: smooth;
    font-size: 62.5%;
  }

  .slider{
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
    clip-path: circle(170vh at 50% -90vh);
  }

  .loading{
    width: 100%;
    height: 100vh;
    position: absolute;
  }

  #SlideImg{
    width: 100%;
    height: 90%;
    animation: zoom 3s linear infinite;
  }

  @keyframes zoom {
    0%{
      transform: scale(1.3);
    }
    20%{
      transform: scale(1);
    }
    80%{
      transform: scale(1);
    }
    100%{
      transform: scale(1.3);
    }
  }

  .content99{
    color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    position: relative;
    background-color: rgba(0,0,0,0.5);
  }
  .content99 h1{
    color: #fcd307;
    font-size: 6.2rem;
    text-align: center;
  }
  .add{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
   
  }
 


  @media (max-width:768px) {
    .slider{
      width: 100%;
      height: 60vh;
      clip-path: circle(150vh at 50% -90vh);
      background-attachment: fixed;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
    }
    #SlideImg{
      width: 100%;
      height: 60%;
      animation: zoom 3s linear infinite;
    }
    
  }