#services {
  min-height: 100vh;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.services-container {
  min-height: 100vh;
  height: auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.service-element {
  width: 90%;
  height: auto;
  text-align: center;
}

.services-title {
  font-weight: lighter;
  font-size: 50px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 10px;
}
.services-title > span {
  font-weight: 900;
  color: rgb(42, 123, 255);
}

.service-info {
  width: 70%;
  color: rgba(0, 0, 0, 0.795);
}
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* align-items: center; */
  margin: auto;
  width: 70%;
  height: auto;
  font-size: 17px;
  margin-top: 20px;
  text-align: left;
  color: rgba(0, 0, 0, 0.795);
}
.service-list > li {
  margin-top: 10px;
}

.service-list-icons {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 140px;
}
.service-list-icons > div {
  width: min-content;
  border-radius: 50%;
  border: solid 5px rgb(42, 123, 255);
}
.service-icons {
  width: 10%;
  min-width: 70px;
  padding: 15px;
}

@media (max-width: 700px) {
  .service-list-icons {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
  }
  .service-element {
    width: 100%;
  }
  .service-list {
    width: 96%;
    padding: 0;
    text-align: center;
    grid-template-columns: none;
  }
  .service-list > li {
    margin: auto;
    width: fit-content;
    list-style: none;
    /* border-top: solid 1px rgb(42, 123, 255); */
    border-bottom: solid 1px rgb(31, 89, 182);
    margin-bottom: 15px;
    padding-bottom: 4px;
    font-size: 20px;
  }
}

.flota-service-container {
  align-self: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 80%;
  font-weight: lighter;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 100px;
  border-top: solid 1px rgba(0, 0, 0, 0.342);
}
.flota-service-container > h3 {
  font-weight: normal;
  font-size: 32px;
}
.flota-service-container > h3 > span {
  /* color: rgb(42, 123, 255); */
  font-weight: 900;
}
.flota-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  font-size: 17px;
  text-align: center;
  gap: 20px;
}

.flota-element {
  display: flex;
  align-items: center;
  padding: 0px 10px 0px 10px;
  border: solid 3px rgb(42, 123, 255);
  height: 100px;
  border-radius: 5px;
  box-shadow: 3px 3px 10px -5px rgb(0, 0, 0);
}
.service-price {
  border: solid 3px rgb(42, 123, 255);
  margin-top: 50px;
  padding: 20px;
  padding-bottom: 30px;
  font-size: 22px;
  border-radius: 5px;
  box-shadow: 3px 3px 10px -5px rgb(0, 0, 0);
}
.service-price > h4 {
  margin: 0;
  margin-bottom: 30px;
}
.service-price > a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  border: solid 3px rgb(42, 123, 255);
  background-color: rgb(42, 123, 255);
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  padding: 10px;
  box-shadow: 3px 3px 10px -4px rgb(0, 0, 0);
  transition: all 300ms linear;
}
.service-price > a:hover {
  background-color: rgb(31, 89, 182);
  border: solid 3px rgb(31, 89, 182);
}

@media (max-width: 700px) {
  .flota-container {
    grid-template-columns: none;
  }
}

@media (max-width: 400px) {
  .service-price > a {
    font-size: 17px;
  }
  .service-price {
    padding: 10px;
    padding-bottom: 20px;
  }
}
