@charset "UTF-8";
.igs_services {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 1100px) {
  .igs_services {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
.igs_services ul {
  list-style: none;
  /* Remove default bullets */
}
.igs_services ul li:before {
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: red;
  content: "•";
  /* If you want it to be bold */
  display: inline-block;
  /* Change the color */
  font-weight: bold;
  /* Also needed for space (tweak if needed) */
  margin-left: -1em;
  /* Needed to add space between the bullet and the text */
  width: 1em;
  /* Also needed for space (tweak if needed) */
}
.igs_services ul {
  margin: 1rem;
  padding: 1rem;
}
.igs_services ul li {
  line-height: 1.75;
}

.intro_text {
  grid-column: 1/span 12;
}
.intro_text img {
  float: right;
  height: 73px;
  margin-left: 1.5rem;
  margin-right: 1rem;
  width: 234px;
}

.sequencing_service {
  float: left;
  width: 100%;
}
@media screen and (min-width: 875px) {
  .sequencing_service {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 875px) and (min-width: 1100px) {
  .sequencing_service {
    grid-column: 1/span 5;
    border-right: 1px solid rgba(0, 0, 0, 0.35);
    padding-right: 2rem;
  }
}

.analysis_service {
  float: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .analysis_service {
    float: left;
    margin-top: 2rem;
    grid-column: 6/span 12;
  }
}
@media screen and (min-width: 1100px) {
  .analysis_service {
    padding-left: 3rem;
  }
}

.analysis_service ul,
.sequencing_service ul {
  font-size: 1.05rem;
}

.service__title {
  font-size: 1.6rem;
  font-weight: bold;
}

.service__title a {
  line-height: 22px;
}
.service__title a i {
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.services__button {
  width: 100%;
  margin-top: 2rem;
  text-align: center;
}
.services__button a {
  background: #1b316a;
  color: white;
  display: inline-block;
  font-weight: bold;
  padding: 0.75rem 2rem;
}
.services__button a:hover {
  background-color: #15a612;
  color: #fff;
  text-decoration: none;
}