/*section banner starts*/
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}
@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.5, 1.5);
  }
}
.carousel-inner .carousel-item > img {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}
/*section banner ends*/

/*go to top starts*/
.scrollTop {
    position: fixed;
    right: 20px;
    bottom: 40px;
    font-size: 14px;
    font-weight: normal;
    height: 45px;
    width: 35px;
    line-height: 41px;
    text-align: center;
    cursor: pointer;
    z-index: 999;
}
/*go to top ends*/


/*page loader starts*/
#page {
    display: none;
}
#loading {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-image: url("../images/loader.gif");
    background-repeat: no-repeat;
    background-position: center;
        background-size: 40%;
}
/*page loader ends*/

/*section navigation hover effects starts*/
.snip1155 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.snip1155 li.nav-item {
  display: inline-block;
  list-style: outside none none;
}
.snip1155 .nav-link {
  display: inline-block;
  padding: 0.5em 17px;
  position: relative;
}
.snip1155 .nav-link:before {
  left: 20%;
  right: 20%;
  top: 50%;
  content: '';
  border-left: 7px solid #ffc03f;
  border-right: 7px solid #ffc03f;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 3px;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.snip1155 .nav-link:hover:before {
  left: 0;
  right: 0;
  opacity: 1;
}
/*section navigation hover effects ends*/