section {
  margin: 0 auto;
  padding: 0 16rem;
  max-width: var(--content-max-width);
}

@media (max-width: 1399.98px) {
  section {
    padding: 0 8rem;
  }
}

@media (max-width: 1199.98px) {
  section {
    padding: 0 6rem;
  }
}

@media (max-width: 992px) {
  section {
    padding: 0 4rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 0 2rem;
  }
}

.col-center {
  align-items: center;
}

.col-2 {
  gap: 3rem;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .col-2 {
    gap: 1.5rem;
  }
}

.col-3 {
  gap: 1.5rem;
  justify-content: space-between;
}

.title {
  font-size: 2rem;
  line-height: 2.5rem;
}

.title > span {
  font-weight: 600;
}

.subtitle {
  width: 75%;

  font-size: 1.25rem;
  line-height: 1.5rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

.btn-primary {
  align-self: flex-end;

  padding: 0.75rem 1rem;

  border: solid #0b3d91 1.5px;
  border-radius: 8px;

  transition: 250ms;
}

.btn-primary:hover {
  color: white;
  background-color: #0b3d91;

  transition: 250ms;
}

.btn-secondary {
  font-size: 0.875rem;

  display: inline-block;
  padding: 0.5rem 0.75rem;
  /* width: auto; */

  border: solid #666 1.5px;
  border-radius: 8px;

  transition: 250ms;
}

.btn-secondary:hover {
  color: white;
  background-color: #666;

  transition: 250ms;
}

.btn-tertiary {
  display: inline-block;
  align-self: flex-end;
  margin-left: auto;
}

/* Main Research page styling */

.card-icon {
  font-size: 2rem;
}

.card-b {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.card-b-img {
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.card-b-text {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 3rem 3rem 3rem;
  width: 50%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .card-b-text {
    position: relative;
    width: 100%;
    padding: 1.5rem;
  }
}


.card-b-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.card-b-desc {
  line-height: 1.25rem;
}

.card-b:hover .card-b-img {
  transform: scale(1.05);
}

.card-s {
  /* padding: 1.5rem; */
  border: solid #e6e6e6 1.5px;
  border-radius: 16px;

  overflow: hidden;
}

.card-s-link {
  width: inherit;
}

.card-s-img-container {
  overflow: hidden;
  line-height: 0;
  /* border-bottom: solid 1px #E6E6E6; */
}

.card-s-img {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;

  transition: transform 0.5s ease;
}

.card-s:hover .card-s-img {
  transform: scale(1.05);
}

.card-s-text {
  display: flex;
  flex-direction: column;

  padding: 1.5rem;
}

.card-s-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.card-s-desc {
  line-height: 1.25rem;
}


.solution-hero {
  position: relative;
}
.solution-hero img {
  transition: 0.2s opacity;
}
.solution-hero img:first-of-type {
  position: relative;
}
.solution-hero img:not(:first-of-type) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.solution-hero-trig {
  position: absolute;
  height: 100%;
  width: 33.33%;
  z-index: 3;
}
.solution-hero-trig a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .solution-hero-trig{
    display: none;
  }
  .solution-hero-trig a {
    display: none;
  }
}
.trig-1 {
  left: 0;
}
.trig-2 {
  left: 33.33%;
}
.trig-3 {
  right: 0;
}
.hero-1 {
  z-index: 1;
}
.hero-2 {
  z-index: 2;
}
.hero-3 {
  z-index: 0;
}
.trig-1:hover ~ .hero-2 {
  opacity: 0;
}
.trig-3:hover ~ .hero-1, .trig-3:hover ~ .hero-2 {
  opacity: 0;
}

.intro {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

blockquote {
  margin-top: 2rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  text-indent: -0.5rem;
}