*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background: url(../images/img.jpg) center center no-repeat;
  background-size: 100% 100%;
}

.banner-con {
  top: 105px;
  position: absolute;
  left: 0;
  text-align: center;
  right: 0;
}

.banner-con img {
  width: 80%;
}

.btn-con {
  text-align: center;
  position: relative;
  top: 50%;
}

.btn-con img {
  width: 120px;
}

.circle_process {
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -70px;
  width: 140px;
  height: 140px;
}

.circle_process .wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
}

.circle_process .right {
  right: 0;
}

.circle_process .left {
  left: 0;
}

.circle_process .circle {
  width: 140px;
  height: 140px;
  border: 6px solid transparent;
  border-radius: 50%;
  position: absolute;
  top: 0;
  transform: rotate(-135deg);
  box-sizing: border-box;
}

.circle_process .rightcircle {
  border-top: 6px solid rgba(0, 152, 193, 0.9);
  border-right: 6px solid rgba(0, 152, 193, 0.9);
  right: 0;
  /*animation: circle_right 5s linear infinite;*/
}

.circle_process .leftcircle {
  border-bottom: 6px solid rgba(0, 152, 193, 0.9);
  border-left: 6px solid rgba(0, 152, 193, 0.9);
  left: 0;
  /*animation: circle_left 5s linear infinite;*/
}

@keyframes circle_right {
  0% {
    transform: rotate(-135deg);
  }
  50%, 100% {
    transform: rotate(45deg);
  }
}
@keyframes circle_left {
  0%, 50% {
    transform: rotate(-135deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

/*# sourceMappingURL=base.css.map */
