.lab-terms-section {
  margin: 160px auto;
  display: flex;
}

.lab-term-body {
  box-shadow: 5px 10px 20px 0 rgba(87, 177, 199, 0.15);
  border-radius: 20px;
  background: linear-gradient(136deg, #fff 0%, rgba(255, 255, 255, 0.45) 100%);
  padding: 50px;
  width: 100%;
  max-width: 800px;
  height: fit-content;
}

.lab-term-img {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 800/476;
  margin: 100px 0 0 -200px;
  height: fit-content;
}
.lab-term-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid white;
  box-shadow: 5px 10px 20px 0 rgba(87, 177, 199, 0.15);
}

.lab-term-content {
  max-width: 500px;
}
.lab-term-content h2 {
  text-transform: uppercase;
  font-size: 24px;
  color: #1F2A36;
  font-weight: 600;
  margin-bottom: 20px;
}
.lab-term-content h3 {
  font-size: 18px;
  color: #1F2A36;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}
.lab-term-content p {
  font-weight: 100;
  font-size: 18px;
  margin-bottom: 24px;
}
.lab-term-content blockquote {
  color: #57B1C7;
}
.lab-term-content blockquote p {
  margin-bottom: 0;
  font-weight: 300;
}

.lab-terms-reverse {
  flex-direction: row-reverse;
}
.lab-terms-reverse .lab-term-img {
  margin: 100px -200px 0 0;
}
.lab-terms-reverse .lab-term-content {
  margin-left: 200px;
}

@media (max-width: 1300px) {
  .lab-term-content {
    max-width: 36vw;
  }
}
@media (max-width: 1100px) {
  .lab-terms-section {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .lab-term-content {
    max-width: unset;
  }
  .lab-term-img {
    margin: unset;
  }
  .lab-terms-reverse .lab-term-img {
    margin: unset;
  }
  .lab-terms-reverse .lab-term-content {
    margin: unset;
  }
}
@media (max-width: 768px) {
  .lab-terms-section {
    margin: 96px auto;
  }
  .lab-term-body {
    padding: 16px;
    border-radius: 10px;
  }
  .lab-term-content h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .lab-term-content h3 {
    font-size: 16px;
    text-transform: unset;
    margin-bottom: 8px;
  }
  .lab-term-content p {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .lab-term-img img {
    border-radius: 10px;
  }
}