body{
    margin: 0;
    padding: 0;
}
.strips img{
    /* width: 50px; */
    /* -webkit-animation: hormov 7s linear infinite; */
    /* animation: name duration timing-function delay iteration-count ;    */
    /* position: relative;*/
  animation-name: hormov;
  animation-duration: 5s;
  animation-iteration-count: infinite; 
}

.strips{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: -25vh;
}

@keyframes hormov{
    /* 0%   {left:0px; top:0px;}
  25%  {left:100px; top:0px;}
  50%  {left:200px; top:0px;}
  75%  {left:300px; top:0px;}
  100% {left:400px; top:0px;} */

    0%{
        transform: translateY(0);
        opacity: 0;
    }
    50%{        
        opacity: 1;
    }   
    50%{        
        opacity: 1;
    }    
    100%{
        transform: translateY(-80vh);     
        opacity: 0;
    } 
}

.strips img:nth-child(1){
    animation-delay: 1s;
}
.strips img:nth-child(2){
    animation-delay: 2s;
}
.strips img:nth-child(3){
    animation-delay: 3s;
}
/* .strips img:nth-child(4){
    animation-delay: 4.5s;
}
.strips img:nth-child(5){
    animation-delay: 6s;
}
.strips img:nth-child(6){
    animation-delay: 7s;
} */

.speciallinks{
    text-decoration: none;
}
.menu-itemcolor{
   color: #07c9e6;
}

.cusbg-dark{
    background-color: rgb(0 0 0 / 62%);
    width: 80%;
    margin: 0 auto;
}

.cusbg-darkfull{
    background-color: rgb(0 0 0 / 62%);
    width: 100%;
    margin: 0 auto;
}
.cus-imgwidth{
    max-width: 75%;
}

.read_more  {
    display: none;
  }
  
  .show {
     display: block!important;
  }

@media(max-width: 767.98px)
  {
    .main-banner .content {
        clear: both;
        background: #333;
        position: relative;
      }
      .cus-imgwidth{
        max-width: 100%;
    }
    .float-about-cont{
        margin-bottom: 20px;
      }

      .extra_content {
        display: none;
      }
      #read_more {
        display: block;
      }
  }

  @media screen and (min-width: 768px) {
    /* //For Laptops */
    .float-highcontainer{
        position: relative;
        top:-110px;
      }
      
      .float-about-cont{
        margin-bottom: 150px;
      }
      
    }
    
    @media screen and (min-width: 992px) {
    /* //For Large Laptops */
    .float-highcontainer{
        position: relative;
        top:-110px;
      }

      .float-about-cont{
        margin-bottom: 150px;
      }
      
    }