.lab-why-section {
  margin: 160px auto;
}

.lab-why-body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 56px;
}

.lab-why-tile {
  position: relative;
  background: linear-gradient(136deg, #fff 0%, rgba(255, 255, 255, 0.45) 100%);
  border-radius: 20px;
  aspect-ratio: 1;
  flex: 1 1 23%;
  box-shadow: 5px 10px 15px 0 rgba(87, 177, 199, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  overflow: hidden;
}

.lab-why-bg {
  position: absolute;
  width: 278px;
  aspect-ratio: 278/223;
  left: -28px;
  top: -90px;
  transform: rotate(90deg) scaleX(-1);
}

.lab-why-tile-img {
  background: linear-gradient(136deg, #fff 0%, rgba(255, 255, 255, 0.45) 100%);
  border-radius: 20px;
  aspect-ratio: 1;
  flex: 1 1 23%;
  border: 2px solid white;
  box-shadow: 5px 10px 15px 0 rgba(87, 177, 199, 0.05);
}
.lab-why-tile-img img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lab-why-tile-lg {
  aspect-ratio: 690/335;
  flex: 1 1 48%;
}

.lab-why-title {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1F2A36;
}

.lab-why-text {
  position: relative;
  font-weight: 100;
  max-width: 400px;
}

.lab-why-icon {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 70px;
  height: 70px;
}

@media (max-width: 1300px) {
  .lab-why-body {
    max-width: 700px;
    margin: 56px auto;
  }
  .lab-why-tile {
    flex: 1 1 48%;
    max-width: 340px;
  }
  .lab-why-tile-img {
    flex: 1 1 48%;
  }
}
@media (max-width: 768px) {
  .lab-why-section {
    margin: 96px auto;
  }
  .lab-why-body {
    margin: 24px auto;
    gap: 8px;
  }
  .lab-why-tile {
    aspect-ratio: unset;
    flex: 1 1 100%;
    border-radius: 10px;
    max-width: unset;
    padding: 16px;
    padding-top: 78px;
  }
  .lab-why-tile-lg {
    aspect-ratio: unset;
  }
  .lab-why-tile-img {
    aspect-ratio: 343/168;
    border-radius: 10px;
    border: unset;
  }
  .lab-why-tile-img img {
    border-radius: 9px;
  }
  .lab-why-icon {
    width: 36px;
    height: 36px;
    right: 16px;
    top: 16px;
  }
  .lab-why-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .lab-why-bg {
    width: 120px;
    left: unset;
    top: 0;
    transform: rotate(-90deg);
    right: -12px;
  }
}