body {
  background-color: hsl(50, 100%, 50%);
}

.content_services {
  display: grid;
  grid-template-columns: 1fr 400px;
  grid-template-rows: 1fr repeat(2, 300px);
  grid-gap: 2em;
  padding: 3em 5em;
}
.content_services > .page-title-service {
  grid-column: 1 / 3;
  text-align: center;
}

@media screen and (max-width: 700px) {
  .content_services {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    padding: 3em 2em;
  }
  .content_services > .page-title-service {
    grid-column: 1;
  }
  .content_services > .content_big {
    height: 400px;
  }
}
.content_services > .page-title-service > h1 {
  font-size: 50px;
}

@media screen and (max-width: 600px) {
  .content_services > .title_service > h1 {
    font-size: 30px;
  }
}

.content_services > .service_content {
  background-color: white;
  color: black;
  padding: 2em;
  overflow: auto;
  border-radius: 4px;
}

.content_services > .service_content > h1 {
  font-size: 25px;
  color: var(--color-secundary);
  font-weight: 600;
}

.content_services > .service_content > h3 {
  font-size: 18px;
}

.service-image > img {
  width: 100%;
}

.content_services > .service_content > ul {
  list-style: none;
  padding: 0 20px;
}

.content_services > .service_content > ul > li:before {
  content: '';
  background-image: url('../images/icon_services/transporte.svg');
  background-repeat: no-repeat;
  display: inline-block;
  background-size: contain;
  width: 1.5em;
  height: 1.2em;
}

.content_services > .service-image {
  margin: auto;
}

.content_services > .content_big::-webkit-scrollbar {
  width: 12px;
}

.content_services > .content_big::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.content_services > .content_big::-webkit-scrollbar-thumb {
  background: #112131;
  border-radius: 10px;
}
