#services{
  position: relative;
  padding: 100px 0;
  background-color: #fff;
}

.service-section-subtitle{
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  color: #444;
  font-size: 16px;
  line-height: 26px;
}

.service-section-title{
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
  color: #111;
}

.service-section-title::before{
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #111;
  bottom: 0;
  left: calc(50% - 40px);
}

.service-section-title::after{
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  background-color: #48dbfb;
  border: 4px solid #fff;
  left: calc(50% - 12px);
  bottom: -7px;
}

.services-list{
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
}

.service-row{
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #eee;
}

.service-row i{
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #48dbfb;
  color: #48dbfb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.service-row h3{
  font-size: 17px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.service-row p{
  font-size: 14px;
  color: #666;
  line-height: 22px;
}

@media screen and (max-width: 900px){
  #services{
    padding: 60px 0;
  }

  .service-section-title{
    font-size: 26px;
  }

  .service-section-subtitle{
    font-size: 15px;
    margin-bottom: 40px;
  }

  .services-list{
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .service-row{
    padding: 18px 0;
  }

  .service-row h3{
    font-size: 16px;
  }
}