.services {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1600px;
  margin: 100px auto;
  flex-direction: column;
}
.service-top{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.services_img {
  width: 650px;
}
.services_img img {
  max-width: 100%;
  border-radius: 5px;
}
.services_content {
  width: 530px;
  padding: 0 20px;
}
.services_title {
  text-transform: capitalize;
  font-size: 45px;
  color: #032973;
  margin: 10px;
  text-align: center;
}
.services_subtitle {
  color: black;
  margin: 10px;
}
.services_text {
  color: black;
  margin: 10px;
}
.serviceLine{
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 100px 0;
}
.service-botton{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.service-botton h2{
  color: #032973;
  margin: 0 0 10px 0;
}
.services_BoxCards{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.service_card{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  height: 410px;
  margin: 10px;
  border-radius: 5px;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
}
.service_card img{
  max-width: 100%;
  border-radius: 5px;
}
.service_card h3{
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
  color: black;
}
.service_card p{
  color: black;
}
.service_card:hover{
  box-shadow: 0px 0px 20px #032973;
}



@media (max-width: 1440px) {
  .services_img {
    width: 550px;
  }
}
@media (max-width: 768px) {
  .services {
    flex-wrap: wrap;
    flex-direction: none;
  }
  .services_img {
    margin: 20px auto;
  }
  .services_content {
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .services_title {
    font-size: 40px;
  }
}

/*MOVIL GRANDE*/
@media (max-width: 425px) {
  .services {
    flex-wrap: wrap;
  }
  .services_img {
    width: 90vw;
  }
  .services_content {
    width: 350px;
  }
  .service_card{
    width: 90vw;
    height: 420px;
  }

}
