/*LAPTOP VERSION STARTS HERE*/
/*Page Title*/
section#page-title {
  width: 100vw;
  background-color: var(--f8f8f8-color);
}
#page-title h1 {
  margin-bottom: 0.35em;
  color: var(--black) !important;
}
#page-title div {
  display: flex;
  align-items: center;
  gap: 0.45em;
  color: var(--heading-border-color);
  font-weight: bold;
}
#page-title a,
span,
.fa-chevron-right {
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--heading-border-color);
}
#page-title .span2 {
  color: var(--menu-color);
}
/*Main Content*/
#services {
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(2, 0.3fr);
  background-color: var(--f8f8f8-color);
  justify-content: center;
}
.service-card {
  background-color: var(--white);
  /* border-radius: 2rem; */
  padding: 2.5rem 2.5rem 3.5rem;
}
.service-card .img {
  width: 100%;
}
.service-card img {
  width: 100%;
}
.service-card .cont {
  margin-top: 2rem;
}
.service-card h5 {
  margin-bottom: 1.2rem;
  font-size: 20px;
}
.service-card button {
  padding: 1rem;
  outline: none;
  border: none;
  background-color: var(--brand-orange-color);
  border-radius: 8px;
  cursor: pointer;
}
.service-card button a {
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
}
.service-card button:hover {
  background-color: var(--black);
}
.service-card button a:hover {
  color: var(--white);
}

/*TABLET VERSION STARTS HERE*/
@media (min-width: 665px) and (max-width: 1024px) {
  /*MAIN*/
  #services {
    gap: 3rem;
  }
  .service-card {
    padding: 2.5rem 2.5rem 4.5rem;
  }
  .service-card img {
    width: 100%;
  }
  .service-card .cont {
    margin-top: 1.5rem;
  }
  #cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 4rem;
  }
  #cta .info h4 {
    font-size: 32px;
  }
  #cta .info {
    text-align: center;
    line-height: 21px;
  }
}

/*MOBILE VERSION STARTS HERE*/
@media (max-width: 664px) {
  /* PAGE TITLE */
  #page-title span,
  #page-title a,
  #page-title i {
    font-size: 1rem;
  }
  /*MAIN*/
  #services {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .service-card {
    padding: 1rem 1rem 1.5rem;
  }

  .service-card button a {
    font-size: 1rem;
  }

  #cta .info {
    padding-top: 1.2em;
    text-align: center;
  }

  #cta,
  .btn {
    display: flex;
    justify-content: center;
    padding-bottom: 32px;
  }
  .cont {
    display: flex;
    justify-content: space-between;
    padding-left: 6px;
    padding-right: 6px;
  }
  .service-card button {
    padding: 1rem;
    border-radius: 1rem;
  }
}
