:root {
  --svg-color: var(--saphire);
  --svg-size: 60px;
  --svg-header: 200px;
}

.container-service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  padding: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 475px;
  background-color: var(--brightGray);
  border-radius: .75rem;
  color: var(--black);
  padding: .2rem 1rem 1rem 1rem;
}

.upper {
  text-transform: uppercase;
  text-decoration: underline;
}

.service-item-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 475px;
  background-color: var(--white);
  border: 4px solid;
  border-image: linear-gradient(90deg,
      #00068B 0%,
      #001794 13.94%,
      #093FAD 25%,
      #1C56BB 39.42%,
      #316DC8 52.4%,
      #4784D3 65%,
      #5F9BDD 81.73%,
      #7AB1E6 100%) 1;
  color: var(--black);
  padding: 1rem;
}

p {
  padding: 1rem 0;
}

.service-header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background: linear-gradient(90deg, #00068B, #00279d, #093fad, #1c56bb, #316dc8, #4784d3, #5f9bdd, #7ab1e6);
}

.service-header h1 {
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.service-hero-text {
  display: flex;
  flex-direction: column;
  align-content: center;
  gap: 1rem;
  padding: 0 2rem;
  color: var(--white);
}

#service-svg {
  display: flex;
  justify-content: center;
}

section {
  padding: 1rem;
}

section ul {
  padding: 0 1rem 0 0;
}

#service-details {
  background: linear-gradient(120deg, #191919, #1c1b30, #1a1d49, #0f1f63, #123382, #325ca5, #5386c6, #7ab1e6);
  margin: 3rem 2rem;
  /*border-radius: 24px;*/
  box-shadow: 0px 15px 60px 0px rgba(22, 25, 27, 0.15);
}

#service-details ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  column-gap: .5rem;
  padding: 1rem;
}

#service-details li {
  padding: .5rem 0;
  color: antiquewhite;
  text-transform: uppercase;
}

#service-details a {
  color: var(--white);
  text-decoration: none;
}

#service-details a:hover {
  color: var(--cyan);
  text-decoration: underline;
}

.service-card-body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.service-card-footer {
  align-self: center;
}

.service-card-icon {
  padding: 1.25rem 0 .25rem 0;
}

.service-card-icon svg:hover {
  --svg-color: var(--blueGray);
}

.service-title {
  font-size: 1.25rem;
}

.service-button {
  display: inline-flex;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  gap: .5rem;
  background-color: var(--saphire);
  color: var(--white);
  padding: .75rem 1rem .5rem;
  border-style: solid;
  align-self: center;
  border-color: var(--cyan);
  /*border-radius: 25px;*/
  cursor: pointer;
  margin: 0;
  max-width: fit-content;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.testimonial-container {
  display: flex;
}

.testimonial-text {
  font-size: 14px;
  font-style: italic;
  padding: 1rem;
}

.testimonial-src {
  display: flex;
  align-items: flex-start;
}

#btnTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--saphire);
  color: var(--white);
  cursor: pointer;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 18px;
}

#btnTop:hover {
  background-color: var(--blueGray);
}

@media screen and (max-width: 900px) {

  .container-service {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    justify-items: center;
  }
}

@media screen and (max-width: 600px) {

  :root {
    --svg-header: 75px;
  }

  .service-card {
    height: unset;
  }

  .service-header {
    grid-template-columns: 1fr;
  }

  #service-details {
    margin: 0 auto;
  }

  #service-details ul {
    grid-template-columns: 1fr;
    padding: 0 .25rem;
  }

  #service-details li {
    padding: .5rem;
  }

  .service-header h1 {
    padding: 0;
  }

  .service-hero-text {
    padding: 0;
  }

  .container-service {
    grid-template-columns: 1fr;
    padding: .5rem
  }

  .breadcrumb {
    padding: .5rem 0 .25rem 0;
  }

  .service-item-card {
    height: unset;
  }
}