.clip-bottom {
    clip-path: ellipse(100% 20% at 50% 100%);
  }

  body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:"wdth" 100;
     
  }
         .clip-path-custom {
            clip-path: ellipse(95% 100% at 50% 0%);

        }   
        .clip-path {
            clip-path: ellipse(95% 100% at 50% 100%);        }
        
 
 ul#iti-0__country-listbox {
  width: 250px !important;  
  
}
  
   html {
    scroll-behavior: smooth;
  }

  @media (max-width: 768px){
    .button_section{
      display: none;
    }
    .clip-path {
        clip-path: ellipse(150% 100% at 50% 100%);        }
     
  }
  @media (max-width: 768px){
    .button_section{
      display: none;
    }
    .clip-path {
        clip-path: ellipse(150% 100% at 50% 100%);        }

        .hero_info{
            margin-top: 250px;
        }
        .clip-path-custom {
            clip-path: none;

        }
     .Vision{
        margin-top: 300px;
     }
  }

 /* ================loading=================== */

 .loading{
    position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: #fff;
        z-index: 99999;
   transition: load .20s ease;
  }
     .center{
       position: fixed;
       top: 50%;
       left: 50%;
       transform: translate(-50%,-50%);
     }
  
  
  
     .ring{
       width: 200px;
       height: 200px;
       border-radius: 50%;
       box-shadow: 0 4px 0  #9f3cc1;
       background: transparent;
       animation: animate 1s linear infinite;
     }
     .text{
       width: 200px;
       height: 200px;
       color:  #fff;
       border-radius: 50%;
       position: absolute;
       top: 0;
       left: 0;
       text-align: center;
       line-height: 300px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 2em;
       background: transparent;
       box-shadow: 0px 0px 20px hsl(240, 9%, 30%);
     }
     .text span{
       color: #9f3cc1;
     }
  
     
  @keyframes animate{
    0%{
      transform: rotate(0deg);
    }
    100%{
      transform: rotate(360deg);
    }
    
  }

 /*     <!--=======Scroll to top button=======--> */

 .scrolltotop-btn {
    z-index: 99999;
    position: fixed;
    right: 0;
    bottom: 55px;
    width: 45px;
    height: 45px;
    background: #9f3cc1;
    font-size: 0.9em;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    opacity: 0;
    transition: .5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    
  }
  .scrolltotop-btn a i{
    color: #fff;
  }
  .scrolltotop-btn.active{
    opacity: 1;
    right: 20px;
    pointer-events: all;
  }
      
/*=======Scroll bar=======*/
::-webkit-scrollbar{
    width: 10px;
     background:  #ccc;
   }
  ::-webkit-scrollbar-thumb{
    background: #9f3cc1 ;
    border-radius: 2em;
    cursor: pointer;
  
   }
  ::-webkit-scrollbar-thumb:hover{
    background: #9f3cc1;
   }
/* ====================cursor=========== */
.cursor{
    position: fixed;
    height: 50px;
    width: 50px;
    border: 1px solid  #9f3cc1;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%,-50%);
    transition: .1s;
    z-index: 9999999;
  }
  
  
  .cursor-2{
    position: fixed;
    z-index: 999999;
    height: 8px;
    width: 8px;
    border: 1px solid #9f3cc1;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%,-50%);
    transition: .15s;
  }
  
  @media (max-width: 768px){
    .cursor{
      display: none;
    }
     .cursor-2{
      display: none;
     }
  }