body{
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
.hero-contain{
  min-height: 600px;
  width: 100%;
  position: relative;
  background: rgba(111, 100, 100, 0.54);
  overflow: hidden;
}
.circle{
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: #f79518;
  transform: translate(-50%, -50%);
  font-size: 12px;
  text-align: center;
  color: white;
  text-transform: uppercase;
  z-index: 51;
}
.circle:before{
  content: '';
  height: 100px;
  width: 100px;
  background: #f79518;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  animation: ribble 2s infinite;
}
.circle-text{
    display: block;
    margin-top: 5px;
    margin-left: 20px;
    font-family: arial;
    font-size: 5em;
    font-weight: bold;
    height: 60px;
    width: 60px;
}

.hr-style{
    display: block;
    position: absolute;
    top: 47%;
    left: 50%;
    width: 800px;
    border: 0;
    height: 2px;
    z-index: 50;
    transform: translate(-50%, -50%) rotate(135deg);
    transition: all 0.2s;
    transform-origin: center center;
    background-image: -webkit-linear-gradient(left, transparent, #f79518, transparent);
    /* background-image: -moz-linear-gradient(left, transparent, #4AA6E5, transparent); */
    /* background-image: -ms-linear-gradient(left, transparent, #4AA6E5, transparent); */
    /* background-image: -o-linear-gradient(left, transparent, #4AA6E5, transparent); */
}
/* .hero-contain:hover .hr-style{
  animation: rotate 2s ease infinite;
} */
.hr-rotate{
  transform: translate(-50%, -50%) rotate(45deg);
}
.text-1-tleft{
  font-size: 30px;
  font-weight: 600;
  width: 200px;
  position: absolute;
  top: 20%;
  left: 11%;
  opacity: 1;
  color: white;
  text-transform: uppercase;
  font-family: arial;
  transition: all .3s;
  z-index: 50;
}
.t1thide{
  opacity: 0;
  left: -5%;
}
.text-1-bright{
  font-size: 30px;
  font-weight: 600;
  width: 200px;
  position: absolute;
  bottom: 10%;
  right: 10%;
  text-transform: uppercase;
  font-family: arial;
  transition: all .3s;
  color: white;
  z-index: 50;
}
.t1bhide{
  opacity: 0;
  right: -5%;
}
.text-2-tright{
  font-size: 30px;
  font-weight: 600;
  width: 200px;
  position: absolute;
  top: 20%;
  right: -5%;
  opacity: 0;
  text-transform: uppercase;
  font-family: arial;
  transition: all .3s;
  color: white;
  z-index: 50;
}
.t2tshow{
  opacity: 1;
  right: 10%;
}
.text-2-bleft{
  font-size: 30px;
  font-weight: 600;
  width: 200px;
  position: absolute;
  bottom: 10%;
  left: -5%;
  opacity: 0;
  text-transform: uppercase;
  font-family: arial;
  transition: all .3s;
  color: white;
  z-index: 50;
}
.t2bshow{
  opacity: 1;
  left: 11%;

}


 @keyframes ribble{
  0%{
    transform: scale(1);
    opacity:1;
  }
  100%{
    transform: scale(1.5);
    opacity:0;
  }
  
} 
.zs-bullets{
	display: none;
}

