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

#services {
  height: 100%;
}

.services-section {
  background: url('/images/services/background-services.jpg');
  height: 100vh;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-width {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  overflow: hidden;
}

.section-title {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 30px;
}

.border {
  width: 160px;
  height: 2px;
  background: #00a6ff;
  margin: 40px auto;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service-box {
  max-width: 33.33%;
  padding: 10px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.service-icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  border: 3px solid #00a6ff;
  color: #00a6ff;
  transform: rotate(45deg);
  margin-bottom: 30px;
  margin-top: 16px;
  transition: 0.3s linear;
}

.service-icon i {
  line-height: 70px;
  transform: rotate(-45deg);
  font-size: 26px;
}

.service-box:hover .service-icon {
  background: #00a6ff;
  color: #fff;
}

.service-title {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
}

@media screen and (max-width:960px)  {
  .service-box {
    max-width: 45%;
  }
}

@media screen and (max-width:768px)  {
  .service-box {
    max-width: 50%;
  }
}

@media screen and (max-width:480px)  {
  .service-box {
    max-width: 100%;
  }
}
