

.services {
  background-color: rgb(48, 94, 194);
  background-image: url(/backgrounds/paint-dripping-background3.png);
  background-repeat: repeat-x;
  padding-top: 181px;
  padding-bottom: 200px;
}

.services h1 {
  font-size: 75px;
  margin-left: 75px;
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.services-ctner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0px 5vw 0px 5vw;
}

.service {
  height: 500px;
  width: 400px;
  background-color: white;
  margin-bottom: 100px;
  margin-left: 50px;
  margin-right: 50px;
  background-color: white;
  box-shadow: 3px 3px 10px rgb(165, 165, 165);
  border-radius: 2.5px;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
}

.service:hover {
  transform: translateX(-5px) translateY(-5px);
  box-shadow: 3px 3px 10px rgb(80, 80, 80)
}

.service img {
  height: 55%;
}

.service h2 {
  margin-bottom: 10px;
}

.service ul {
  margin-top: 0px;
  list-style-type: circle;
  margin-right: 30px;
}

.service li:nth-child(1) {
  margin-top: 10px
}

.service span {
  font-size: 15px;
  color: gray;
}


.services-transition-ctner {
  display: flex;
}

.service-transition-ctner {
  display: flex;
  height: 200px;
  width: 100%;
  /* background-color: green; */
  position: relative;
  bottom: -300px;
  /* filter: opacity(50%) */
}

.service-transition-ctner div {
  height: 125px;
  width: 125px;
  border-radius: 150px;
  background-color: rgb(48, 94, 194);
  position: relative;
}

.service-transition-ctner div:nth-child(1) {
  top: 40px;
  right: 25px;
}

.service-transition-ctner div:nth-child(2) {
  top: 5px;
  right: 50px;
}

.service-transition-ctner div:nth-child(3) {
  top: 75px;
  right: 75px;
  background-color: white;
}

.service-transition-ctner div:nth-child(4) {
  right: 20px;
}

.service-transition-ctner div:nth-child(5) {
  bottom: 10px;
  right: 50px;
}

.service-transition-ctner div:nth-child(6) {
  background-color: white;
  top: 85px;
}

.service-transition-ctner div:nth-child(7) {
  top: 15px;
  right: 27px;
}