
.container1 {
  width: 100%;
  height: 100%;
  padding: 0px 8%;
}

.container1 h1 {
  text-align: center;
  
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}

.container1 h1::after {
  content: '';
  background: #303ef7;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.row1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}

.service1 {
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
  outline: 2px dashed blue;
}

.service1 i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #303ef7;
}

.service1 h2 {
  font-weight: 600;
  margin-bottom: 8px;
}

.service1:hover {
  background: #303ef7;
  color: #fff;
  transform: scale(1.05);
}

.service1:hover i {
  color: #fff;
}
