.heading-color {
    color: blue !important;
}

.dropdown-item.active1, .dropdown-item.active1{
   background-color: green;
}
.dropdown-item.active, .dropdown-item.active{
    background-color: green;
 }
 


.color1{
    color: green !important;
}


    
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active{
    color: green !important;
}

.bg-color{
    background-color: green !important;
}

.bg-primary {
    background-color: rgb(35, 182, 35) !important;
}

.text-primary {
    color: black !important;
}


/*  slide show btns   */

.btn-primary{
   background-color: rgb(35, 182, 35) !important; 
   border-color: rgb(35, 182, 35) !important;
}



/*  slide show text  */

.align-items-center {
    text-align: right  !important;
}

.tx-color{
    color: rgb(255, 255, 255) !important;
    margin-bottom: 20%;
    margin-top: -20%;
}


/*  service icon   */

.ic-color{
    color: rgb(35, 182, 35) !important ;
}

/*  headers   */

.bag-color{
    background-color: rgb(35, 182, 35) !important; 
}




 .body{
    
    height:100vh;
    display:grid;
    place-items:center;
    padding-top: -10%;
    margin-top: -10%;
    margin-bottom: -10%;
  
  }

.gallery{
    position:relative;
    width:300px;
    height:200px;
    transform-style:preserve-3d;
    animation:rotate 35s linear infinite;
  }
  
  @keyframes rotate{
    from{
      transform:perspective(1200px) rotateY(0deg);
    }
    
    to{
      transform:perspective(1200px) rotateY(360deg);
    }
  }
  
  .gallery span{
    position:absolute;
    width:100%;
    height:100%;
    transform-origin:center;
    transform-style:preserve-3d;
    transform:rotateY(calc(var(--i) * 45deg)) translateZ(380px);
  }
  
  .gallery span img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
  }